blob: 277c1c46fe94e17db85f20a4abe3bacae9a1f1b0 [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 Due682adf2013-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 Due682adf2013-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
Steffen Klassert732706a2017-12-08 08:07:25 +01001491 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1492 (ut[i].family != prev_family))
1493 return -EINVAL;
1494
Sean Tranchetti32bf94f2018-09-19 13:54:56 -06001495 if (ut[i].mode >= XFRM_MODE_MAX)
1496 return -EINVAL;
1497
Steffen Klassert732706a2017-12-08 08:07:25 +01001498 prev_family = ut[i].family;
1499
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001500 switch (ut[i].family) {
1501 case AF_INET:
1502 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001503#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001504 case AF_INET6:
1505 break;
1506#endif
1507 default:
1508 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001509 }
Cong Wang6a53b752017-11-27 11:15:16 -08001510
1511 switch (ut[i].id.proto) {
1512 case IPPROTO_AH:
1513 case IPPROTO_ESP:
1514 case IPPROTO_COMP:
1515#if IS_ENABLED(CONFIG_IPV6)
1516 case IPPROTO_ROUTING:
1517 case IPPROTO_DSTOPTS:
1518#endif
1519 case IPSEC_PROTO_ANY:
1520 break;
1521 default:
1522 return -EINVAL;
1523 }
1524
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001525 }
1526
1527 return 0;
1528}
1529
Thomas Graf5424f322007-08-22 14:01:33 -07001530static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Thomas Graf5424f322007-08-22 14:01:33 -07001532 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 if (!rt) {
1535 pol->xfrm_nr = 0;
1536 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001537 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1538 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001539 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001541 err = validate_tmpl(nr, utmpl, pol->family);
1542 if (err)
1543 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Thomas Graf5424f322007-08-22 14:01:33 -07001545 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547 return 0;
1548}
1549
Thomas Graf5424f322007-08-22 14:01:33 -07001550static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001551{
Thomas Graf5424f322007-08-22 14:01:33 -07001552 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001553 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001554 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001555 int err;
1556
1557 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001558 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001559 type = upt->type;
1560 }
1561
1562 err = verify_policy_type(type);
1563 if (err)
1564 return err;
1565
1566 *tp = type;
1567 return 0;
1568}
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1571{
1572 xp->priority = p->priority;
1573 xp->index = p->index;
1574 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1575 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1576 xp->action = p->action;
1577 xp->flags = p->flags;
1578 xp->family = p->sel.family;
1579 /* XXX xp->share = p->share; */
1580}
1581
1582static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1583{
Mathias Krause7b789832012-09-19 11:33:40 +00001584 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1586 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1587 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1588 p->priority = xp->priority;
1589 p->index = xp->index;
1590 p->sel.family = xp->family;
1591 p->dir = dir;
1592 p->action = xp->action;
1593 p->flags = xp->flags;
1594 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1595}
1596
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001597static 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 -07001598{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001599 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 int err;
1601
1602 if (!xp) {
1603 *errp = -ENOMEM;
1604 return NULL;
1605 }
1606
1607 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001608
Thomas Graf35a7aa02007-08-22 14:00:40 -07001609 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001610 if (err)
1611 goto error;
1612
Thomas Graf35a7aa02007-08-22 14:00:40 -07001613 if (!(err = copy_from_user_tmpl(xp, attrs)))
1614 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001615 if (err)
1616 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001618 xfrm_mark_get(attrs, &xp->mark);
1619
Steffen Klassert7e652642018-06-12 14:07:07 +02001620 if (attrs[XFRMA_IF_ID])
1621 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001624 error:
1625 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001626 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001627 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001628 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630
Christoph Hellwig22e70052007-01-02 15:22:30 -08001631static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001632 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001634 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001635 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001637 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 int err;
1639 int excl;
1640
1641 err = verify_newpolicy_info(p);
1642 if (err)
1643 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001644 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001645 if (err)
1646 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001648 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (!xp)
1650 return err;
1651
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001652 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001653 * Aha! this is anti-netlink really i.e more pfkey derived
1654 * in netlink excl is a flag and you wouldnt need
1655 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1657 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001658 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001661 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 kfree(xp);
1663 return err;
1664 }
1665
Herbert Xuf60f6b82005-06-18 22:44:37 -07001666 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001667 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001668 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001669 km_policy_notify(xp, p->dir, &c);
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 xfrm_pol_put(xp);
1672
1673 return 0;
1674}
1675
1676static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1677{
1678 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1679 int i;
1680
1681 if (xp->xfrm_nr == 0)
1682 return 0;
1683
1684 for (i = 0; i < xp->xfrm_nr; i++) {
1685 struct xfrm_user_tmpl *up = &vec[i];
1686 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1687
Mathias Krause1f868402012-09-19 11:33:41 +00001688 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001690 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1692 up->reqid = kp->reqid;
1693 up->mode = kp->mode;
1694 up->share = kp->share;
1695 up->optional = kp->optional;
1696 up->aalgos = kp->aalgos;
1697 up->ealgos = kp->ealgos;
1698 up->calgos = kp->calgos;
1699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Thomas Grafc0144be2007-08-22 13:55:43 -07001701 return nla_put(skb, XFRMA_TMPL,
1702 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001703}
1704
Serge Hallyn0d681622006-07-24 23:30:44 -07001705static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1706{
1707 if (x->security) {
1708 return copy_sec_ctx(x->security, skb);
1709 }
1710 return 0;
1711}
1712
1713static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1714{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001715 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001716 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001717 return 0;
1718}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001719static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001720{
1721#ifdef CONFIG_XFRM_SUB_POLICY
1722 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1723#else
1724 return 0;
1725#endif
1726}
Serge Hallyn0d681622006-07-24 23:30:44 -07001727
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001728#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001729static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001730{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001731 struct xfrm_userpolicy_type upt;
1732
1733 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1734 memset(&upt, 0, sizeof(upt));
1735 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001736
Thomas Grafc0144be2007-08-22 13:55:43 -07001737 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001738}
1739
1740#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001741static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001742{
1743 return 0;
1744}
1745#endif
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1748{
1749 struct xfrm_dump_info *sp = ptr;
1750 struct xfrm_userpolicy_info *p;
1751 struct sk_buff *in_skb = sp->in_skb;
1752 struct sk_buff *skb = sp->out_skb;
1753 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001754 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Eric W. Biederman15e47302012-09-07 20:12:54 +00001756 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001757 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1758 if (nlh == NULL)
1759 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Thomas Graf7b67c852007-08-22 13:53:52 -07001761 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001763 err = copy_to_user_tmpl(xp, skb);
1764 if (!err)
1765 err = copy_to_user_sec_ctx(xp, skb);
1766 if (!err)
1767 err = copy_to_user_policy_type(xp->type, skb);
1768 if (!err)
1769 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001770 if (!err)
1771 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001772 if (err) {
1773 nlmsg_cancel(skb, nlh);
1774 return err;
1775 }
Thomas Graf98250692007-08-22 12:47:26 -07001776 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
1779
Timo Teras4c563f72008-02-28 21:31:08 -08001780static int xfrm_dump_policy_done(struct netlink_callback *cb)
1781{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001782 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001783 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001784
Fan Du283bc9f2013-11-07 17:47:50 +08001785 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001786 return 0;
1787}
1788
Herbert Xu1137b5e2017-10-19 20:51:10 +08001789static int xfrm_dump_policy_start(struct netlink_callback *cb)
1790{
1791 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1792
1793 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1794
1795 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1796 return 0;
1797}
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1800{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001801 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001802 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 struct xfrm_dump_info info;
1804
1805 info.in_skb = cb->skb;
1806 info.out_skb = skb;
1807 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1808 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001809
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001810 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 return skb->len;
1813}
1814
1815static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1816 struct xfrm_policy *xp,
1817 int dir, u32 seq)
1818{
1819 struct xfrm_dump_info info;
1820 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001821 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Thomas Graf7deb2262007-08-22 13:57:39 -07001823 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if (!skb)
1825 return ERR_PTR(-ENOMEM);
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 info.in_skb = in_skb;
1828 info.out_skb = skb;
1829 info.nlmsg_seq = seq;
1830 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Mathias Krausec2546372012-09-14 09:58:32 +00001832 err = dump_one_policy(xp, dir, 0, &info);
1833 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001835 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837
1838 return skb;
1839}
1840
Christoph Hellwig22e70052007-01-02 15:22:30 -08001841static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001842 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001844 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 struct xfrm_policy *xp;
1846 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001847 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001849 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001851 struct xfrm_mark m;
1852 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001853 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Thomas Graf7b67c852007-08-22 13:53:52 -07001855 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1857
Thomas Graf35a7aa02007-08-22 14:00:40 -07001858 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001859 if (err)
1860 return err;
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 err = verify_policy_dir(p->dir);
1863 if (err)
1864 return err;
1865
Steffen Klassert7e652642018-06-12 14:07:07 +02001866 if (attrs[XFRMA_IF_ID])
1867 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02001870 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001871 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001872 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001873 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001874
Thomas Graf35a7aa02007-08-22 14:00:40 -07001875 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001876 if (err)
1877 return err;
1878
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001879 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001880 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001881 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001882
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001883 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001884 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001885 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001886 }
Steffen Klassert7e652642018-06-12 14:07:07 +02001887 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001888 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001889 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (xp == NULL)
1892 return -ENOENT;
1893
1894 if (!delete) {
1895 struct sk_buff *resp_skb;
1896
1897 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1898 if (IS_ERR(resp_skb)) {
1899 err = PTR_ERR(resp_skb);
1900 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001901 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001902 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001904 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001905 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001906
1907 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001908 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001909
Herbert Xue7443892005-06-18 22:44:18 -07001910 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001911 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001912 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001913 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001914 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001917out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001918 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return err;
1920}
1921
Christoph Hellwig22e70052007-01-02 15:22:30 -08001922static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001923 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001925 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001926 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001927 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001928 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Tetsuo Handa2e710292014-04-22 21:48:30 +09001930 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001931 if (err) {
1932 if (err == -ESRCH) /* empty table */
1933 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001934 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001935 }
Herbert Xubf088672005-06-18 22:44:00 -07001936 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001937 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001938 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001939 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001940 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001941 km_state_notify(NULL, &c);
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return 0;
1944}
1945
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001946static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001947{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001948 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001949 xfrm_replay_state_esn_len(x->replay_esn) :
1950 sizeof(struct xfrm_replay_state);
1951
Thomas Graf7deb2262007-08-22 13:57:39 -07001952 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001953 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001954 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001955 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001956 + nla_total_size(4) /* XFRM_AE_RTHR */
1957 + nla_total_size(4); /* XFRM_AE_ETHR */
1958}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001959
David S. Miller214e0052011-02-24 00:02:38 -05001960static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001961{
1962 struct xfrm_aevent_id *id;
1963 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001964 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001965
Eric W. Biederman15e47302012-09-07 20:12:54 +00001966 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001967 if (nlh == NULL)
1968 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001969
Thomas Graf7b67c852007-08-22 13:53:52 -07001970 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001971 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001972 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001973 id->sa_id.spi = x->id.spi;
1974 id->sa_id.family = x->props.family;
1975 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001976 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001977 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978 id->flags = c->data.aevent;
1979
David S. Millerd0fde792012-03-29 04:02:26 -04001980 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001981 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1982 xfrm_replay_state_esn_len(x->replay_esn),
1983 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001984 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001985 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1986 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001987 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001988 if (err)
1989 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001990 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1991 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001992 if (err)
1993 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001994
David S. Miller1d1e34d2012-06-27 21:57:03 -07001995 if (id->flags & XFRM_AE_RTHR) {
1996 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1997 if (err)
1998 goto out_cancel;
1999 }
2000 if (id->flags & XFRM_AE_ETHR) {
2001 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
2002 x->replay_maxage * 10 / HZ);
2003 if (err)
2004 goto out_cancel;
2005 }
2006 err = xfrm_mark_put(skb, &x->mark);
2007 if (err)
2008 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002009
Steffen Klassert7e652642018-06-12 14:07:07 +02002010 err = xfrm_if_id_put(skb, x->if_id);
2011 if (err)
2012 goto out_cancel;
2013
Johannes Berg053c0952015-01-16 22:09:00 +01002014 nlmsg_end(skb, nlh);
2015 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002016
David S. Miller1d1e34d2012-06-27 21:57:03 -07002017out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002018 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002019 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002020}
2021
Christoph Hellwig22e70052007-01-02 15:22:30 -08002022static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002023 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002024{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002025 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002026 struct xfrm_state *x;
2027 struct sk_buff *r_skb;
2028 int err;
2029 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002030 u32 mark;
2031 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002032 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002033 struct xfrm_usersa_id *id = &p->sa_id;
2034
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002035 mark = xfrm_mark_get(attrs, &m);
2036
2037 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002038 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002039 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002040
2041 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2042 if (r_skb == NULL) {
2043 xfrm_state_put(x);
2044 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002045 }
2046
2047 /*
2048 * XXX: is this lock really needed - none of the other
2049 * gets lock (the concern is things getting updated
2050 * while we are still reading) - jhs
2051 */
2052 spin_lock_bh(&x->lock);
2053 c.data.aevent = p->flags;
2054 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002055 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002056
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002057 err = build_aevent(r_skb, x, &c);
2058 BUG_ON(err < 0);
2059
Eric W. Biederman15e47302012-09-07 20:12:54 +00002060 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002061 spin_unlock_bh(&x->lock);
2062 xfrm_state_put(x);
2063 return err;
2064}
2065
Christoph Hellwig22e70052007-01-02 15:22:30 -08002066static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002067 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002068{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002069 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002070 struct xfrm_state *x;
2071 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002072 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002073 u32 mark = 0;
2074 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002075 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002076 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002077 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002078 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002079 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2080 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002081
Michael Rossberg4e077232015-09-29 11:25:08 +02002082 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002083 return err;
2084
2085 /* pedantic mode - thou shalt sayeth replaceth */
2086 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2087 return err;
2088
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002089 mark = xfrm_mark_get(attrs, &m);
2090
2091 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 -08002092 if (x == NULL)
2093 return -ESRCH;
2094
2095 if (x->km.state != XFRM_STATE_VALID)
2096 goto out;
2097
Steffen Klassert4479ff72013-09-09 09:39:01 +02002098 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002099 if (err)
2100 goto out;
2101
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002102 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002103 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002104 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002105
2106 c.event = nlh->nlmsg_type;
2107 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002108 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002109 c.data.aevent = XFRM_AE_CU;
2110 km_state_notify(x, &c);
2111 err = 0;
2112out:
2113 xfrm_state_put(x);
2114 return err;
2115}
2116
Christoph Hellwig22e70052007-01-02 15:22:30 -08002117static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002118 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002120 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002121 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002122 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002123 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002124
Thomas Graf35a7aa02007-08-22 14:00:40 -07002125 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002126 if (err)
2127 return err;
2128
Tetsuo Handa2e710292014-04-22 21:48:30 +09002129 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002130 if (err) {
2131 if (err == -ESRCH) /* empty table */
2132 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002133 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002134 }
2135
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002136 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002137 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002138 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002139 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002140 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002141 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return 0;
2143}
2144
Christoph Hellwig22e70052007-01-02 15:22:30 -08002145static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002146 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002147{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002148 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002149 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002150 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002151 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002152 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002153 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002154 struct xfrm_mark m;
2155 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02002156 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002157
Thomas Graf35a7aa02007-08-22 14:00:40 -07002158 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002159 if (err)
2160 return err;
2161
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002162 err = verify_policy_dir(p->dir);
2163 if (err)
2164 return err;
2165
Steffen Klassert7e652642018-06-12 14:07:07 +02002166 if (attrs[XFRMA_IF_ID])
2167 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2168
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002169 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02002170 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002171 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002172 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002173 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002174
Thomas Graf35a7aa02007-08-22 14:00:40 -07002175 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 if (err)
2177 return err;
2178
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002179 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002180 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002181 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002183 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002184 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002185 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002186 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002187 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002188 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002189 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002190 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002191 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002192 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002193
Timo Teräsea2dea92010-03-31 00:17:05 +00002194 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002195 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002196
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002197 err = 0;
2198 if (up->hard) {
2199 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002200 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002201 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002202 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002203
2204out:
2205 xfrm_pol_put(xp);
2206 return err;
2207}
2208
Christoph Hellwig22e70052007-01-02 15:22:30 -08002209static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002210 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002211{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002212 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002213 struct xfrm_state *x;
2214 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002215 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002216 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002217 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002218 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002219
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002220 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 -08002221
David S. Miller3a765aa2007-02-26 14:52:21 -08002222 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002223 if (x == NULL)
2224 return err;
2225
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002226 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002227 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002228 if (x->km.state != XFRM_STATE_VALID)
2229 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002230 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002231
Joy Latten161a09e2006-11-27 13:11:54 -06002232 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002233 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002234 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002235 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002236 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002237out:
2238 spin_unlock_bh(&x->lock);
2239 xfrm_state_put(x);
2240 return err;
2241}
2242
Christoph Hellwig22e70052007-01-02 15:22:30 -08002243static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002244 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002245{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002246 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002247 struct xfrm_policy *xp;
2248 struct xfrm_user_tmpl *ut;
2249 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002250 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002251 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002252
Thomas Graf7b67c852007-08-22 13:53:52 -07002253 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002254 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002255 int err = -ENOMEM;
2256
2257 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002258 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002259
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002260 xfrm_mark_get(attrs, &mark);
2261
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002262 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002263 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002264 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002265
2266 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002267 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002268 if (!xp)
2269 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002270
2271 memcpy(&x->id, &ua->id, sizeof(ua->id));
2272 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2273 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002274 xp->mark.m = x->mark.m = mark.m;
2275 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002276 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002277 /* extract the templates and for each call km_key */
2278 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2279 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2280 memcpy(&x->id, &t->id, sizeof(x->id));
2281 x->props.mode = t->mode;
2282 x->props.reqid = t->reqid;
2283 x->props.family = ut->family;
2284 t->aalgos = ua->aalgos;
2285 t->ealgos = ua->ealgos;
2286 t->calgos = ua->calgos;
2287 err = km_query(x, t, xp);
2288
2289 }
2290
Mathias Krause4a135e52018-11-21 21:09:23 +01002291 xfrm_state_free(x);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002292 kfree(xp);
2293
2294 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002295
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002296free_state:
Mathias Krause4a135e52018-11-21 21:09:23 +01002297 xfrm_state_free(x);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002298nomem:
2299 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002300}
2301
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002302#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002303static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002304 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002305 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002306{
Thomas Graf5424f322007-08-22 14:01:33 -07002307 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002308 struct xfrm_user_migrate *um;
2309 int i, num_migrate;
2310
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002311 if (k != NULL) {
2312 struct xfrm_user_kmaddress *uk;
2313
2314 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2315 memcpy(&k->local, &uk->local, sizeof(k->local));
2316 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2317 k->family = uk->family;
2318 k->reserved = uk->reserved;
2319 }
2320
Thomas Graf5424f322007-08-22 14:01:33 -07002321 um = nla_data(rt);
2322 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002323
2324 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2325 return -EINVAL;
2326
2327 for (i = 0; i < num_migrate; i++, um++, ma++) {
2328 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2329 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2330 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2331 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2332
2333 ma->proto = um->proto;
2334 ma->mode = um->mode;
2335 ma->reqid = um->reqid;
2336
2337 ma->old_family = um->old_family;
2338 ma->new_family = um->new_family;
2339 }
2340
2341 *num = i;
2342 return 0;
2343}
2344
2345static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002346 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002347{
Thomas Graf7b67c852007-08-22 13:53:52 -07002348 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002349 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002350 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002351 u8 type;
2352 int err;
2353 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002354 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002355 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002356
Thomas Graf35a7aa02007-08-22 14:00:40 -07002357 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002358 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002359
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002360 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2361
Thomas Graf5424f322007-08-22 14:01:33 -07002362 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002363 if (err)
2364 return err;
2365
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002366 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002367 if (err)
2368 return err;
2369
2370 if (!n)
2371 return 0;
2372
Antony Antony4ab47d42017-06-06 12:12:13 +02002373 if (attrs[XFRMA_ENCAP]) {
2374 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2375 sizeof(*encap), GFP_KERNEL);
2376 if (!encap)
2377 return 0;
2378 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002379
Antony Antony4ab47d42017-06-06 12:12:13 +02002380 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2381
2382 kfree(encap);
2383
2384 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002385}
2386#else
2387static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002388 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002389{
2390 return -ENOPROTOOPT;
2391}
2392#endif
2393
2394#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002395static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002396{
2397 struct xfrm_user_migrate um;
2398
2399 memset(&um, 0, sizeof(um));
2400 um.proto = m->proto;
2401 um.mode = m->mode;
2402 um.reqid = m->reqid;
2403 um.old_family = m->old_family;
2404 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2405 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2406 um.new_family = m->new_family;
2407 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2408 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2409
Thomas Grafc0144be2007-08-22 13:55:43 -07002410 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002411}
2412
David S. Miller183cad12011-02-24 00:28:01 -05002413static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002414{
2415 struct xfrm_user_kmaddress uk;
2416
2417 memset(&uk, 0, sizeof(uk));
2418 uk.family = k->family;
2419 uk.reserved = k->reserved;
2420 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002421 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002422
2423 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2424}
2425
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002426static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2427 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002428{
2429 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002430 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002431 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002432 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2433 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002434}
2435
David S. Miller183cad12011-02-24 00:28:01 -05002436static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2437 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002438 const struct xfrm_selector *sel,
2439 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002440{
David S. Miller183cad12011-02-24 00:28:01 -05002441 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002442 struct xfrm_userpolicy_id *pol_id;
2443 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002444 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002445
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002446 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2447 if (nlh == NULL)
2448 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002449
Thomas Graf7b67c852007-08-22 13:53:52 -07002450 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002451 /* copy data from selector, dir, and type to the pol_id */
2452 memset(pol_id, 0, sizeof(*pol_id));
2453 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2454 pol_id->dir = dir;
2455
David S. Miller1d1e34d2012-06-27 21:57:03 -07002456 if (k != NULL) {
2457 err = copy_to_user_kmaddress(k, skb);
2458 if (err)
2459 goto out_cancel;
2460 }
Antony Antony8bafd732017-06-06 12:12:14 +02002461 if (encap) {
2462 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2463 if (err)
2464 goto out_cancel;
2465 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002466 err = copy_to_user_policy_type(type, skb);
2467 if (err)
2468 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002469 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002470 err = copy_to_user_migrate(mp, skb);
2471 if (err)
2472 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002473 }
2474
Johannes Berg053c0952015-01-16 22:09:00 +01002475 nlmsg_end(skb, nlh);
2476 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002477
2478out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002479 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002480 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002481}
2482
David S. Miller183cad12011-02-24 00:28:01 -05002483static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2484 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002485 const struct xfrm_kmaddress *k,
2486 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002487{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002488 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002489 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002490 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002491
Antony Antony8bafd732017-06-06 12:12:14 +02002492 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2493 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002494 if (skb == NULL)
2495 return -ENOMEM;
2496
2497 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002498 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2499 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002500
Michal Kubecek21ee5432014-06-03 10:26:06 +02002501 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002502}
2503#else
David S. Miller183cad12011-02-24 00:28:01 -05002504static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2505 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002506 const struct xfrm_kmaddress *k,
2507 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002508{
2509 return -ENOPROTOOPT;
2510}
2511#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002512
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002513#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002514
2515static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002516 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002517 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2518 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2519 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2520 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2521 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2522 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002523 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002524 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002525 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002526 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002527 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002528 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002529 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002530 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2531 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002532 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002533 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002534 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002535 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002536 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537};
2538
Thomas Graf492b5582005-05-03 14:26:40 -07002539#undef XMSGSIZE
2540
Thomas Grafcf5cb792007-08-22 13:59:04 -07002541static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002542 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2543 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2544 [XFRMA_LASTUSED] = { .type = NLA_U64},
2545 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002546 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002547 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2548 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2549 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2550 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2551 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2552 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2553 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2554 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2555 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2556 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2557 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2558 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2559 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2560 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002561 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002562 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002563 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002564 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002565 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002566 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002567 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002568 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002569 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2570 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002571 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002572};
2573
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002574static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2575 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2576 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2577};
2578
Mathias Krause05600a72013-02-24 14:10:27 +01002579static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002580 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002581 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002583 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002584 const struct nla_policy *nla_pol;
2585 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002586} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2587 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2588 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2589 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002590 .dump = xfrm_dump_sa,
2591 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002592 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2593 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2594 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002595 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002596 .dump = xfrm_dump_policy,
2597 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002598 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002599 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002600 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002601 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2602 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002603 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002604 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2605 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002606 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2607 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002608 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002609 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002610 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2611 .nla_pol = xfrma_spd_policy,
2612 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002613 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614};
2615
Johannes Berg2d4bc932017-04-12 14:34:04 +02002616static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2617 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002619 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002620 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002621 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002622 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002624 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002625 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002629 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631 type -= XFRM_MSG_BASE;
2632 link = &xfrm_dispatch[type];
2633
2634 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002635 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002636 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Thomas Graf492b5582005-05-03 14:26:40 -07002638 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2639 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002640 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002642 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002644 {
2645 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002646 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002647 .dump = link->dump,
2648 .done = link->done,
2649 };
2650 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 }
2653
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002654 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2655 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002656 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002657 if (err < 0)
2658 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002661 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Thomas Graf5424f322007-08-22 14:01:33 -07002663 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002666static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Fan Du283bc9f2013-11-07 17:47:50 +08002668 struct net *net = sock_net(skb->sk);
2669
2670 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002671 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002672 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673}
2674
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002675static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002676{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002677 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2678 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002679}
2680
David S. Miller214e0052011-02-24 00:02:38 -05002681static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
2683 struct xfrm_user_expire *ue;
2684 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002685 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Eric W. Biederman15e47302012-09-07 20:12:54 +00002687 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002688 if (nlh == NULL)
2689 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Thomas Graf7b67c852007-08-22 13:53:52 -07002691 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002693 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002694 /* clear the padding bytes */
2695 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
David S. Miller1d1e34d2012-06-27 21:57:03 -07002697 err = xfrm_mark_put(skb, &x->mark);
2698 if (err)
2699 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002700
Steffen Klassert7e652642018-06-12 14:07:07 +02002701 err = xfrm_if_id_put(skb, x->if_id);
2702 if (err)
2703 return err;
2704
Johannes Berg053c0952015-01-16 22:09:00 +01002705 nlmsg_end(skb, nlh);
2706 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
2708
David S. Miller214e0052011-02-24 00:02:38 -05002709static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002711 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 struct sk_buff *skb;
2713
Thomas Graf7deb2262007-08-22 13:57:39 -07002714 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 if (skb == NULL)
2716 return -ENOMEM;
2717
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002718 if (build_expire(skb, x, c) < 0) {
2719 kfree_skb(skb);
2720 return -EMSGSIZE;
2721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Michal Kubecek21ee5432014-06-03 10:26:06 +02002723 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
David S. Miller214e0052011-02-24 00:02:38 -05002726static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002727{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002728 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002729 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002730 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002731
Steffen Klassertd8647b72011-03-08 00:10:27 +00002732 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002733 if (skb == NULL)
2734 return -ENOMEM;
2735
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002736 err = build_aevent(skb, x, c);
2737 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002738
Michal Kubecek21ee5432014-06-03 10:26:06 +02002739 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002740}
2741
David S. Miller214e0052011-02-24 00:02:38 -05002742static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002743{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002744 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002745 struct xfrm_usersa_flush *p;
2746 struct nlmsghdr *nlh;
2747 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002748 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002749
Thomas Graf7deb2262007-08-22 13:57:39 -07002750 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002751 if (skb == NULL)
2752 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002753
Eric W. Biederman15e47302012-09-07 20:12:54 +00002754 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002755 if (nlh == NULL) {
2756 kfree_skb(skb);
2757 return -EMSGSIZE;
2758 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002759
Thomas Graf7b67c852007-08-22 13:53:52 -07002760 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002761 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762
Thomas Graf98250692007-08-22 12:47:26 -07002763 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764
Michal Kubecek21ee5432014-06-03 10:26:06 +02002765 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766}
2767
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002768static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002769{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002770 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002771 if (x->aead)
2772 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002773 if (x->aalg) {
2774 l += nla_total_size(sizeof(struct xfrm_algo) +
2775 (x->aalg->alg_key_len + 7) / 8);
2776 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2777 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002778 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002779 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002780 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002781 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002782 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002783 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002784 if (x->tfcpad)
2785 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002786 if (x->replay_esn)
2787 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002788 else
2789 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002790 if (x->security)
2791 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2792 x->security->ctx_len);
2793 if (x->coaddr)
2794 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002795 if (x->props.extra_flags)
2796 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002797 if (x->xso.dev)
2798 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002799 if (x->props.smark.v | x->props.smark.m) {
2800 l += nla_total_size(sizeof(x->props.smark.v));
2801 l += nla_total_size(sizeof(x->props.smark.m));
2802 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002803 if (x->if_id)
2804 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002805
Herbert Xud26f3982007-11-13 21:47:08 -08002806 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002807 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808
2809 return l;
2810}
2811
David S. Miller214e0052011-02-24 00:02:38 -05002812static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002813{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002814 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002815 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002816 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817 struct nlmsghdr *nlh;
2818 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002819 unsigned int len = xfrm_sa_len(x);
2820 unsigned int headlen;
2821 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002822
2823 headlen = sizeof(*p);
2824 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002825 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002826 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002827 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002828 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002829 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002830
Thomas Graf7deb2262007-08-22 13:57:39 -07002831 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002832 if (skb == NULL)
2833 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002834
Eric W. Biederman15e47302012-09-07 20:12:54 +00002835 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002836 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002837 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002838 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002839
Thomas Graf7b67c852007-08-22 13:53:52 -07002840 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002841 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002842 struct nlattr *attr;
2843
Thomas Graf7b67c852007-08-22 13:53:52 -07002844 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002845 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002846 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2847 id->spi = x->id.spi;
2848 id->family = x->props.family;
2849 id->proto = x->id.proto;
2850
Thomas Grafc0144be2007-08-22 13:55:43 -07002851 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002852 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002853 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002854 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002855
2856 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002857 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002858 err = copy_to_user_state_extra(x, p, skb);
2859 if (err)
2860 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002861
Thomas Graf98250692007-08-22 12:47:26 -07002862 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863
Michal Kubecek21ee5432014-06-03 10:26:06 +02002864 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002865
David S. Miller1d1e34d2012-06-27 21:57:03 -07002866out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002867 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002868 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002869}
2870
David S. Miller214e0052011-02-24 00:02:38 -05002871static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002872{
2873
2874 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002875 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002876 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002877 case XFRM_MSG_NEWAE:
2878 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002879 case XFRM_MSG_DELSA:
2880 case XFRM_MSG_UPDSA:
2881 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002883 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002884 return xfrm_notify_sa_flush(c);
2885 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002886 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2887 c->event);
2888 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002889 }
2890
2891 return 0;
2892
2893}
2894
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002895static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2896 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002897{
2898 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2899 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002900 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002901 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2902 + userpolicy_type_attrsize();
2903}
2904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002906 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002908 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 struct xfrm_user_acquire *ua;
2910 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002911 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002913 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2914 if (nlh == NULL)
2915 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Thomas Graf7b67c852007-08-22 13:53:52 -07002917 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 memcpy(&ua->id, &x->id, sizeof(ua->id));
2919 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2920 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002921 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 ua->aalgos = xt->aalgos;
2923 ua->ealgos = xt->ealgos;
2924 ua->calgos = xt->calgos;
2925 ua->seq = x->km.seq = seq;
2926
David S. Miller1d1e34d2012-06-27 21:57:03 -07002927 err = copy_to_user_tmpl(xp, skb);
2928 if (!err)
2929 err = copy_to_user_state_sec_ctx(x, skb);
2930 if (!err)
2931 err = copy_to_user_policy_type(xp->type, skb);
2932 if (!err)
2933 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02002934 if (!err)
2935 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002936 if (err) {
2937 nlmsg_cancel(skb, nlh);
2938 return err;
2939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Johannes Berg053c0952015-01-16 22:09:00 +01002941 nlmsg_end(skb, nlh);
2942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943}
2944
2945static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002946 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002948 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002950 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Thomas Graf7deb2262007-08-22 13:57:39 -07002952 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (skb == NULL)
2954 return -ENOMEM;
2955
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002956 err = build_acquire(skb, x, xt, xp);
2957 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Michal Kubecek21ee5432014-06-03 10:26:06 +02002959 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
2962/* User gives us xfrm_user_policy_info followed by an array of 0
2963 * or more templates.
2964 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002965static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 u8 *data, int len, int *dir)
2967{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002968 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2970 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2971 struct xfrm_policy *xp;
2972 int nr;
2973
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002974 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 case AF_INET:
2976 if (opt != IP_XFRM_POLICY) {
2977 *dir = -EOPNOTSUPP;
2978 return NULL;
2979 }
2980 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002981#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 case AF_INET6:
2983 if (opt != IPV6_XFRM_POLICY) {
2984 *dir = -EOPNOTSUPP;
2985 return NULL;
2986 }
2987 break;
2988#endif
2989 default:
2990 *dir = -EINVAL;
2991 return NULL;
2992 }
2993
2994 *dir = -EINVAL;
2995
2996 if (len < sizeof(*p) ||
2997 verify_newpolicy_info(p))
2998 return NULL;
2999
3000 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08003001 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 return NULL;
3003
Herbert Xua4f1bac2005-07-26 15:43:17 -07003004 if (p->dir > XFRM_POLICY_OUT)
3005 return NULL;
3006
Herbert Xu2f09a4d2010-08-14 22:38:09 -07003007 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 if (xp == NULL) {
3009 *dir = -ENOBUFS;
3010 return NULL;
3011 }
3012
3013 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07003014 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 copy_templates(xp, ut, nr);
3016
3017 *dir = p->dir;
3018
3019 return xp;
3020}
3021
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003022static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003023{
3024 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3025 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3026 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003027 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003028 + userpolicy_type_attrsize();
3029}
3030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003032 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
3034 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003035 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003036 struct nlmsghdr *nlh;
3037 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Eric W. Biederman15e47302012-09-07 20:12:54 +00003039 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003040 if (nlh == NULL)
3041 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Thomas Graf7b67c852007-08-22 13:53:52 -07003043 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003045 err = copy_to_user_tmpl(xp, skb);
3046 if (!err)
3047 err = copy_to_user_sec_ctx(xp, skb);
3048 if (!err)
3049 err = copy_to_user_policy_type(xp->type, skb);
3050 if (!err)
3051 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003052 if (!err)
3053 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003054 if (err) {
3055 nlmsg_cancel(skb, nlh);
3056 return err;
3057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 upe->hard = !!hard;
3059
Johannes Berg053c0952015-01-16 22:09:00 +01003060 nlmsg_end(skb, nlh);
3061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
David S. Miller214e0052011-02-24 00:02:38 -05003064static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003066 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003068 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Thomas Graf7deb2262007-08-22 13:57:39 -07003070 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 if (skb == NULL)
3072 return -ENOMEM;
3073
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003074 err = build_polexpire(skb, xp, dir, c);
3075 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Michal Kubecek21ee5432014-06-03 10:26:06 +02003077 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078}
3079
David S. Miller214e0052011-02-24 00:02:38 -05003080static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003081{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003082 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003083 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003084 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003085 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003086 struct nlmsghdr *nlh;
3087 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003088 unsigned int headlen;
3089 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003090
3091 headlen = sizeof(*p);
3092 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003093 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003094 headlen = sizeof(*id);
3095 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003096 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003097 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003098 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003099
Thomas Graf7deb2262007-08-22 13:57:39 -07003100 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003101 if (skb == NULL)
3102 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003103
Eric W. Biederman15e47302012-09-07 20:12:54 +00003104 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003105 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003106 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003107 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003108
Thomas Graf7b67c852007-08-22 13:53:52 -07003109 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003110 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003111 struct nlattr *attr;
3112
Thomas Graf7b67c852007-08-22 13:53:52 -07003113 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003114 memset(id, 0, sizeof(*id));
3115 id->dir = dir;
3116 if (c->data.byid)
3117 id->index = xp->index;
3118 else
3119 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3120
Thomas Grafc0144be2007-08-22 13:55:43 -07003121 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003122 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003123 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003124 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003125
3126 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003127 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003128
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003129 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003130 err = copy_to_user_tmpl(xp, skb);
3131 if (!err)
3132 err = copy_to_user_policy_type(xp->type, skb);
3133 if (!err)
3134 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003135 if (!err)
3136 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003137 if (err)
3138 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003139
Thomas Graf98250692007-08-22 12:47:26 -07003140 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003141
Michal Kubecek21ee5432014-06-03 10:26:06 +02003142 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003143
David S. Miller1d1e34d2012-06-27 21:57:03 -07003144out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003145 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003146 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003147}
3148
David S. Miller214e0052011-02-24 00:02:38 -05003149static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003150{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003151 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003152 struct nlmsghdr *nlh;
3153 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003154 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003155
Thomas Graf7deb2262007-08-22 13:57:39 -07003156 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003157 if (skb == NULL)
3158 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003159
Eric W. Biederman15e47302012-09-07 20:12:54 +00003160 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003161 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003162 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003163 goto out_free_skb;
3164 err = copy_to_user_policy_type(c->data.type, skb);
3165 if (err)
3166 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003167
Thomas Graf98250692007-08-22 12:47:26 -07003168 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003169
Michal Kubecek21ee5432014-06-03 10:26:06 +02003170 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003171
David S. Miller1d1e34d2012-06-27 21:57:03 -07003172out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003173 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003174 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003175}
3176
David S. Miller214e0052011-02-24 00:02:38 -05003177static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003178{
3179
3180 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003181 case XFRM_MSG_NEWPOLICY:
3182 case XFRM_MSG_UPDPOLICY:
3183 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003184 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003185 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003186 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003187 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003188 return xfrm_exp_policy_notify(xp, dir, c);
3189 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003190 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3191 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003192 }
3193
3194 return 0;
3195
3196}
3197
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003198static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003199{
3200 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3201}
3202
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003203static int build_report(struct sk_buff *skb, u8 proto,
3204 struct xfrm_selector *sel, xfrm_address_t *addr)
3205{
3206 struct xfrm_user_report *ur;
3207 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003208
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003209 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3210 if (nlh == NULL)
3211 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003212
Thomas Graf7b67c852007-08-22 13:53:52 -07003213 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003214 ur->proto = proto;
3215 memcpy(&ur->sel, sel, sizeof(ur->sel));
3216
David S. Miller1d1e34d2012-06-27 21:57:03 -07003217 if (addr) {
3218 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3219 if (err) {
3220 nlmsg_cancel(skb, nlh);
3221 return err;
3222 }
3223 }
Johannes Berg053c0952015-01-16 22:09:00 +01003224 nlmsg_end(skb, nlh);
3225 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003226}
3227
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003228static int xfrm_send_report(struct net *net, u8 proto,
3229 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003230{
3231 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003232 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003233
Thomas Graf7deb2262007-08-22 13:57:39 -07003234 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003235 if (skb == NULL)
3236 return -ENOMEM;
3237
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003238 err = build_report(skb, proto, sel, addr);
3239 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003240
Michal Kubecek21ee5432014-06-03 10:26:06 +02003241 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003242}
3243
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003244static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003245{
3246 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3247}
3248
3249static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3250 xfrm_address_t *new_saddr, __be16 new_sport)
3251{
3252 struct xfrm_user_mapping *um;
3253 struct nlmsghdr *nlh;
3254
3255 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3256 if (nlh == NULL)
3257 return -EMSGSIZE;
3258
3259 um = nlmsg_data(nlh);
3260
3261 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3262 um->id.spi = x->id.spi;
3263 um->id.family = x->props.family;
3264 um->id.proto = x->id.proto;
3265 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3266 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3267 um->new_sport = new_sport;
3268 um->old_sport = x->encap->encap_sport;
3269 um->reqid = x->props.reqid;
3270
Johannes Berg053c0952015-01-16 22:09:00 +01003271 nlmsg_end(skb, nlh);
3272 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003273}
3274
3275static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3276 __be16 sport)
3277{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003278 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003279 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003280 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003281
3282 if (x->id.proto != IPPROTO_ESP)
3283 return -EINVAL;
3284
3285 if (!x->encap)
3286 return -EINVAL;
3287
3288 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3289 if (skb == NULL)
3290 return -ENOMEM;
3291
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003292 err = build_mapping(skb, x, ipaddr, sport);
3293 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003294
Michal Kubecek21ee5432014-06-03 10:26:06 +02003295 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003296}
3297
Horia Geanta0f245582014-02-12 16:20:06 +02003298static bool xfrm_is_alive(const struct km_event *c)
3299{
3300 return (bool)xfrm_acquire_is_on(c->net);
3301}
3302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 .notify = xfrm_send_state_notify,
3305 .acquire = xfrm_send_acquire,
3306 .compile_policy = xfrm_compile_policy,
3307 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003308 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003309 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003310 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003311 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312};
3313
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003314static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
Patrick McHardybe336902006-03-20 22:40:54 -08003316 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003317 struct netlink_kernel_cfg cfg = {
3318 .groups = XFRMNLGRP_MAX,
3319 .input = xfrm_netlink_rcv,
3320 };
Patrick McHardybe336902006-03-20 22:40:54 -08003321
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003322 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003323 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003325 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003326 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 return 0;
3328}
3329
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003330static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003331{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003332 struct net *net;
3333 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003334 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003335 synchronize_net();
3336 list_for_each_entry(net, net_exit_list, exit_list)
3337 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003338}
3339
3340static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003341 .init = xfrm_user_net_init,
3342 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003343};
3344
3345static int __init xfrm_user_init(void)
3346{
3347 int rv;
3348
3349 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3350
3351 rv = register_pernet_subsys(&xfrm_user_net_ops);
3352 if (rv < 0)
3353 return rv;
3354 rv = xfrm_register_km(&netlink_mgr);
3355 if (rv < 0)
3356 unregister_pernet_subsys(&xfrm_user_net_ops);
3357 return rv;
3358}
3359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360static void __exit xfrm_user_exit(void)
3361{
3362 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003363 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
3366module_init(xfrm_user_init);
3367module_exit(xfrm_user_exit);
3368MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003369MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);