blob: 79245e1c34873547ee72cb9336150037698a0789 [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:
154 break;
155
156 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000157#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159#else
160 err = -EAFNOSUPPORT;
161 goto out;
162#endif
163
164 default:
165 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 err = -EINVAL;
169 switch (p->id.proto) {
170 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000171 if ((!attrs[XFRMA_ALG_AUTH] &&
172 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800173 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700174 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000175 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200176 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 goto out;
178 break;
179
180 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 if (attrs[XFRMA_ALG_COMP])
182 goto out;
183 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000184 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800185 !attrs[XFRMA_ALG_CRYPT] &&
186 !attrs[XFRMA_ALG_AEAD])
187 goto out;
188 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000189 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800190 attrs[XFRMA_ALG_CRYPT]) &&
191 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000193 if (attrs[XFRMA_TFCPAD] &&
194 p->mode != XFRM_MODE_TUNNEL)
195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197
198 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700199 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800200 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700201 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000202 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000203 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200204 attrs[XFRMA_TFCPAD] ||
205 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto out;
207 break;
208
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000209#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700210 case IPPROTO_DSTOPTS:
211 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700212 if (attrs[XFRMA_ALG_COMP] ||
213 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000214 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800215 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700216 attrs[XFRMA_ALG_CRYPT] ||
217 attrs[XFRMA_ENCAP] ||
218 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000219 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700220 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700221 goto out;
222 break;
223#endif
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 default:
226 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Herbert Xu1a6509d2008-01-28 19:37:29 -0800229 if ((err = verify_aead(attrs)))
230 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000231 if ((err = verify_auth_trunc(attrs)))
232 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700233 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700235 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700237 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800240 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000241 if ((err = verify_replay(p, attrs)))
242 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 err = -EINVAL;
245 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700246 case XFRM_MODE_TRANSPORT:
247 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700248 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a69452c2006-10-03 23:47:05 -0700249 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251
252 default:
253 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 err = 0;
257
258out:
259 return err;
260}
261
262static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800263 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700264 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct xfrm_algo *p, *ualg;
267 struct xfrm_algo_desc *algo;
268
269 if (!rta)
270 return 0;
271
Thomas Graf5424f322007-08-22 14:01:33 -0700272 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 algo = get_byname(ualg->alg_name, 1);
275 if (!algo)
276 return -ENOSYS;
277 *props = algo->desc.sadb_alg_id;
278
Eric Dumazet0f99be02008-01-08 23:39:06 -0800279 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!p)
281 return -ENOMEM;
282
Herbert Xu04ff1262006-08-13 08:50:00 +1000283 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *algpp = p;
285 return 0;
286}
287
Herbert Xu69b01372015-05-27 16:03:45 +0800288static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
289{
290 struct xfrm_algo *p, *ualg;
291 struct xfrm_algo_desc *algo;
292
293 if (!rta)
294 return 0;
295
296 ualg = nla_data(rta);
297
298 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
299 if (!algo)
300 return -ENOSYS;
301 x->props.ealgo = algo->desc.sadb_alg_id;
302
303 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
304 if (!p)
305 return -ENOMEM;
306
307 strcpy(p->alg_name, algo->name);
308 x->ealg = p;
309 x->geniv = algo->uinfo.encr.geniv;
310 return 0;
311}
312
Martin Willi4447bb32009-11-25 00:29:52 +0000313static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
314 struct nlattr *rta)
315{
316 struct xfrm_algo *ualg;
317 struct xfrm_algo_auth *p;
318 struct xfrm_algo_desc *algo;
319
320 if (!rta)
321 return 0;
322
323 ualg = nla_data(rta);
324
325 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
326 if (!algo)
327 return -ENOSYS;
328 *props = algo->desc.sadb_alg_id;
329
330 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
331 if (!p)
332 return -ENOMEM;
333
334 strcpy(p->alg_name, algo->name);
335 p->alg_key_len = ualg->alg_key_len;
336 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
337 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
338
339 *algpp = p;
340 return 0;
341}
342
343static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
344 struct nlattr *rta)
345{
346 struct xfrm_algo_auth *p, *ualg;
347 struct xfrm_algo_desc *algo;
348
349 if (!rta)
350 return 0;
351
352 ualg = nla_data(rta);
353
354 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
355 if (!algo)
356 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800357 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000358 return -EINVAL;
359 *props = algo->desc.sadb_alg_id;
360
361 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
362 if (!p)
363 return -ENOMEM;
364
365 strcpy(p->alg_name, algo->name);
366 if (!p->alg_trunc_len)
367 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
368
369 *algpp = p;
370 return 0;
371}
372
Herbert Xu69b01372015-05-27 16:03:45 +0800373static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800374{
375 struct xfrm_algo_aead *p, *ualg;
376 struct xfrm_algo_desc *algo;
377
378 if (!rta)
379 return 0;
380
381 ualg = nla_data(rta);
382
383 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
384 if (!algo)
385 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800386 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800387
388 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
389 if (!p)
390 return -ENOMEM;
391
392 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800393 x->aead = p;
394 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800395 return 0;
396}
397
Steffen Klasserte2b19122011-03-28 19:47:30 +0000398static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
399 struct nlattr *rp)
400{
401 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300402 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403
404 if (!replay_esn || !rp)
405 return 0;
406
407 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000408 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000409
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000410 /* Check the overall length and the internal bitmap length to avoid
411 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300412 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000413 xfrm_replay_state_esn_len(replay_esn) != ulen ||
414 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415 return -EINVAL;
416
Andy Whitcroft677e8062017-03-22 07:29:31 +0000417 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
418 return -EINVAL;
419
Steffen Klasserte2b19122011-03-28 19:47:30 +0000420 return 0;
421}
422
Steffen Klassertd8647b72011-03-08 00:10:27 +0000423static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
424 struct xfrm_replay_state_esn **preplay_esn,
425 struct nlattr *rta)
426{
427 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300428 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000429
430 if (!rta)
431 return 0;
432
433 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000434 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300435 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000436
Mathias Krauseecd79182012-09-20 10:01:49 +0000437 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000438 if (!p)
439 return -ENOMEM;
440
Mathias Krauseecd79182012-09-20 10:01:49 +0000441 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000442 if (!pp) {
443 kfree(p);
444 return -ENOMEM;
445 }
446
Mathias Krauseecd79182012-09-20 10:01:49 +0000447 memcpy(p, up, ulen);
448 memcpy(pp, up, ulen);
449
Steffen Klassertd8647b72011-03-08 00:10:27 +0000450 *replay_esn = p;
451 *preplay_esn = pp;
452
453 return 0;
454}
455
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300456static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800457{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300458 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800459
460 if (xfrm_ctx) {
461 len += sizeof(struct xfrm_user_sec_ctx);
462 len += xfrm_ctx->ctx_len;
463 }
464 return len;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
468{
469 memcpy(&x->id, &p->id, sizeof(x->id));
470 memcpy(&x->sel, &p->sel, sizeof(x->sel));
471 memcpy(&x->lft, &p->lft, sizeof(x->lft));
472 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800473 x->props.replay_window = min_t(unsigned int, p->replay_window,
474 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 x->props.reqid = p->reqid;
476 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700477 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700479
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700480 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700481 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800484/*
485 * someday when pfkey also has support, we could have the code
486 * somehow made shareable and move it to xfrm_state.c - JHS
487 *
488*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000489static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
490 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800491{
Thomas Graf5424f322007-08-22 14:01:33 -0700492 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000493 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700494 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
495 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
496 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497
Steffen Klassertd8647b72011-03-08 00:10:27 +0000498 if (re) {
499 struct xfrm_replay_state_esn *replay_esn;
500 replay_esn = nla_data(re);
501 memcpy(x->replay_esn, replay_esn,
502 xfrm_replay_state_esn_len(replay_esn));
503 memcpy(x->preplay_esn, replay_esn,
504 xfrm_replay_state_esn_len(replay_esn));
505 }
506
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800507 if (rp) {
508 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700509 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800510 memcpy(&x->replay, replay, sizeof(*replay));
511 memcpy(&x->preplay, replay, sizeof(*replay));
512 }
513
514 if (lt) {
515 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700516 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800517 x->curlft.bytes = ltime->bytes;
518 x->curlft.packets = ltime->packets;
519 x->curlft.add_time = ltime->add_time;
520 x->curlft.use_time = ltime->use_time;
521 }
522
Thomas Grafcf5cb792007-08-22 13:59:04 -0700523 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700524 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800525
Thomas Grafcf5cb792007-08-22 13:59:04 -0700526 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700527 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800528}
529
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200530static void xfrm_smark_init(struct nlattr **attrs, struct xfrm_mark *m)
531{
532 if (attrs[XFRMA_SET_MARK]) {
533 m->v = nla_get_u32(attrs[XFRMA_SET_MARK]);
534 if (attrs[XFRMA_SET_MARK_MASK])
535 m->m = nla_get_u32(attrs[XFRMA_SET_MARK_MASK]);
536 else
537 m->m = 0xffffffff;
538 } else {
539 m->v = m->m = 0;
540 }
541}
542
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800543static struct xfrm_state *xfrm_state_construct(struct net *net,
544 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700545 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int *errp)
547{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800548 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int err = -ENOMEM;
550
551 if (!x)
552 goto error_no_put;
553
554 copy_from_user_state(x, p);
555
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100556 if (attrs[XFRMA_SA_EXTRA_FLAGS])
557 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
558
Herbert Xu69b01372015-05-27 16:03:45 +0800559 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800560 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000561 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
562 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000564 if (!x->props.aalgo) {
565 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
566 attrs[XFRMA_ALG_AUTH])))
567 goto error;
568 }
Herbert Xu69b01372015-05-27 16:03:45 +0800569 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 goto error;
571 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
572 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700573 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700575
576 if (attrs[XFRMA_ENCAP]) {
577 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
578 sizeof(*x->encap), GFP_KERNEL);
579 if (x->encap == NULL)
580 goto error;
581 }
582
Martin Willi35d28562010-12-08 04:37:49 +0000583 if (attrs[XFRMA_TFCPAD])
584 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
585
Thomas Graffd211502007-09-06 03:28:08 -0700586 if (attrs[XFRMA_COADDR]) {
587 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
588 sizeof(*x->coaddr), GFP_KERNEL);
589 if (x->coaddr == NULL)
590 goto error;
591 }
592
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000593 xfrm_mark_get(attrs, &x->mark);
594
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200595 xfrm_smark_init(attrs, &x->props.smark);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900596
Steffen Klassert7e652642018-06-12 14:07:07 +0200597 if (attrs[XFRMA_IF_ID])
598 x->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
599
Ilan Tayariffdb5212017-08-01 12:49:08 +0300600 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (err)
602 goto error;
603
Mathias Krause2f30ea52016-09-08 18:09:57 +0200604 if (attrs[XFRMA_SEC_CTX]) {
605 err = security_xfrm_state_alloc(x,
606 nla_data(attrs[XFRMA_SEC_CTX]));
607 if (err)
608 goto error;
609 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800610
Steffen Klassertd8647b72011-03-08 00:10:27 +0000611 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
612 attrs[XFRMA_REPLAY_ESN_VAL])))
613 goto error;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800616 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800617 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800618 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800619
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000620 if ((err = xfrm_init_replay(x)))
621 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800622
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000623 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000624 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Yossi Kupermancc015722018-01-17 15:52:41 +0200626 /* configure the hardware if offload is requested */
627 if (attrs[XFRMA_OFFLOAD_DEV]) {
628 err = xfrm_dev_state_add(net, x,
629 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
630 if (err)
631 goto error;
632 }
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return x;
635
636error:
637 x->km.state = XFRM_STATE_DEAD;
638 xfrm_state_put(x);
639error_no_put:
640 *errp = err;
641 return NULL;
642}
643
Christoph Hellwig22e70052007-01-02 15:22:30 -0800644static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700645 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800647 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700648 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct xfrm_state *x;
650 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700651 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Thomas Graf35a7aa02007-08-22 14:00:40 -0700653 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (err)
655 return err;
656
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800657 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (!x)
659 return err;
660
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700661 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
663 err = xfrm_state_add(x);
664 else
665 err = xfrm_state_update(x);
666
Tetsuo Handa2e710292014-04-22 21:48:30 +0900667 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (err < 0) {
670 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200671 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800672 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700673 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
Yossi Kupermancc015722018-01-17 15:52:41 +0200676 if (x->km.state == XFRM_STATE_VOID)
677 x->km.state = XFRM_STATE_VALID;
678
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700679 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000680 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700681 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700682
683 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700684out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700685 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return err;
687}
688
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800689static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
690 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700691 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700692 int *errp)
693{
694 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000695 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700696 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000697 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700698
699 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
700 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000701 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700702 } else {
703 xfrm_address_t *saddr = NULL;
704
Thomas Graf35a7aa02007-08-22 14:00:40 -0700705 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700706 if (!saddr) {
707 err = -EINVAL;
708 goto out;
709 }
710
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800711 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000712 x = xfrm_state_lookup_byaddr(net, mark,
713 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800714 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700715 }
716
717 out:
718 if (!x && errp)
719 *errp = err;
720 return x;
721}
722
Christoph Hellwig22e70052007-01-02 15:22:30 -0800723static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700724 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800726 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700728 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700729 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700730 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800732 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700734 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
David S. Miller6f68dc32006-06-08 23:58:52 -0700736 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700737 goto out;
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700740 err = -EPERM;
741 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700744 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600745
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700746 if (err < 0)
747 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700748
749 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000750 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700751 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700752 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700754out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900755 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700756 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700757 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
761{
Mathias Krausef778a632012-09-19 11:33:39 +0000762 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 memcpy(&p->id, &x->id, sizeof(p->id));
764 memcpy(&p->sel, &x->sel, sizeof(p->sel));
765 memcpy(&p->lft, &x->lft, sizeof(p->lft));
766 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400767 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
768 put_unaligned(x->stats.replay, &p->stats.replay);
769 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700770 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 p->mode = x->props.mode;
772 p->replay_window = x->props.replay_window;
773 p->reqid = x->props.reqid;
774 p->family = x->props.family;
775 p->flags = x->props.flags;
776 p->seq = x->km.seq;
777}
778
779struct xfrm_dump_info {
780 struct sk_buff *in_skb;
781 struct sk_buff *out_skb;
782 u32 nlmsg_seq;
783 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
Thomas Grafc0144be2007-08-22 13:55:43 -0700786static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
787{
Thomas Grafc0144be2007-08-22 13:55:43 -0700788 struct xfrm_user_sec_ctx *uctx;
789 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700790 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700791
792 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
793 if (attr == NULL)
794 return -EMSGSIZE;
795
796 uctx = nla_data(attr);
797 uctx->exttype = XFRMA_SEC_CTX;
798 uctx->len = ctx_size;
799 uctx->ctx_doi = s->ctx_doi;
800 uctx->ctx_alg = s->ctx_alg;
801 uctx->ctx_len = s->ctx_len;
802 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
803
804 return 0;
805}
806
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200807static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
808{
809 struct xfrm_user_offload *xuo;
810 struct nlattr *attr;
811
812 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
813 if (attr == NULL)
814 return -EMSGSIZE;
815
816 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200817 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200818 xuo->ifindex = xso->dev->ifindex;
819 xuo->flags = xso->flags;
820
821 return 0;
822}
823
Martin Willi4447bb32009-11-25 00:29:52 +0000824static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
825{
826 struct xfrm_algo *algo;
827 struct nlattr *nla;
828
829 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
830 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
831 if (!nla)
832 return -EMSGSIZE;
833
834 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000835 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000836 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
837 algo->alg_key_len = auth->alg_key_len;
838
839 return 0;
840}
841
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200842static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
843{
844 int ret = 0;
845
846 if (m->v | m->m) {
847 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
848 if (!ret)
849 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
850 }
851 return ret;
852}
853
Herbert Xu68325d32007-10-09 13:30:57 -0700854/* Don't change this without updating xfrm_sa_len! */
855static int copy_to_user_state_extra(struct xfrm_state *x,
856 struct xfrm_usersa_info *p,
857 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700859 int ret = 0;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 copy_to_user_state(x, p);
862
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100863 if (x->props.extra_flags) {
864 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
865 x->props.extra_flags);
866 if (ret)
867 goto out;
868 }
869
David S. Miller1d1e34d2012-06-27 21:57:03 -0700870 if (x->coaddr) {
871 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
872 if (ret)
873 goto out;
874 }
875 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200876 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
877 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700878 if (ret)
879 goto out;
880 }
881 if (x->aead) {
882 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
883 if (ret)
884 goto out;
885 }
886 if (x->aalg) {
887 ret = copy_to_user_auth(x->aalg, skb);
888 if (!ret)
889 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
890 xfrm_alg_auth_len(x->aalg), x->aalg);
891 if (ret)
892 goto out;
893 }
894 if (x->ealg) {
895 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
896 if (ret)
897 goto out;
898 }
899 if (x->calg) {
900 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
901 if (ret)
902 goto out;
903 }
904 if (x->encap) {
905 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
906 if (ret)
907 goto out;
908 }
909 if (x->tfcpad) {
910 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
911 if (ret)
912 goto out;
913 }
914 ret = xfrm_mark_put(skb, &x->mark);
915 if (ret)
916 goto out;
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200917
918 ret = xfrm_smark_put(skb, &x->props.smark);
919 if (ret)
920 goto out;
921
dingzhif293a5e2014-10-30 09:39:36 +0100922 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700923 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
924 xfrm_replay_state_esn_len(x->replay_esn),
925 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100926 else
927 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
928 &x->replay);
929 if (ret)
930 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200931 if(x->xso.dev)
932 ret = copy_user_offload(&x->xso, skb);
933 if (ret)
934 goto out;
Steffen Klassert7e652642018-06-12 14:07:07 +0200935 if (x->if_id) {
936 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
937 if (ret)
938 goto out;
939 }
Steffen Klassert85981122017-08-31 10:37:00 +0200940 if (x->security)
941 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700942out:
943 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700944}
945
946static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
947{
948 struct xfrm_dump_info *sp = ptr;
949 struct sk_buff *in_skb = sp->in_skb;
950 struct sk_buff *skb = sp->out_skb;
951 struct xfrm_usersa_info *p;
952 struct nlmsghdr *nlh;
953 int err;
954
Eric W. Biederman15e47302012-09-07 20:12:54 +0000955 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700956 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
957 if (nlh == NULL)
958 return -EMSGSIZE;
959
960 p = nlmsg_data(nlh);
961
962 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700963 if (err) {
964 nlmsg_cancel(skb, nlh);
965 return err;
966 }
Thomas Graf98250692007-08-22 12:47:26 -0700967 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Timo Teras4c563f72008-02-28 21:31:08 -0800971static int xfrm_dump_sa_done(struct netlink_callback *cb)
972{
973 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800974 struct sock *sk = cb->skb->sk;
975 struct net *net = sock_net(sk);
976
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200977 if (cb->args[0])
978 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800979 return 0;
980}
981
Nicolas Dichteld3623092014-02-14 15:30:36 +0100982static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
984{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800985 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800986 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 struct xfrm_dump_info info;
988
Timo Teras4c563f72008-02-28 21:31:08 -0800989 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
990 sizeof(cb->args) - sizeof(cb->args[0]));
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 info.in_skb = cb->skb;
993 info.out_skb = skb;
994 info.nlmsg_seq = cb->nlh->nlmsg_seq;
995 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800996
997 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100998 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100999 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001000 u8 proto = 0;
1001 int err;
1002
Johannes Bergfceb6432017-04-12 14:34:07 +02001003 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
1004 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001005 if (err < 0)
1006 return err;
1007
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001008 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001009 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1010 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001011 if (filter == NULL)
1012 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001013 }
1014
1015 if (attrs[XFRMA_PROTO])
1016 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1017
1018 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001019 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001020 }
1021
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001022 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 return skb->len;
1025}
1026
1027static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1028 struct xfrm_state *x, u32 seq)
1029{
1030 struct xfrm_dump_info info;
1031 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001032 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Thomas Graf7deb2262007-08-22 13:57:39 -07001034 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (!skb)
1036 return ERR_PTR(-ENOMEM);
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 info.in_skb = in_skb;
1039 info.out_skb = skb;
1040 info.nlmsg_seq = seq;
1041 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Mathias Krause864745d2012-09-13 11:41:26 +00001043 err = dump_one_state(x, 0, &info);
1044 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001046 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048
1049 return skb;
1050}
1051
Michal Kubecek21ee5432014-06-03 10:26:06 +02001052/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1053 * Must be called with RCU read lock.
1054 */
1055static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1056 u32 pid, unsigned int group)
1057{
1058 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1059
1060 if (nlsk)
1061 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1062 else
1063 return -1;
1064}
1065
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001066static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001067{
1068 return NLMSG_ALIGN(4)
1069 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001070 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1071 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1072 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001073}
1074
Alexey Dobriyane0710412010-01-23 13:37:10 +00001075static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001076 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001077{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001078 struct xfrmk_spdinfo si;
1079 struct xfrmu_spdinfo spc;
1080 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001081 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001082 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001083 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001084 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001085 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001086
Eric W. Biederman15e47302012-09-07 20:12:54 +00001087 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001088 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001089 return -EMSGSIZE;
1090
1091 f = nlmsg_data(nlh);
1092 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001093 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001094 spc.incnt = si.incnt;
1095 spc.outcnt = si.outcnt;
1096 spc.fwdcnt = si.fwdcnt;
1097 spc.inscnt = si.inscnt;
1098 spc.outscnt = si.outscnt;
1099 spc.fwdscnt = si.fwdscnt;
1100 sph.spdhcnt = si.spdhcnt;
1101 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001102
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001103 do {
1104 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1105
1106 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1107 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1108 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1109 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1110 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1111
David S. Miller1d1e34d2012-06-27 21:57:03 -07001112 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1113 if (!err)
1114 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001115 if (!err)
1116 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1117 if (!err)
1118 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001119 if (err) {
1120 nlmsg_cancel(skb, nlh);
1121 return err;
1122 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001123
Johannes Berg053c0952015-01-16 22:09:00 +01001124 nlmsg_end(skb, nlh);
1125 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001126}
1127
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001128static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1129 struct nlattr **attrs)
1130{
1131 struct net *net = sock_net(skb->sk);
1132 struct xfrmu_spdhthresh *thresh4 = NULL;
1133 struct xfrmu_spdhthresh *thresh6 = NULL;
1134
1135 /* selector prefixlen thresholds to hash policies */
1136 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1137 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1138
1139 if (nla_len(rta) < sizeof(*thresh4))
1140 return -EINVAL;
1141 thresh4 = nla_data(rta);
1142 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1143 return -EINVAL;
1144 }
1145 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1146 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1147
1148 if (nla_len(rta) < sizeof(*thresh6))
1149 return -EINVAL;
1150 thresh6 = nla_data(rta);
1151 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1152 return -EINVAL;
1153 }
1154
1155 if (thresh4 || thresh6) {
1156 write_seqlock(&net->xfrm.policy_hthresh.lock);
1157 if (thresh4) {
1158 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1159 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1160 }
1161 if (thresh6) {
1162 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1163 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1164 }
1165 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1166
1167 xfrm_policy_hash_rebuild(net);
1168 }
1169
1170 return 0;
1171}
1172
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001173static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001174 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001175{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001176 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001177 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001178 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001179 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001180 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001181 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001182
Thomas Graf7deb2262007-08-22 13:57:39 -07001183 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001184 if (r_skb == NULL)
1185 return -ENOMEM;
1186
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001187 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1188 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001189
Eric W. Biederman15e47302012-09-07 20:12:54 +00001190 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001191}
1192
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001193static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001194{
1195 return NLMSG_ALIGN(4)
1196 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1197 + nla_total_size(4); /* XFRMA_SAD_CNT */
1198}
1199
Alexey Dobriyane0710412010-01-23 13:37:10 +00001200static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001201 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001202{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001203 struct xfrmk_sadinfo si;
1204 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001205 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001206 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001207 u32 *f;
1208
Eric W. Biederman15e47302012-09-07 20:12:54 +00001209 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001210 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001211 return -EMSGSIZE;
1212
1213 f = nlmsg_data(nlh);
1214 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001215 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001216
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001217 sh.sadhmcnt = si.sadhmcnt;
1218 sh.sadhcnt = si.sadhcnt;
1219
David S. Miller1d1e34d2012-06-27 21:57:03 -07001220 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1221 if (!err)
1222 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1223 if (err) {
1224 nlmsg_cancel(skb, nlh);
1225 return err;
1226 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001227
Johannes Berg053c0952015-01-16 22:09:00 +01001228 nlmsg_end(skb, nlh);
1229 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001230}
1231
1232static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001233 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001234{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001235 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001236 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001237 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001238 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001239 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001240 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001241
Thomas Graf7deb2262007-08-22 13:57:39 -07001242 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001243 if (r_skb == NULL)
1244 return -ENOMEM;
1245
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001246 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1247 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001248
Eric W. Biederman15e47302012-09-07 20:12:54 +00001249 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001250}
1251
Christoph Hellwig22e70052007-01-02 15:22:30 -08001252static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001253 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001255 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001256 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 struct xfrm_state *x;
1258 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001259 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001261 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (x == NULL)
1263 goto out_noput;
1264
1265 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1266 if (IS_ERR(resp_skb)) {
1267 err = PTR_ERR(resp_skb);
1268 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001269 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 xfrm_state_put(x);
1272out_noput:
1273 return err;
1274}
1275
Christoph Hellwig22e70052007-01-02 15:22:30 -08001276static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001277 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001279 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct xfrm_state *x;
1281 struct xfrm_userspi_info *p;
1282 struct sk_buff *resp_skb;
1283 xfrm_address_t *daddr;
1284 int family;
1285 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001286 u32 mark;
1287 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001288 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Thomas Graf7b67c852007-08-22 13:53:52 -07001290 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001291 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (err)
1293 goto out_noput;
1294
1295 family = p->info.family;
1296 daddr = &p->info.id.daddr;
1297
1298 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001299
1300 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001301
1302 if (attrs[XFRMA_IF_ID])
1303 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001306 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001307 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 xfrm_state_put(x);
1309 x = NULL;
1310 }
1311 }
1312
1313 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001314 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klassert7e652642018-06-12 14:07:07 +02001315 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 &p->info.saddr, 1,
1317 family);
1318 err = -ENOENT;
1319 if (x == NULL)
1320 goto out_noput;
1321
Herbert Xu658b2192007-10-09 13:29:52 -07001322 err = xfrm_alloc_spi(x, p->min, p->max);
1323 if (err)
1324 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Herbert Xu658b2192007-10-09 13:29:52 -07001326 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (IS_ERR(resp_skb)) {
1328 err = PTR_ERR(resp_skb);
1329 goto out;
1330 }
1331
Eric W. Biederman15e47302012-09-07 20:12:54 +00001332 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334out:
1335 xfrm_state_put(x);
1336out_noput:
1337 return err;
1338}
1339
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001340static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 switch (dir) {
1343 case XFRM_POLICY_IN:
1344 case XFRM_POLICY_OUT:
1345 case XFRM_POLICY_FWD:
1346 break;
1347
1348 default:
1349 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 return 0;
1353}
1354
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001355static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001356{
1357 switch (type) {
1358 case XFRM_POLICY_TYPE_MAIN:
1359#ifdef CONFIG_XFRM_SUB_POLICY
1360 case XFRM_POLICY_TYPE_SUB:
1361#endif
1362 break;
1363
1364 default:
1365 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001366 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001367
1368 return 0;
1369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1372{
Fan Due682adf02013-11-07 17:47:48 +08001373 int ret;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 switch (p->share) {
1376 case XFRM_SHARE_ANY:
1377 case XFRM_SHARE_SESSION:
1378 case XFRM_SHARE_USER:
1379 case XFRM_SHARE_UNIQUE:
1380 break;
1381
1382 default:
1383 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 switch (p->action) {
1387 case XFRM_POLICY_ALLOW:
1388 case XFRM_POLICY_BLOCK:
1389 break;
1390
1391 default:
1392 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 switch (p->sel.family) {
1396 case AF_INET:
1397 break;
1398
1399 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001400#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 break;
1402#else
1403 return -EAFNOSUPPORT;
1404#endif
1405
1406 default:
1407 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Fan Due682adf02013-11-07 17:47:48 +08001410 ret = verify_policy_dir(p->dir);
1411 if (ret)
1412 return ret;
1413 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1414 return -EINVAL;
1415
1416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
Thomas Graf5424f322007-08-22 14:01:33 -07001419static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001420{
Thomas Graf5424f322007-08-22 14:01:33 -07001421 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001422 struct xfrm_user_sec_ctx *uctx;
1423
1424 if (!rt)
1425 return 0;
1426
Thomas Graf5424f322007-08-22 14:01:33 -07001427 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001428 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001429}
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1432 int nr)
1433{
1434 int i;
1435
1436 xp->xfrm_nr = nr;
1437 for (i = 0; i < nr; i++, ut++) {
1438 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1439
1440 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1441 memcpy(&t->saddr, &ut->saddr,
1442 sizeof(xfrm_address_t));
1443 t->reqid = ut->reqid;
1444 t->mode = ut->mode;
1445 t->share = ut->share;
1446 t->optional = ut->optional;
1447 t->aalgos = ut->aalgos;
1448 t->ealgos = ut->ealgos;
1449 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001450 /* If all masks are ~0, then we allow all algorithms. */
1451 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001452 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454}
1455
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001456static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1457{
Steffen Klassert732706a2017-12-08 08:07:25 +01001458 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001459 int i;
1460
1461 if (nr > XFRM_MAX_DEPTH)
1462 return -EINVAL;
1463
Steffen Klassert732706a2017-12-08 08:07:25 +01001464 prev_family = family;
1465
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001466 for (i = 0; i < nr; i++) {
1467 /* We never validated the ut->family value, so many
1468 * applications simply leave it at zero. The check was
1469 * never made and ut->family was ignored because all
1470 * templates could be assumed to have the same family as
1471 * the policy itself. Now that we will have ipv4-in-ipv6
1472 * and ipv6-in-ipv4 tunnels, this is no longer true.
1473 */
1474 if (!ut[i].family)
1475 ut[i].family = family;
1476
Steffen Klassert732706a2017-12-08 08:07:25 +01001477 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1478 (ut[i].family != prev_family))
1479 return -EINVAL;
1480
1481 prev_family = ut[i].family;
1482
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001483 switch (ut[i].family) {
1484 case AF_INET:
1485 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001486#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001487 case AF_INET6:
1488 break;
1489#endif
1490 default:
1491 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001492 }
Cong Wang6a53b752017-11-27 11:15:16 -08001493
1494 switch (ut[i].id.proto) {
1495 case IPPROTO_AH:
1496 case IPPROTO_ESP:
1497 case IPPROTO_COMP:
1498#if IS_ENABLED(CONFIG_IPV6)
1499 case IPPROTO_ROUTING:
1500 case IPPROTO_DSTOPTS:
1501#endif
1502 case IPSEC_PROTO_ANY:
1503 break;
1504 default:
1505 return -EINVAL;
1506 }
1507
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001508 }
1509
1510 return 0;
1511}
1512
Thomas Graf5424f322007-08-22 14:01:33 -07001513static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Thomas Graf5424f322007-08-22 14:01:33 -07001515 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 if (!rt) {
1518 pol->xfrm_nr = 0;
1519 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001520 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1521 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001522 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001524 err = validate_tmpl(nr, utmpl, pol->family);
1525 if (err)
1526 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Thomas Graf5424f322007-08-22 14:01:33 -07001528 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530 return 0;
1531}
1532
Thomas Graf5424f322007-08-22 14:01:33 -07001533static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001534{
Thomas Graf5424f322007-08-22 14:01:33 -07001535 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001536 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001537 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001538 int err;
1539
1540 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001541 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001542 type = upt->type;
1543 }
1544
1545 err = verify_policy_type(type);
1546 if (err)
1547 return err;
1548
1549 *tp = type;
1550 return 0;
1551}
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1554{
1555 xp->priority = p->priority;
1556 xp->index = p->index;
1557 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1558 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1559 xp->action = p->action;
1560 xp->flags = p->flags;
1561 xp->family = p->sel.family;
1562 /* XXX xp->share = p->share; */
1563}
1564
1565static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1566{
Mathias Krause7b789832012-09-19 11:33:40 +00001567 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1569 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1570 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1571 p->priority = xp->priority;
1572 p->index = xp->index;
1573 p->sel.family = xp->family;
1574 p->dir = dir;
1575 p->action = xp->action;
1576 p->flags = xp->flags;
1577 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1578}
1579
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001580static 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 -07001581{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001582 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int err;
1584
1585 if (!xp) {
1586 *errp = -ENOMEM;
1587 return NULL;
1588 }
1589
1590 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001591
Thomas Graf35a7aa02007-08-22 14:00:40 -07001592 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001593 if (err)
1594 goto error;
1595
Thomas Graf35a7aa02007-08-22 14:00:40 -07001596 if (!(err = copy_from_user_tmpl(xp, attrs)))
1597 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001598 if (err)
1599 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001601 xfrm_mark_get(attrs, &xp->mark);
1602
Steffen Klassert7e652642018-06-12 14:07:07 +02001603 if (attrs[XFRMA_IF_ID])
1604 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001607 error:
1608 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001609 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001610 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001611 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Christoph Hellwig22e70052007-01-02 15:22:30 -08001614static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001615 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001617 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001618 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001620 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int err;
1622 int excl;
1623
1624 err = verify_newpolicy_info(p);
1625 if (err)
1626 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001627 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001628 if (err)
1629 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001631 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (!xp)
1633 return err;
1634
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001635 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001636 * Aha! this is anti-netlink really i.e more pfkey derived
1637 * in netlink excl is a flag and you wouldnt need
1638 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1640 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001641 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001644 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 kfree(xp);
1646 return err;
1647 }
1648
Herbert Xuf60f6b82005-06-18 22:44:37 -07001649 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001650 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001651 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001652 km_policy_notify(xp, p->dir, &c);
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 xfrm_pol_put(xp);
1655
1656 return 0;
1657}
1658
1659static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1660{
1661 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1662 int i;
1663
1664 if (xp->xfrm_nr == 0)
1665 return 0;
1666
1667 for (i = 0; i < xp->xfrm_nr; i++) {
1668 struct xfrm_user_tmpl *up = &vec[i];
1669 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1670
Mathias Krause1f868402012-09-19 11:33:41 +00001671 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001673 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1675 up->reqid = kp->reqid;
1676 up->mode = kp->mode;
1677 up->share = kp->share;
1678 up->optional = kp->optional;
1679 up->aalgos = kp->aalgos;
1680 up->ealgos = kp->ealgos;
1681 up->calgos = kp->calgos;
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Thomas Grafc0144be2007-08-22 13:55:43 -07001684 return nla_put(skb, XFRMA_TMPL,
1685 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001686}
1687
Serge Hallyn0d681622006-07-24 23:30:44 -07001688static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1689{
1690 if (x->security) {
1691 return copy_sec_ctx(x->security, skb);
1692 }
1693 return 0;
1694}
1695
1696static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1697{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001698 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001699 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001700 return 0;
1701}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001702static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001703{
1704#ifdef CONFIG_XFRM_SUB_POLICY
1705 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1706#else
1707 return 0;
1708#endif
1709}
Serge Hallyn0d681622006-07-24 23:30:44 -07001710
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001711#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001712static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001713{
Thomas Grafc0144be2007-08-22 13:55:43 -07001714 struct xfrm_userpolicy_type upt = {
1715 .type = type,
1716 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001717
Thomas Grafc0144be2007-08-22 13:55:43 -07001718 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001719}
1720
1721#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001722static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001723{
1724 return 0;
1725}
1726#endif
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1729{
1730 struct xfrm_dump_info *sp = ptr;
1731 struct xfrm_userpolicy_info *p;
1732 struct sk_buff *in_skb = sp->in_skb;
1733 struct sk_buff *skb = sp->out_skb;
1734 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001735 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Eric W. Biederman15e47302012-09-07 20:12:54 +00001737 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001738 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1739 if (nlh == NULL)
1740 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Thomas Graf7b67c852007-08-22 13:53:52 -07001742 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001744 err = copy_to_user_tmpl(xp, skb);
1745 if (!err)
1746 err = copy_to_user_sec_ctx(xp, skb);
1747 if (!err)
1748 err = copy_to_user_policy_type(xp->type, skb);
1749 if (!err)
1750 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001751 if (!err)
1752 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001753 if (err) {
1754 nlmsg_cancel(skb, nlh);
1755 return err;
1756 }
Thomas Graf98250692007-08-22 12:47:26 -07001757 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
Timo Teras4c563f72008-02-28 21:31:08 -08001761static int xfrm_dump_policy_done(struct netlink_callback *cb)
1762{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001763 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001764 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001765
Fan Du283bc9f2013-11-07 17:47:50 +08001766 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001767 return 0;
1768}
1769
Herbert Xu1137b5e2017-10-19 20:51:10 +08001770static int xfrm_dump_policy_start(struct netlink_callback *cb)
1771{
1772 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1773
1774 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1775
1776 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1777 return 0;
1778}
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1781{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001782 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001783 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 struct xfrm_dump_info info;
1785
1786 info.in_skb = cb->skb;
1787 info.out_skb = skb;
1788 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1789 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001790
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001791 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 return skb->len;
1794}
1795
1796static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1797 struct xfrm_policy *xp,
1798 int dir, u32 seq)
1799{
1800 struct xfrm_dump_info info;
1801 struct sk_buff *skb;
Mathias Krausec25463722012-09-14 09:58:32 +00001802 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Thomas Graf7deb2262007-08-22 13:57:39 -07001804 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (!skb)
1806 return ERR_PTR(-ENOMEM);
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 info.in_skb = in_skb;
1809 info.out_skb = skb;
1810 info.nlmsg_seq = seq;
1811 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Mathias Krausec25463722012-09-14 09:58:32 +00001813 err = dump_one_policy(xp, dir, 0, &info);
1814 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 kfree_skb(skb);
Mathias Krausec25463722012-09-14 09:58:32 +00001816 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818
1819 return skb;
1820}
1821
Christoph Hellwig22e70052007-01-02 15:22:30 -08001822static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001823 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001825 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 struct xfrm_policy *xp;
1827 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001828 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001830 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001832 struct xfrm_mark m;
1833 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001834 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Thomas Graf7b67c852007-08-22 13:53:52 -07001836 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1838
Thomas Graf35a7aa02007-08-22 14:00:40 -07001839 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001840 if (err)
1841 return err;
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 err = verify_policy_dir(p->dir);
1844 if (err)
1845 return err;
1846
Steffen Klassert7e652642018-06-12 14:07:07 +02001847 if (attrs[XFRMA_IF_ID])
1848 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02001851 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001852 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001853 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001854 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001855
Thomas Graf35a7aa02007-08-22 14:00:40 -07001856 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001857 if (err)
1858 return err;
1859
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001860 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001861 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001862 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001863
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001864 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001865 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001866 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001867 }
Steffen Klassert7e652642018-06-12 14:07:07 +02001868 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001869 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001870 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (xp == NULL)
1873 return -ENOENT;
1874
1875 if (!delete) {
1876 struct sk_buff *resp_skb;
1877
1878 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1879 if (IS_ERR(resp_skb)) {
1880 err = PTR_ERR(resp_skb);
1881 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001882 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001883 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001885 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001886 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001887
1888 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001889 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001890
Herbert Xue7443892005-06-18 22:44:18 -07001891 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001892 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001893 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001894 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001895 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001898out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001899 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return err;
1901}
1902
Christoph Hellwig22e70052007-01-02 15:22:30 -08001903static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001904 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001906 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001907 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001908 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001909 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Tetsuo Handa2e710292014-04-22 21:48:30 +09001911 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001912 if (err) {
1913 if (err == -ESRCH) /* empty table */
1914 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001915 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001916 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001917 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001918 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001919 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001920 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001921 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001922 km_state_notify(NULL, &c);
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 0;
1925}
1926
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001927static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001928{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001929 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001930 xfrm_replay_state_esn_len(x->replay_esn) :
1931 sizeof(struct xfrm_replay_state);
1932
Thomas Graf7deb2262007-08-22 13:57:39 -07001933 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001934 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001935 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001936 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001937 + nla_total_size(4) /* XFRM_AE_RTHR */
1938 + nla_total_size(4); /* XFRM_AE_ETHR */
1939}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001940
David S. Miller214e0052011-02-24 00:02:38 -05001941static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001942{
1943 struct xfrm_aevent_id *id;
1944 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001945 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001946
Eric W. Biederman15e47302012-09-07 20:12:54 +00001947 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001948 if (nlh == NULL)
1949 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001950
Thomas Graf7b67c852007-08-22 13:53:52 -07001951 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001952 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001953 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001954 id->sa_id.spi = x->id.spi;
1955 id->sa_id.family = x->props.family;
1956 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001957 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001958 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001959 id->flags = c->data.aevent;
1960
David S. Millerd0fde792012-03-29 04:02:26 -04001961 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001962 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1963 xfrm_replay_state_esn_len(x->replay_esn),
1964 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001965 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001966 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1967 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001968 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001969 if (err)
1970 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001971 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1972 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001973 if (err)
1974 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001975
David S. Miller1d1e34d2012-06-27 21:57:03 -07001976 if (id->flags & XFRM_AE_RTHR) {
1977 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1978 if (err)
1979 goto out_cancel;
1980 }
1981 if (id->flags & XFRM_AE_ETHR) {
1982 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1983 x->replay_maxage * 10 / HZ);
1984 if (err)
1985 goto out_cancel;
1986 }
1987 err = xfrm_mark_put(skb, &x->mark);
1988 if (err)
1989 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001990
Steffen Klassert7e652642018-06-12 14:07:07 +02001991 err = xfrm_if_id_put(skb, x->if_id);
1992 if (err)
1993 goto out_cancel;
1994
Johannes Berg053c0952015-01-16 22:09:00 +01001995 nlmsg_end(skb, nlh);
1996 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001997
David S. Miller1d1e34d2012-06-27 21:57:03 -07001998out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001999 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002000 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002001}
2002
Christoph Hellwig22e70052007-01-02 15:22:30 -08002003static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002004 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002005{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002006 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002007 struct xfrm_state *x;
2008 struct sk_buff *r_skb;
2009 int err;
2010 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002011 u32 mark;
2012 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002013 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002014 struct xfrm_usersa_id *id = &p->sa_id;
2015
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002016 mark = xfrm_mark_get(attrs, &m);
2017
2018 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002019 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002020 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002021
2022 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2023 if (r_skb == NULL) {
2024 xfrm_state_put(x);
2025 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002026 }
2027
2028 /*
2029 * XXX: is this lock really needed - none of the other
2030 * gets lock (the concern is things getting updated
2031 * while we are still reading) - jhs
2032 */
2033 spin_lock_bh(&x->lock);
2034 c.data.aevent = p->flags;
2035 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002036 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002037
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002038 err = build_aevent(r_skb, x, &c);
2039 BUG_ON(err < 0);
2040
Eric W. Biederman15e47302012-09-07 20:12:54 +00002041 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002042 spin_unlock_bh(&x->lock);
2043 xfrm_state_put(x);
2044 return err;
2045}
2046
Christoph Hellwig22e70052007-01-02 15:22:30 -08002047static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002048 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002049{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002050 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002051 struct xfrm_state *x;
2052 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002053 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002054 u32 mark = 0;
2055 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002056 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002057 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002058 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002059 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002060 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2061 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002062
Michael Rossberg4e077232015-09-29 11:25:08 +02002063 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002064 return err;
2065
2066 /* pedantic mode - thou shalt sayeth replaceth */
2067 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2068 return err;
2069
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002070 mark = xfrm_mark_get(attrs, &m);
2071
2072 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 -08002073 if (x == NULL)
2074 return -ESRCH;
2075
2076 if (x->km.state != XFRM_STATE_VALID)
2077 goto out;
2078
Steffen Klassert4479ff72013-09-09 09:39:01 +02002079 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002080 if (err)
2081 goto out;
2082
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002083 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002084 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002085 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002086
2087 c.event = nlh->nlmsg_type;
2088 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002089 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002090 c.data.aevent = XFRM_AE_CU;
2091 km_state_notify(x, &c);
2092 err = 0;
2093out:
2094 xfrm_state_put(x);
2095 return err;
2096}
2097
Christoph Hellwig22e70052007-01-02 15:22:30 -08002098static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002099 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002101 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002102 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002103 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002104 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002105
Thomas Graf35a7aa02007-08-22 14:00:40 -07002106 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002107 if (err)
2108 return err;
2109
Tetsuo Handa2e710292014-04-22 21:48:30 +09002110 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002111 if (err) {
2112 if (err == -ESRCH) /* empty table */
2113 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002114 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002115 }
2116
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002117 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002118 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002119 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002120 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002121 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002122 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return 0;
2124}
2125
Christoph Hellwig22e70052007-01-02 15:22:30 -08002126static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002127 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002128{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002129 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002130 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002131 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002132 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002133 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002134 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002135 struct xfrm_mark m;
2136 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02002137 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002138
Thomas Graf35a7aa02007-08-22 14:00:40 -07002139 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002140 if (err)
2141 return err;
2142
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002143 err = verify_policy_dir(p->dir);
2144 if (err)
2145 return err;
2146
Steffen Klassert7e652642018-06-12 14:07:07 +02002147 if (attrs[XFRMA_IF_ID])
2148 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2149
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002150 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02002151 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002152 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002153 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002154 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002155
Thomas Graf35a7aa02007-08-22 14:00:40 -07002156 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002157 if (err)
2158 return err;
2159
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002160 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002161 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002162 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002163
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002164 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002165 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002166 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002167 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002168 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002169 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002170 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002171 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002172 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002173 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002174
Timo Teräsea2dea9d2010-03-31 00:17:05 +00002175 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002177
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002178 err = 0;
2179 if (up->hard) {
2180 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002181 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002183 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002184
2185out:
2186 xfrm_pol_put(xp);
2187 return err;
2188}
2189
Christoph Hellwig22e70052007-01-02 15:22:30 -08002190static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002191 struct nlattr **attrs)
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002192{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002193 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002194 struct xfrm_state *x;
2195 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002196 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002197 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002198 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002199 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002200
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002201 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002202
David S. Miller3a765aa2007-02-26 14:52:21 -08002203 err = -ENOENT;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002204 if (x == NULL)
2205 return err;
2206
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002207 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002208 err = -EINVAL;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002209 if (x->km.state != XFRM_STATE_VALID)
2210 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002211 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002212
Joy Latten161a09e2006-11-27 13:11:54 -06002213 if (ue->hard) {
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002214 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002215 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002216 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002217 err = 0;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002218out:
2219 spin_unlock_bh(&x->lock);
2220 xfrm_state_put(x);
2221 return err;
2222}
2223
Christoph Hellwig22e70052007-01-02 15:22:30 -08002224static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002225 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002226{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002227 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002228 struct xfrm_policy *xp;
2229 struct xfrm_user_tmpl *ut;
2230 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002231 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002232 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002233
Thomas Graf7b67c852007-08-22 13:53:52 -07002234 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002235 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002236 int err = -ENOMEM;
2237
2238 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002239 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002240
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002241 xfrm_mark_get(attrs, &mark);
2242
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002243 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002244 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002245 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002246
2247 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002248 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002249 if (!xp)
2250 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002251
2252 memcpy(&x->id, &ua->id, sizeof(ua->id));
2253 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2254 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002255 xp->mark.m = x->mark.m = mark.m;
2256 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002257 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002258 /* extract the templates and for each call km_key */
2259 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2260 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2261 memcpy(&x->id, &t->id, sizeof(x->id));
2262 x->props.mode = t->mode;
2263 x->props.reqid = t->reqid;
2264 x->props.family = ut->family;
2265 t->aalgos = ua->aalgos;
2266 t->ealgos = ua->ealgos;
2267 t->calgos = ua->calgos;
2268 err = km_query(x, t, xp);
2269
2270 }
2271
2272 kfree(x);
2273 kfree(xp);
2274
2275 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002276
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002277free_state:
2278 kfree(x);
2279nomem:
2280 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002281}
2282
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002284static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002285 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002286 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287{
Thomas Graf5424f322007-08-22 14:01:33 -07002288 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002289 struct xfrm_user_migrate *um;
2290 int i, num_migrate;
2291
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002292 if (k != NULL) {
2293 struct xfrm_user_kmaddress *uk;
2294
2295 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2296 memcpy(&k->local, &uk->local, sizeof(k->local));
2297 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2298 k->family = uk->family;
2299 k->reserved = uk->reserved;
2300 }
2301
Thomas Graf5424f322007-08-22 14:01:33 -07002302 um = nla_data(rt);
2303 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002304
2305 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2306 return -EINVAL;
2307
2308 for (i = 0; i < num_migrate; i++, um++, ma++) {
2309 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2310 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2311 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2312 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2313
2314 ma->proto = um->proto;
2315 ma->mode = um->mode;
2316 ma->reqid = um->reqid;
2317
2318 ma->old_family = um->old_family;
2319 ma->new_family = um->new_family;
2320 }
2321
2322 *num = i;
2323 return 0;
2324}
2325
2326static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002327 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328{
Thomas Graf7b67c852007-08-22 13:53:52 -07002329 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002330 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002331 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002332 u8 type;
2333 int err;
2334 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002335 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002336 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002337
Thomas Graf35a7aa02007-08-22 14:00:40 -07002338 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002339 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002340
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002341 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2342
Thomas Graf5424f322007-08-22 14:01:33 -07002343 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002344 if (err)
2345 return err;
2346
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002347 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002348 if (err)
2349 return err;
2350
2351 if (!n)
2352 return 0;
2353
Antony Antony4ab47d42017-06-06 12:12:13 +02002354 if (attrs[XFRMA_ENCAP]) {
2355 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2356 sizeof(*encap), GFP_KERNEL);
2357 if (!encap)
2358 return 0;
2359 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002360
Antony Antony4ab47d42017-06-06 12:12:13 +02002361 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2362
2363 kfree(encap);
2364
2365 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002366}
2367#else
2368static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002369 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002370{
2371 return -ENOPROTOOPT;
2372}
2373#endif
2374
2375#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002376static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002377{
2378 struct xfrm_user_migrate um;
2379
2380 memset(&um, 0, sizeof(um));
2381 um.proto = m->proto;
2382 um.mode = m->mode;
2383 um.reqid = m->reqid;
2384 um.old_family = m->old_family;
2385 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2386 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2387 um.new_family = m->new_family;
2388 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2389 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2390
Thomas Grafc0144be2007-08-22 13:55:43 -07002391 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002392}
2393
David S. Miller183cad12011-02-24 00:28:01 -05002394static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002395{
2396 struct xfrm_user_kmaddress uk;
2397
2398 memset(&uk, 0, sizeof(uk));
2399 uk.family = k->family;
2400 uk.reserved = k->reserved;
2401 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002402 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002403
2404 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2405}
2406
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002407static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2408 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002409{
2410 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002411 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002412 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002413 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2414 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002415}
2416
David S. Miller183cad12011-02-24 00:28:01 -05002417static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2418 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002419 const struct xfrm_selector *sel,
2420 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002421{
David S. Miller183cad12011-02-24 00:28:01 -05002422 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002423 struct xfrm_userpolicy_id *pol_id;
2424 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002425 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002426
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002427 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2428 if (nlh == NULL)
2429 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002430
Thomas Graf7b67c852007-08-22 13:53:52 -07002431 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002432 /* copy data from selector, dir, and type to the pol_id */
2433 memset(pol_id, 0, sizeof(*pol_id));
2434 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2435 pol_id->dir = dir;
2436
David S. Miller1d1e34d2012-06-27 21:57:03 -07002437 if (k != NULL) {
2438 err = copy_to_user_kmaddress(k, skb);
2439 if (err)
2440 goto out_cancel;
2441 }
Antony Antony8bafd732017-06-06 12:12:14 +02002442 if (encap) {
2443 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2444 if (err)
2445 goto out_cancel;
2446 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002447 err = copy_to_user_policy_type(type, skb);
2448 if (err)
2449 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002450 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002451 err = copy_to_user_migrate(mp, skb);
2452 if (err)
2453 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002454 }
2455
Johannes Berg053c0952015-01-16 22:09:00 +01002456 nlmsg_end(skb, nlh);
2457 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002458
2459out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002460 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002461 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002462}
2463
David S. Miller183cad12011-02-24 00:28:01 -05002464static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2465 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002466 const struct xfrm_kmaddress *k,
2467 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002468{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002469 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002470 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002471 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002472
Antony Antony8bafd732017-06-06 12:12:14 +02002473 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2474 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002475 if (skb == NULL)
2476 return -ENOMEM;
2477
2478 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002479 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2480 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002481
Michal Kubecek21ee5432014-06-03 10:26:06 +02002482 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002483}
2484#else
David S. Miller183cad12011-02-24 00:28:01 -05002485static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2486 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002487 const struct xfrm_kmaddress *k,
2488 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002489{
2490 return -ENOPROTOOPT;
2491}
2492#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002493
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002494#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002495
2496static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002497 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002498 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2499 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2500 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2501 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2502 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2503 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002504 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002505 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002506 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002507 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002508 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002509 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002510 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002511 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2512 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002513 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002514 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002515 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002516 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002517 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518};
2519
Thomas Graf492b5582005-05-03 14:26:40 -07002520#undef XMSGSIZE
2521
Thomas Grafcf5cb792007-08-22 13:59:04 -07002522static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002523 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2524 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2525 [XFRMA_LASTUSED] = { .type = NLA_U64},
2526 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002527 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002528 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2529 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2530 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2531 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2532 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2533 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2534 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2535 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2536 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2537 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2538 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2539 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2540 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2541 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002542 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002543 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002544 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002545 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002546 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002547 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002548 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002549 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002550 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2551 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002552 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002553};
2554
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002555static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2556 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2557 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2558};
2559
Mathias Krause05600a72013-02-24 14:10:27 +01002560static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002561 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002562 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002564 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002565 const struct nla_policy *nla_pol;
2566 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002567} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2568 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2569 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2570 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002571 .dump = xfrm_dump_sa,
2572 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002573 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2574 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2575 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002576 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002577 .dump = xfrm_dump_policy,
2578 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002579 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002580 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002581 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002582 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2583 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002584 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002585 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2586 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002587 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2588 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002589 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002590 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002591 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2592 .nla_pol = xfrma_spd_policy,
2593 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002594 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595};
2596
Johannes Berg2d4bc932017-04-12 14:34:04 +02002597static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2598 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002600 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002601 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002602 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002603 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Fan Du74005992015-01-27 17:00:29 +08002605#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002606 if (in_compat_syscall())
Yi Zhao83e2d0582016-11-29 18:09:01 +08002607 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002608#endif
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002612 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
2614 type -= XFRM_MSG_BASE;
2615 link = &xfrm_dispatch[type];
2616
2617 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002618 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002619 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Thomas Graf492b5582005-05-03 14:26:40 -07002621 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2622 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002623 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002625 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002627 {
2628 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002629 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002630 .dump = link->dump,
2631 .done = link->done,
2632 };
2633 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
2636
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002637 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2638 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002639 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002640 if (err < 0)
2641 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002644 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Thomas Graf5424f322007-08-22 14:01:33 -07002646 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002649static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
Fan Du283bc9f2013-11-07 17:47:50 +08002651 struct net *net = sock_net(skb->sk);
2652
2653 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002654 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002655 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656}
2657
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002658static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002659{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002660 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2661 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002662}
2663
David S. Miller214e0052011-02-24 00:02:38 -05002664static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 struct xfrm_user_expire *ue;
2667 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002668 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Eric W. Biederman15e47302012-09-07 20:12:54 +00002670 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002671 if (nlh == NULL)
2672 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Thomas Graf7b67c852007-08-22 13:53:52 -07002674 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002676 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002677 /* clear the padding bytes */
2678 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
David S. Miller1d1e34d2012-06-27 21:57:03 -07002680 err = xfrm_mark_put(skb, &x->mark);
2681 if (err)
2682 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002683
Steffen Klassert7e652642018-06-12 14:07:07 +02002684 err = xfrm_if_id_put(skb, x->if_id);
2685 if (err)
2686 return err;
2687
Johannes Berg053c0952015-01-16 22:09:00 +01002688 nlmsg_end(skb, nlh);
2689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
David S. Miller214e0052011-02-24 00:02:38 -05002692static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002694 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 struct sk_buff *skb;
2696
Thomas Graf7deb2262007-08-22 13:57:39 -07002697 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 if (skb == NULL)
2699 return -ENOMEM;
2700
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002701 if (build_expire(skb, x, c) < 0) {
2702 kfree_skb(skb);
2703 return -EMSGSIZE;
2704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Michal Kubecek21ee5432014-06-03 10:26:06 +02002706 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
2708
David S. Miller214e0052011-02-24 00:02:38 -05002709static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002710{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002711 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002712 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002713 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002714
Steffen Klassertd8647b72011-03-08 00:10:27 +00002715 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002716 if (skb == NULL)
2717 return -ENOMEM;
2718
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002719 err = build_aevent(skb, x, c);
2720 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002721
Michal Kubecek21ee5432014-06-03 10:26:06 +02002722 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002723}
2724
David S. Miller214e0052011-02-24 00:02:38 -05002725static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002726{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002727 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002728 struct xfrm_usersa_flush *p;
2729 struct nlmsghdr *nlh;
2730 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002731 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002732
Thomas Graf7deb2262007-08-22 13:57:39 -07002733 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002734 if (skb == NULL)
2735 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002736
Eric W. Biederman15e47302012-09-07 20:12:54 +00002737 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002738 if (nlh == NULL) {
2739 kfree_skb(skb);
2740 return -EMSGSIZE;
2741 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002742
Thomas Graf7b67c852007-08-22 13:53:52 -07002743 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002744 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002745
Thomas Graf98250692007-08-22 12:47:26 -07002746 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002747
Michal Kubecek21ee5432014-06-03 10:26:06 +02002748 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002749}
2750
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002751static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002752{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002753 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002754 if (x->aead)
2755 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002756 if (x->aalg) {
2757 l += nla_total_size(sizeof(struct xfrm_algo) +
2758 (x->aalg->alg_key_len + 7) / 8);
2759 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2760 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002761 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002762 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002763 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002764 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002765 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002766 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002767 if (x->tfcpad)
2768 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002769 if (x->replay_esn)
2770 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002771 else
2772 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002773 if (x->security)
2774 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2775 x->security->ctx_len);
2776 if (x->coaddr)
2777 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002778 if (x->props.extra_flags)
2779 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002780 if (x->xso.dev)
2781 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002782 if (x->props.smark.v | x->props.smark.m) {
2783 l += nla_total_size(sizeof(x->props.smark.v));
2784 l += nla_total_size(sizeof(x->props.smark.m));
2785 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002786 if (x->if_id)
2787 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002788
Herbert Xud26f3982007-11-13 21:47:08 -08002789 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002790 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791
2792 return l;
2793}
2794
David S. Miller214e0052011-02-24 00:02:38 -05002795static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002796{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002797 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002798 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002799 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800 struct nlmsghdr *nlh;
2801 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002802 unsigned int len = xfrm_sa_len(x);
2803 unsigned int headlen;
2804 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002805
2806 headlen = sizeof(*p);
2807 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002808 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002809 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002810 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002811 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002812 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002813
Thomas Graf7deb2262007-08-22 13:57:39 -07002814 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002815 if (skb == NULL)
2816 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817
Eric W. Biederman15e47302012-09-07 20:12:54 +00002818 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002819 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002820 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002821 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002822
Thomas Graf7b67c852007-08-22 13:53:52 -07002823 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002824 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002825 struct nlattr *attr;
2826
Thomas Graf7b67c852007-08-22 13:53:52 -07002827 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002828 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002829 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2830 id->spi = x->id.spi;
2831 id->family = x->props.family;
2832 id->proto = x->id.proto;
2833
Thomas Grafc0144be2007-08-22 13:55:43 -07002834 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002835 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002836 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002837 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002838
2839 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002840 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002841 err = copy_to_user_state_extra(x, p, skb);
2842 if (err)
2843 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002844
Thomas Graf98250692007-08-22 12:47:26 -07002845 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002846
Michal Kubecek21ee5432014-06-03 10:26:06 +02002847 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848
David S. Miller1d1e34d2012-06-27 21:57:03 -07002849out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002850 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002851 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002852}
2853
David S. Miller214e0052011-02-24 00:02:38 -05002854static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002855{
2856
2857 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002858 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002859 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002860 case XFRM_MSG_NEWAE:
2861 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002862 case XFRM_MSG_DELSA:
2863 case XFRM_MSG_UPDSA:
2864 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002865 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002866 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002867 return xfrm_notify_sa_flush(c);
2868 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002869 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2870 c->event);
2871 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002872 }
2873
2874 return 0;
2875
2876}
2877
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002878static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2879 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002880{
2881 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2882 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002883 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002884 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2885 + userpolicy_type_attrsize();
2886}
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002889 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002891 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 struct xfrm_user_acquire *ua;
2893 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002894 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002896 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2897 if (nlh == NULL)
2898 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Thomas Graf7b67c852007-08-22 13:53:52 -07002900 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 memcpy(&ua->id, &x->id, sizeof(ua->id));
2902 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2903 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002904 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 ua->aalgos = xt->aalgos;
2906 ua->ealgos = xt->ealgos;
2907 ua->calgos = xt->calgos;
2908 ua->seq = x->km.seq = seq;
2909
David S. Miller1d1e34d2012-06-27 21:57:03 -07002910 err = copy_to_user_tmpl(xp, skb);
2911 if (!err)
2912 err = copy_to_user_state_sec_ctx(x, skb);
2913 if (!err)
2914 err = copy_to_user_policy_type(xp->type, skb);
2915 if (!err)
2916 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02002917 if (!err)
2918 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002919 if (err) {
2920 nlmsg_cancel(skb, nlh);
2921 return err;
2922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Johannes Berg053c0952015-01-16 22:09:00 +01002924 nlmsg_end(skb, nlh);
2925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
2928static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002929 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002931 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002933 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Thomas Graf7deb2262007-08-22 13:57:39 -07002935 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 if (skb == NULL)
2937 return -ENOMEM;
2938
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002939 err = build_acquire(skb, x, xt, xp);
2940 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Michal Kubecek21ee5432014-06-03 10:26:06 +02002942 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943}
2944
2945/* User gives us xfrm_user_policy_info followed by an array of 0
2946 * or more templates.
2947 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002948static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 u8 *data, int len, int *dir)
2950{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002951 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2953 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2954 struct xfrm_policy *xp;
2955 int nr;
2956
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002957 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 case AF_INET:
2959 if (opt != IP_XFRM_POLICY) {
2960 *dir = -EOPNOTSUPP;
2961 return NULL;
2962 }
2963 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002964#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 case AF_INET6:
2966 if (opt != IPV6_XFRM_POLICY) {
2967 *dir = -EOPNOTSUPP;
2968 return NULL;
2969 }
2970 break;
2971#endif
2972 default:
2973 *dir = -EINVAL;
2974 return NULL;
2975 }
2976
2977 *dir = -EINVAL;
2978
2979 if (len < sizeof(*p) ||
2980 verify_newpolicy_info(p))
2981 return NULL;
2982
2983 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002984 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 return NULL;
2986
Herbert Xua4f1bac2005-07-26 15:43:17 -07002987 if (p->dir > XFRM_POLICY_OUT)
2988 return NULL;
2989
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002990 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (xp == NULL) {
2992 *dir = -ENOBUFS;
2993 return NULL;
2994 }
2995
2996 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002997 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 copy_templates(xp, ut, nr);
2999
3000 *dir = p->dir;
3001
3002 return xp;
3003}
3004
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003005static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003006{
3007 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3008 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3009 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003010 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003011 + userpolicy_type_attrsize();
3012}
3013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003015 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
3017 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003018 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003019 struct nlmsghdr *nlh;
3020 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Eric W. Biederman15e47302012-09-07 20:12:54 +00003022 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003023 if (nlh == NULL)
3024 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Thomas Graf7b67c852007-08-22 13:53:52 -07003026 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003028 err = copy_to_user_tmpl(xp, skb);
3029 if (!err)
3030 err = copy_to_user_sec_ctx(xp, skb);
3031 if (!err)
3032 err = copy_to_user_policy_type(xp->type, skb);
3033 if (!err)
3034 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003035 if (!err)
3036 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003037 if (err) {
3038 nlmsg_cancel(skb, nlh);
3039 return err;
3040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 upe->hard = !!hard;
3042
Johannes Berg053c0952015-01-16 22:09:00 +01003043 nlmsg_end(skb, nlh);
3044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045}
3046
David S. Miller214e0052011-02-24 00:02:38 -05003047static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003049 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003051 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Thomas Graf7deb2262007-08-22 13:57:39 -07003053 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 if (skb == NULL)
3055 return -ENOMEM;
3056
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003057 err = build_polexpire(skb, xp, dir, c);
3058 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Michal Kubecek21ee5432014-06-03 10:26:06 +02003060 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
David S. Miller214e0052011-02-24 00:02:38 -05003063static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003064{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003065 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003066 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003067 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003068 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003069 struct nlmsghdr *nlh;
3070 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003071 unsigned int headlen;
3072 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003073
3074 headlen = sizeof(*p);
3075 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003076 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003077 headlen = sizeof(*id);
3078 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003079 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003080 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003081 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003082
Thomas Graf7deb2262007-08-22 13:57:39 -07003083 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003084 if (skb == NULL)
3085 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003086
Eric W. Biederman15e47302012-09-07 20:12:54 +00003087 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003088 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003089 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003090 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003091
Thomas Graf7b67c852007-08-22 13:53:52 -07003092 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003093 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003094 struct nlattr *attr;
3095
Thomas Graf7b67c852007-08-22 13:53:52 -07003096 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003097 memset(id, 0, sizeof(*id));
3098 id->dir = dir;
3099 if (c->data.byid)
3100 id->index = xp->index;
3101 else
3102 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3103
Thomas Grafc0144be2007-08-22 13:55:43 -07003104 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003105 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003106 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003107 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003108
3109 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003110 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003111
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003112 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003113 err = copy_to_user_tmpl(xp, skb);
3114 if (!err)
3115 err = copy_to_user_policy_type(xp->type, skb);
3116 if (!err)
3117 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003118 if (!err)
3119 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003120 if (err)
3121 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003122
Thomas Graf98250692007-08-22 12:47:26 -07003123 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003124
Michal Kubecek21ee5432014-06-03 10:26:06 +02003125 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003126
David S. Miller1d1e34d2012-06-27 21:57:03 -07003127out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003128 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003129 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003130}
3131
David S. Miller214e0052011-02-24 00:02:38 -05003132static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003133{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003134 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003135 struct nlmsghdr *nlh;
3136 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003137 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003138
Thomas Graf7deb2262007-08-22 13:57:39 -07003139 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003140 if (skb == NULL)
3141 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003142
Eric W. Biederman15e47302012-09-07 20:12:54 +00003143 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003144 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003145 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003146 goto out_free_skb;
3147 err = copy_to_user_policy_type(c->data.type, skb);
3148 if (err)
3149 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003150
Thomas Graf98250692007-08-22 12:47:26 -07003151 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003152
Michal Kubecek21ee5432014-06-03 10:26:06 +02003153 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003154
David S. Miller1d1e34d2012-06-27 21:57:03 -07003155out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003156 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003157 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003158}
3159
David S. Miller214e0052011-02-24 00:02:38 -05003160static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003161{
3162
3163 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003164 case XFRM_MSG_NEWPOLICY:
3165 case XFRM_MSG_UPDPOLICY:
3166 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003167 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003168 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003169 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003170 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003171 return xfrm_exp_policy_notify(xp, dir, c);
3172 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003173 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3174 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003175 }
3176
3177 return 0;
3178
3179}
3180
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003181static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003182{
3183 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3184}
3185
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003186static int build_report(struct sk_buff *skb, u8 proto,
3187 struct xfrm_selector *sel, xfrm_address_t *addr)
3188{
3189 struct xfrm_user_report *ur;
3190 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003191
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003192 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3193 if (nlh == NULL)
3194 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003195
Thomas Graf7b67c852007-08-22 13:53:52 -07003196 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003197 ur->proto = proto;
3198 memcpy(&ur->sel, sel, sizeof(ur->sel));
3199
David S. Miller1d1e34d2012-06-27 21:57:03 -07003200 if (addr) {
3201 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3202 if (err) {
3203 nlmsg_cancel(skb, nlh);
3204 return err;
3205 }
3206 }
Johannes Berg053c0952015-01-16 22:09:00 +01003207 nlmsg_end(skb, nlh);
3208 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003209}
3210
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003211static int xfrm_send_report(struct net *net, u8 proto,
3212 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003213{
3214 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003215 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003216
Thomas Graf7deb2262007-08-22 13:57:39 -07003217 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003218 if (skb == NULL)
3219 return -ENOMEM;
3220
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003221 err = build_report(skb, proto, sel, addr);
3222 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003223
Michal Kubecek21ee5432014-06-03 10:26:06 +02003224 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003225}
3226
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003227static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003228{
3229 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3230}
3231
3232static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3233 xfrm_address_t *new_saddr, __be16 new_sport)
3234{
3235 struct xfrm_user_mapping *um;
3236 struct nlmsghdr *nlh;
3237
3238 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3239 if (nlh == NULL)
3240 return -EMSGSIZE;
3241
3242 um = nlmsg_data(nlh);
3243
3244 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3245 um->id.spi = x->id.spi;
3246 um->id.family = x->props.family;
3247 um->id.proto = x->id.proto;
3248 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3249 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3250 um->new_sport = new_sport;
3251 um->old_sport = x->encap->encap_sport;
3252 um->reqid = x->props.reqid;
3253
Johannes Berg053c0952015-01-16 22:09:00 +01003254 nlmsg_end(skb, nlh);
3255 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003256}
3257
3258static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3259 __be16 sport)
3260{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003261 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003262 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003263 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003264
3265 if (x->id.proto != IPPROTO_ESP)
3266 return -EINVAL;
3267
3268 if (!x->encap)
3269 return -EINVAL;
3270
3271 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3272 if (skb == NULL)
3273 return -ENOMEM;
3274
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003275 err = build_mapping(skb, x, ipaddr, sport);
3276 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003277
Michal Kubecek21ee5432014-06-03 10:26:06 +02003278 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003279}
3280
Horia Geanta0f245582014-02-12 16:20:06 +02003281static bool xfrm_is_alive(const struct km_event *c)
3282{
3283 return (bool)xfrm_acquire_is_on(c->net);
3284}
3285
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 .notify = xfrm_send_state_notify,
3288 .acquire = xfrm_send_acquire,
3289 .compile_policy = xfrm_compile_policy,
3290 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003291 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003292 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003293 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003294 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295};
3296
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003297static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298{
Patrick McHardybe336902006-03-20 22:40:54 -08003299 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003300 struct netlink_kernel_cfg cfg = {
3301 .groups = XFRMNLGRP_MAX,
3302 .input = xfrm_netlink_rcv,
3303 };
Patrick McHardybe336902006-03-20 22:40:54 -08003304
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003305 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003306 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003308 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003309 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 return 0;
3311}
3312
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003313static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003314{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003315 struct net *net;
3316 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003317 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003318 synchronize_net();
3319 list_for_each_entry(net, net_exit_list, exit_list)
3320 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003321}
3322
3323static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003324 .init = xfrm_user_net_init,
3325 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003326};
3327
3328static int __init xfrm_user_init(void)
3329{
3330 int rv;
3331
3332 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3333
3334 rv = register_pernet_subsys(&xfrm_user_net_ops);
3335 if (rv < 0)
3336 return rv;
3337 rv = xfrm_register_km(&netlink_mgr);
3338 if (rv < 0)
3339 unregister_pernet_subsys(&xfrm_user_net_ops);
3340 return rv;
3341}
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343static void __exit xfrm_user_exit(void)
3344{
3345 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003346 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347}
3348
3349module_init(xfrm_user_init);
3350module_exit(xfrm_user_exit);
3351MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003352MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003353