blob: 4791aa8b818583b5fcb5812fd561342fbab2edfa [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 Beltrami0a694522006-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]);
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700599
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);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900937 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
Florian Westphal86126b72018-06-25 14:00:07 +02001060 if (!nlsk) {
1061 kfree_skb(skb);
1062 return -EPIPE;
1063 }
1064
1065 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001066}
1067
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001068static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001069{
1070 return NLMSG_ALIGN(4)
1071 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001072 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1073 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1074 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001075}
1076
Alexey Dobriyane0710412010-01-23 13:37:10 +00001077static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001078 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001079{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001080 struct xfrmk_spdinfo si;
1081 struct xfrmu_spdinfo spc;
1082 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001083 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001084 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001085 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001086 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001087 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001088
Eric W. Biederman15e47302012-09-07 20:12:54 +00001089 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001090 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001091 return -EMSGSIZE;
1092
1093 f = nlmsg_data(nlh);
1094 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001095 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001096 spc.incnt = si.incnt;
1097 spc.outcnt = si.outcnt;
1098 spc.fwdcnt = si.fwdcnt;
1099 spc.inscnt = si.inscnt;
1100 spc.outscnt = si.outscnt;
1101 spc.fwdscnt = si.fwdscnt;
1102 sph.spdhcnt = si.spdhcnt;
1103 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001104
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001105 do {
1106 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1107
1108 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1109 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1110 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1111 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1112 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1113
David S. Miller1d1e34d2012-06-27 21:57:03 -07001114 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1115 if (!err)
1116 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001117 if (!err)
1118 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1119 if (!err)
1120 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001121 if (err) {
1122 nlmsg_cancel(skb, nlh);
1123 return err;
1124 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001125
Johannes Berg053c0952015-01-16 22:09:00 +01001126 nlmsg_end(skb, nlh);
1127 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001128}
1129
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001130static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1131 struct nlattr **attrs)
1132{
1133 struct net *net = sock_net(skb->sk);
1134 struct xfrmu_spdhthresh *thresh4 = NULL;
1135 struct xfrmu_spdhthresh *thresh6 = NULL;
1136
1137 /* selector prefixlen thresholds to hash policies */
1138 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1139 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1140
1141 if (nla_len(rta) < sizeof(*thresh4))
1142 return -EINVAL;
1143 thresh4 = nla_data(rta);
1144 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1145 return -EINVAL;
1146 }
1147 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1148 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1149
1150 if (nla_len(rta) < sizeof(*thresh6))
1151 return -EINVAL;
1152 thresh6 = nla_data(rta);
1153 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1154 return -EINVAL;
1155 }
1156
1157 if (thresh4 || thresh6) {
1158 write_seqlock(&net->xfrm.policy_hthresh.lock);
1159 if (thresh4) {
1160 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1161 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1162 }
1163 if (thresh6) {
1164 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1165 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1166 }
1167 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1168
1169 xfrm_policy_hash_rebuild(net);
1170 }
1171
1172 return 0;
1173}
1174
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001175static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001176 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001177{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001178 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001179 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001180 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001181 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001182 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001183 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001184
Thomas Graf7deb2262007-08-22 13:57:39 -07001185 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001186 if (r_skb == NULL)
1187 return -ENOMEM;
1188
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001189 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1190 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001191
Eric W. Biederman15e47302012-09-07 20:12:54 +00001192 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001193}
1194
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001195static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001196{
1197 return NLMSG_ALIGN(4)
1198 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1199 + nla_total_size(4); /* XFRMA_SAD_CNT */
1200}
1201
Alexey Dobriyane0710412010-01-23 13:37:10 +00001202static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001203 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001204{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001205 struct xfrmk_sadinfo si;
1206 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001207 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001208 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001209 u32 *f;
1210
Eric W. Biederman15e47302012-09-07 20:12:54 +00001211 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001212 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001213 return -EMSGSIZE;
1214
1215 f = nlmsg_data(nlh);
1216 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001217 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001218
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001219 sh.sadhmcnt = si.sadhmcnt;
1220 sh.sadhcnt = si.sadhcnt;
1221
David S. Miller1d1e34d2012-06-27 21:57:03 -07001222 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1223 if (!err)
1224 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1225 if (err) {
1226 nlmsg_cancel(skb, nlh);
1227 return err;
1228 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001229
Johannes Berg053c0952015-01-16 22:09:00 +01001230 nlmsg_end(skb, nlh);
1231 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001232}
1233
1234static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001235 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001236{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001237 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001238 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001239 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001240 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001241 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001242 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001243
Thomas Graf7deb2262007-08-22 13:57:39 -07001244 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001245 if (r_skb == NULL)
1246 return -ENOMEM;
1247
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001248 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1249 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001250
Eric W. Biederman15e47302012-09-07 20:12:54 +00001251 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001252}
1253
Christoph Hellwig22e70052007-01-02 15:22:30 -08001254static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001255 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001257 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001258 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct xfrm_state *x;
1260 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001261 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001263 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (x == NULL)
1265 goto out_noput;
1266
1267 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1268 if (IS_ERR(resp_skb)) {
1269 err = PTR_ERR(resp_skb);
1270 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001271 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 xfrm_state_put(x);
1274out_noput:
1275 return err;
1276}
1277
Christoph Hellwig22e70052007-01-02 15:22:30 -08001278static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001279 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001281 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 struct xfrm_state *x;
1283 struct xfrm_userspi_info *p;
1284 struct sk_buff *resp_skb;
1285 xfrm_address_t *daddr;
1286 int family;
1287 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001288 u32 mark;
1289 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001290 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Thomas Graf7b67c852007-08-22 13:53:52 -07001292 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001293 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (err)
1295 goto out_noput;
1296
1297 family = p->info.family;
1298 daddr = &p->info.id.daddr;
1299
1300 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001301
1302 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001303
1304 if (attrs[XFRMA_IF_ID])
1305 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001308 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001309 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 xfrm_state_put(x);
1311 x = NULL;
1312 }
1313 }
1314
1315 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001316 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klassert7e652642018-06-12 14:07:07 +02001317 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 &p->info.saddr, 1,
1319 family);
1320 err = -ENOENT;
1321 if (x == NULL)
1322 goto out_noput;
1323
Herbert Xu658b2192007-10-09 13:29:52 -07001324 err = xfrm_alloc_spi(x, p->min, p->max);
1325 if (err)
1326 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Herbert Xu658b2192007-10-09 13:29:52 -07001328 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (IS_ERR(resp_skb)) {
1330 err = PTR_ERR(resp_skb);
1331 goto out;
1332 }
1333
Eric W. Biederman15e47302012-09-07 20:12:54 +00001334 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336out:
1337 xfrm_state_put(x);
1338out_noput:
1339 return err;
1340}
1341
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001342static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 switch (dir) {
1345 case XFRM_POLICY_IN:
1346 case XFRM_POLICY_OUT:
1347 case XFRM_POLICY_FWD:
1348 break;
1349
1350 default:
1351 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 return 0;
1355}
1356
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001357static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001358{
1359 switch (type) {
1360 case XFRM_POLICY_TYPE_MAIN:
1361#ifdef CONFIG_XFRM_SUB_POLICY
1362 case XFRM_POLICY_TYPE_SUB:
1363#endif
1364 break;
1365
1366 default:
1367 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001368 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001369
1370 return 0;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1374{
Fan Due682adf02013-11-07 17:47:48 +08001375 int ret;
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 switch (p->share) {
1378 case XFRM_SHARE_ANY:
1379 case XFRM_SHARE_SESSION:
1380 case XFRM_SHARE_USER:
1381 case XFRM_SHARE_UNIQUE:
1382 break;
1383
1384 default:
1385 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 switch (p->action) {
1389 case XFRM_POLICY_ALLOW:
1390 case XFRM_POLICY_BLOCK:
1391 break;
1392
1393 default:
1394 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 switch (p->sel.family) {
1398 case AF_INET:
1399 break;
1400
1401 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001402#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 break;
1404#else
1405 return -EAFNOSUPPORT;
1406#endif
1407
1408 default:
1409 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Fan Due682adf02013-11-07 17:47:48 +08001412 ret = verify_policy_dir(p->dir);
1413 if (ret)
1414 return ret;
1415 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1416 return -EINVAL;
1417
1418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Thomas Graf5424f322007-08-22 14:01:33 -07001421static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001422{
Thomas Graf5424f322007-08-22 14:01:33 -07001423 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001424 struct xfrm_user_sec_ctx *uctx;
1425
1426 if (!rt)
1427 return 0;
1428
Thomas Graf5424f322007-08-22 14:01:33 -07001429 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001430 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1434 int nr)
1435{
1436 int i;
1437
1438 xp->xfrm_nr = nr;
1439 for (i = 0; i < nr; i++, ut++) {
1440 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1441
1442 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1443 memcpy(&t->saddr, &ut->saddr,
1444 sizeof(xfrm_address_t));
1445 t->reqid = ut->reqid;
1446 t->mode = ut->mode;
1447 t->share = ut->share;
1448 t->optional = ut->optional;
1449 t->aalgos = ut->aalgos;
1450 t->ealgos = ut->ealgos;
1451 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001452 /* If all masks are ~0, then we allow all algorithms. */
1453 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001454 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456}
1457
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001458static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1459{
Steffen Klassert732706a2017-12-08 08:07:25 +01001460 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001461 int i;
1462
1463 if (nr > XFRM_MAX_DEPTH)
1464 return -EINVAL;
1465
Steffen Klassert732706a2017-12-08 08:07:25 +01001466 prev_family = family;
1467
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001468 for (i = 0; i < nr; i++) {
1469 /* We never validated the ut->family value, so many
1470 * applications simply leave it at zero. The check was
1471 * never made and ut->family was ignored because all
1472 * templates could be assumed to have the same family as
1473 * the policy itself. Now that we will have ipv4-in-ipv6
1474 * and ipv6-in-ipv4 tunnels, this is no longer true.
1475 */
1476 if (!ut[i].family)
1477 ut[i].family = family;
1478
Steffen Klassert732706a2017-12-08 08:07:25 +01001479 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1480 (ut[i].family != prev_family))
1481 return -EINVAL;
1482
1483 prev_family = ut[i].family;
1484
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001485 switch (ut[i].family) {
1486 case AF_INET:
1487 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001488#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001489 case AF_INET6:
1490 break;
1491#endif
1492 default:
1493 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001494 }
Cong Wang6a53b752017-11-27 11:15:16 -08001495
1496 switch (ut[i].id.proto) {
1497 case IPPROTO_AH:
1498 case IPPROTO_ESP:
1499 case IPPROTO_COMP:
1500#if IS_ENABLED(CONFIG_IPV6)
1501 case IPPROTO_ROUTING:
1502 case IPPROTO_DSTOPTS:
1503#endif
1504 case IPSEC_PROTO_ANY:
1505 break;
1506 default:
1507 return -EINVAL;
1508 }
1509
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001510 }
1511
1512 return 0;
1513}
1514
Thomas Graf5424f322007-08-22 14:01:33 -07001515static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Thomas Graf5424f322007-08-22 14:01:33 -07001517 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 if (!rt) {
1520 pol->xfrm_nr = 0;
1521 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001522 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1523 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001524 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001526 err = validate_tmpl(nr, utmpl, pol->family);
1527 if (err)
1528 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Thomas Graf5424f322007-08-22 14:01:33 -07001530 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532 return 0;
1533}
1534
Thomas Graf5424f322007-08-22 14:01:33 -07001535static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001536{
Thomas Graf5424f322007-08-22 14:01:33 -07001537 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001538 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001539 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001540 int err;
1541
1542 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001543 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001544 type = upt->type;
1545 }
1546
1547 err = verify_policy_type(type);
1548 if (err)
1549 return err;
1550
1551 *tp = type;
1552 return 0;
1553}
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1556{
1557 xp->priority = p->priority;
1558 xp->index = p->index;
1559 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1560 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1561 xp->action = p->action;
1562 xp->flags = p->flags;
1563 xp->family = p->sel.family;
1564 /* XXX xp->share = p->share; */
1565}
1566
1567static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1568{
Mathias Krause7b789832012-09-19 11:33:40 +00001569 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1571 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1572 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1573 p->priority = xp->priority;
1574 p->index = xp->index;
1575 p->sel.family = xp->family;
1576 p->dir = dir;
1577 p->action = xp->action;
1578 p->flags = xp->flags;
1579 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1580}
1581
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001582static 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 -07001583{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001584 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 int err;
1586
1587 if (!xp) {
1588 *errp = -ENOMEM;
1589 return NULL;
1590 }
1591
1592 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001593
Thomas Graf35a7aa02007-08-22 14:00:40 -07001594 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001595 if (err)
1596 goto error;
1597
Thomas Graf35a7aa02007-08-22 14:00:40 -07001598 if (!(err = copy_from_user_tmpl(xp, attrs)))
1599 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001600 if (err)
1601 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001603 xfrm_mark_get(attrs, &xp->mark);
1604
Steffen Klassert7e652642018-06-12 14:07:07 +02001605 if (attrs[XFRMA_IF_ID])
1606 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001609 error:
1610 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001611 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001612 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001613 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Christoph Hellwig22e70052007-01-02 15:22:30 -08001616static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001617 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001619 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001620 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001622 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int err;
1624 int excl;
1625
1626 err = verify_newpolicy_info(p);
1627 if (err)
1628 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001629 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001630 if (err)
1631 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001633 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (!xp)
1635 return err;
1636
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001637 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001638 * Aha! this is anti-netlink really i.e more pfkey derived
1639 * in netlink excl is a flag and you wouldnt need
1640 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1642 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001643 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001646 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 kfree(xp);
1648 return err;
1649 }
1650
Herbert Xuf60f6b82005-06-18 22:44:37 -07001651 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001652 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001653 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001654 km_policy_notify(xp, p->dir, &c);
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 xfrm_pol_put(xp);
1657
1658 return 0;
1659}
1660
1661static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1662{
1663 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1664 int i;
1665
1666 if (xp->xfrm_nr == 0)
1667 return 0;
1668
1669 for (i = 0; i < xp->xfrm_nr; i++) {
1670 struct xfrm_user_tmpl *up = &vec[i];
1671 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1672
Mathias Krause1f868402012-09-19 11:33:41 +00001673 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001675 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1677 up->reqid = kp->reqid;
1678 up->mode = kp->mode;
1679 up->share = kp->share;
1680 up->optional = kp->optional;
1681 up->aalgos = kp->aalgos;
1682 up->ealgos = kp->ealgos;
1683 up->calgos = kp->calgos;
1684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Thomas Grafc0144be2007-08-22 13:55:43 -07001686 return nla_put(skb, XFRMA_TMPL,
1687 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001688}
1689
Serge Hallyn0d681622006-07-24 23:30:44 -07001690static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1691{
1692 if (x->security) {
1693 return copy_sec_ctx(x->security, skb);
1694 }
1695 return 0;
1696}
1697
1698static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1699{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001700 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001701 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001702 return 0;
1703}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001704static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001705{
1706#ifdef CONFIG_XFRM_SUB_POLICY
1707 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1708#else
1709 return 0;
1710#endif
1711}
Serge Hallyn0d681622006-07-24 23:30:44 -07001712
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001713#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001714static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001715{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001716 struct xfrm_userpolicy_type upt;
1717
1718 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1719 memset(&upt, 0, sizeof(upt));
1720 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001721
Thomas Grafc0144be2007-08-22 13:55:43 -07001722 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001723}
1724
1725#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001726static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001727{
1728 return 0;
1729}
1730#endif
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1733{
1734 struct xfrm_dump_info *sp = ptr;
1735 struct xfrm_userpolicy_info *p;
1736 struct sk_buff *in_skb = sp->in_skb;
1737 struct sk_buff *skb = sp->out_skb;
1738 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001739 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Eric W. Biederman15e47302012-09-07 20:12:54 +00001741 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001742 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1743 if (nlh == NULL)
1744 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Thomas Graf7b67c852007-08-22 13:53:52 -07001746 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001748 err = copy_to_user_tmpl(xp, skb);
1749 if (!err)
1750 err = copy_to_user_sec_ctx(xp, skb);
1751 if (!err)
1752 err = copy_to_user_policy_type(xp->type, skb);
1753 if (!err)
1754 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001755 if (!err)
1756 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001757 if (err) {
1758 nlmsg_cancel(skb, nlh);
1759 return err;
1760 }
Thomas Graf98250692007-08-22 12:47:26 -07001761 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Timo Teras4c563f72008-02-28 21:31:08 -08001765static int xfrm_dump_policy_done(struct netlink_callback *cb)
1766{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001767 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001768 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001769
Fan Du283bc9f2013-11-07 17:47:50 +08001770 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001771 return 0;
1772}
1773
Herbert Xu1137b5e2017-10-19 20:51:10 +08001774static int xfrm_dump_policy_start(struct netlink_callback *cb)
1775{
1776 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1777
1778 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1779
1780 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1781 return 0;
1782}
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1785{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001786 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001787 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 struct xfrm_dump_info info;
1789
1790 info.in_skb = cb->skb;
1791 info.out_skb = skb;
1792 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1793 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001794
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001795 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 return skb->len;
1798}
1799
1800static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1801 struct xfrm_policy *xp,
1802 int dir, u32 seq)
1803{
1804 struct xfrm_dump_info info;
1805 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001806 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Thomas Graf7deb2262007-08-22 13:57:39 -07001808 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (!skb)
1810 return ERR_PTR(-ENOMEM);
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 info.in_skb = in_skb;
1813 info.out_skb = skb;
1814 info.nlmsg_seq = seq;
1815 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Mathias Krausec2546372012-09-14 09:58:32 +00001817 err = dump_one_policy(xp, dir, 0, &info);
1818 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001820 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
1822
1823 return skb;
1824}
1825
Christoph Hellwig22e70052007-01-02 15:22:30 -08001826static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001827 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001829 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct xfrm_policy *xp;
1831 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001832 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001834 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001836 struct xfrm_mark m;
1837 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001838 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Thomas Graf7b67c852007-08-22 13:53:52 -07001840 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1842
Thomas Graf35a7aa02007-08-22 14:00:40 -07001843 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001844 if (err)
1845 return err;
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 err = verify_policy_dir(p->dir);
1848 if (err)
1849 return err;
1850
Steffen Klassert7e652642018-06-12 14:07:07 +02001851 if (attrs[XFRMA_IF_ID])
1852 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02001855 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001856 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001857 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001858 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001859
Thomas Graf35a7aa02007-08-22 14:00:40 -07001860 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001861 if (err)
1862 return err;
1863
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001864 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001865 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001866 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001867
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001868 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001869 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001870 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001871 }
Steffen Klassert7e652642018-06-12 14:07:07 +02001872 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001873 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001874 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (xp == NULL)
1877 return -ENOENT;
1878
1879 if (!delete) {
1880 struct sk_buff *resp_skb;
1881
1882 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1883 if (IS_ERR(resp_skb)) {
1884 err = PTR_ERR(resp_skb);
1885 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001886 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001887 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001889 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001890 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001891
1892 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001893 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001894
Herbert Xue7443892005-06-18 22:44:18 -07001895 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001896 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001897 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001898 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001899 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001902out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001903 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return err;
1905}
1906
Christoph Hellwig22e70052007-01-02 15:22:30 -08001907static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001908 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001910 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001911 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001912 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001913 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Tetsuo Handa2e710292014-04-22 21:48:30 +09001915 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001916 if (err) {
1917 if (err == -ESRCH) /* empty table */
1918 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001919 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001920 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001921 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001922 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001923 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001924 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001925 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001926 km_state_notify(NULL, &c);
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 return 0;
1929}
1930
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001931static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001932{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001933 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001934 xfrm_replay_state_esn_len(x->replay_esn) :
1935 sizeof(struct xfrm_replay_state);
1936
Thomas Graf7deb2262007-08-22 13:57:39 -07001937 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001938 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001939 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001940 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001941 + nla_total_size(4) /* XFRM_AE_RTHR */
1942 + nla_total_size(4); /* XFRM_AE_ETHR */
1943}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001944
David S. Miller214e0052011-02-24 00:02:38 -05001945static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001946{
1947 struct xfrm_aevent_id *id;
1948 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001949 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001950
Eric W. Biederman15e47302012-09-07 20:12:54 +00001951 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001952 if (nlh == NULL)
1953 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001954
Thomas Graf7b67c852007-08-22 13:53:52 -07001955 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001956 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001957 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001958 id->sa_id.spi = x->id.spi;
1959 id->sa_id.family = x->props.family;
1960 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001961 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001962 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001963 id->flags = c->data.aevent;
1964
David S. Millerd0fde792012-03-29 04:02:26 -04001965 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001966 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1967 xfrm_replay_state_esn_len(x->replay_esn),
1968 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001969 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001970 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1971 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001972 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001973 if (err)
1974 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001975 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1976 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001977 if (err)
1978 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001979
David S. Miller1d1e34d2012-06-27 21:57:03 -07001980 if (id->flags & XFRM_AE_RTHR) {
1981 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1982 if (err)
1983 goto out_cancel;
1984 }
1985 if (id->flags & XFRM_AE_ETHR) {
1986 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1987 x->replay_maxage * 10 / HZ);
1988 if (err)
1989 goto out_cancel;
1990 }
1991 err = xfrm_mark_put(skb, &x->mark);
1992 if (err)
1993 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001994
Steffen Klassert7e652642018-06-12 14:07:07 +02001995 err = xfrm_if_id_put(skb, x->if_id);
1996 if (err)
1997 goto out_cancel;
1998
Johannes Berg053c0952015-01-16 22:09:00 +01001999 nlmsg_end(skb, nlh);
2000 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002001
David S. Miller1d1e34d2012-06-27 21:57:03 -07002002out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002003 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002004 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002005}
2006
Christoph Hellwig22e70052007-01-02 15:22:30 -08002007static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002008 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002009{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002010 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002011 struct xfrm_state *x;
2012 struct sk_buff *r_skb;
2013 int err;
2014 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002015 u32 mark;
2016 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002017 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002018 struct xfrm_usersa_id *id = &p->sa_id;
2019
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002020 mark = xfrm_mark_get(attrs, &m);
2021
2022 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002023 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002024 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002025
2026 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2027 if (r_skb == NULL) {
2028 xfrm_state_put(x);
2029 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002030 }
2031
2032 /*
2033 * XXX: is this lock really needed - none of the other
2034 * gets lock (the concern is things getting updated
2035 * while we are still reading) - jhs
2036 */
2037 spin_lock_bh(&x->lock);
2038 c.data.aevent = p->flags;
2039 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002040 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002041
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002042 err = build_aevent(r_skb, x, &c);
2043 BUG_ON(err < 0);
2044
Eric W. Biederman15e47302012-09-07 20:12:54 +00002045 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002046 spin_unlock_bh(&x->lock);
2047 xfrm_state_put(x);
2048 return err;
2049}
2050
Christoph Hellwig22e70052007-01-02 15:22:30 -08002051static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002052 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002053{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002054 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002055 struct xfrm_state *x;
2056 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002057 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002058 u32 mark = 0;
2059 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002060 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002061 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002062 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002063 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002064 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2065 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002066
Michael Rossberg4e077232015-09-29 11:25:08 +02002067 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002068 return err;
2069
2070 /* pedantic mode - thou shalt sayeth replaceth */
2071 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2072 return err;
2073
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002074 mark = xfrm_mark_get(attrs, &m);
2075
2076 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 -08002077 if (x == NULL)
2078 return -ESRCH;
2079
2080 if (x->km.state != XFRM_STATE_VALID)
2081 goto out;
2082
Steffen Klassert4479ff72013-09-09 09:39:01 +02002083 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002084 if (err)
2085 goto out;
2086
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002087 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002088 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002089 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002090
2091 c.event = nlh->nlmsg_type;
2092 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002093 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002094 c.data.aevent = XFRM_AE_CU;
2095 km_state_notify(x, &c);
2096 err = 0;
2097out:
2098 xfrm_state_put(x);
2099 return err;
2100}
2101
Christoph Hellwig22e70052007-01-02 15:22:30 -08002102static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002103 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002105 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002106 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002107 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002108 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002109
Thomas Graf35a7aa02007-08-22 14:00:40 -07002110 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002111 if (err)
2112 return err;
2113
Tetsuo Handa2e710292014-04-22 21:48:30 +09002114 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002115 if (err) {
2116 if (err == -ESRCH) /* empty table */
2117 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002118 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002119 }
2120
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002121 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002122 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002123 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002124 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002125 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002126 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 0;
2128}
2129
Christoph Hellwig22e70052007-01-02 15:22:30 -08002130static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002131 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002132{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002133 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002134 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002135 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002136 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002137 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002138 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002139 struct xfrm_mark m;
2140 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02002141 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002142
Thomas Graf35a7aa02007-08-22 14:00:40 -07002143 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002144 if (err)
2145 return err;
2146
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002147 err = verify_policy_dir(p->dir);
2148 if (err)
2149 return err;
2150
Steffen Klassert7e652642018-06-12 14:07:07 +02002151 if (attrs[XFRMA_IF_ID])
2152 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2153
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002154 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02002155 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002156 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002157 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002158 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002159
Thomas Graf35a7aa02007-08-22 14:00:40 -07002160 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002161 if (err)
2162 return err;
2163
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002164 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002165 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002166 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002167
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002168 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002169 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002170 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002171 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002172 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002173 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002174 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002175 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002177 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002178
Timo Teräsea2dea92010-03-31 00:17:05 +00002179 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002180 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002181
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182 err = 0;
2183 if (up->hard) {
2184 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002185 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002186 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002187 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002188
2189out:
2190 xfrm_pol_put(xp);
2191 return err;
2192}
2193
Christoph Hellwig22e70052007-01-02 15:22:30 -08002194static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002195 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002196{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002197 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002198 struct xfrm_state *x;
2199 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002200 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002201 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002202 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002203 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002204
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002205 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002206
David S. Miller3a765aa2007-02-26 14:52:21 -08002207 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002208 if (x == NULL)
2209 return err;
2210
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002211 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002212 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002213 if (x->km.state != XFRM_STATE_VALID)
2214 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002215 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002216
Joy Latten161a09e2006-11-27 13:11:54 -06002217 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002218 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002219 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002220 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002221 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002222out:
2223 spin_unlock_bh(&x->lock);
2224 xfrm_state_put(x);
2225 return err;
2226}
2227
Christoph Hellwig22e70052007-01-02 15:22:30 -08002228static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002229 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002230{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002231 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002232 struct xfrm_policy *xp;
2233 struct xfrm_user_tmpl *ut;
2234 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002235 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002236 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002237
Thomas Graf7b67c852007-08-22 13:53:52 -07002238 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002239 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002240 int err = -ENOMEM;
2241
2242 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002243 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002244
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002245 xfrm_mark_get(attrs, &mark);
2246
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002247 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002248 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002249 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002250
2251 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002252 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002253 if (!xp)
2254 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002255
2256 memcpy(&x->id, &ua->id, sizeof(ua->id));
2257 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2258 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002259 xp->mark.m = x->mark.m = mark.m;
2260 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002261 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002262 /* extract the templates and for each call km_key */
2263 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2264 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2265 memcpy(&x->id, &t->id, sizeof(x->id));
2266 x->props.mode = t->mode;
2267 x->props.reqid = t->reqid;
2268 x->props.family = ut->family;
2269 t->aalgos = ua->aalgos;
2270 t->ealgos = ua->ealgos;
2271 t->calgos = ua->calgos;
2272 err = km_query(x, t, xp);
2273
2274 }
2275
2276 kfree(x);
2277 kfree(xp);
2278
2279 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002280
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002281free_state:
2282 kfree(x);
2283nomem:
2284 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002285}
2286
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002288static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002289 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002290 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002291{
Thomas Graf5424f322007-08-22 14:01:33 -07002292 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002293 struct xfrm_user_migrate *um;
2294 int i, num_migrate;
2295
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002296 if (k != NULL) {
2297 struct xfrm_user_kmaddress *uk;
2298
2299 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2300 memcpy(&k->local, &uk->local, sizeof(k->local));
2301 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2302 k->family = uk->family;
2303 k->reserved = uk->reserved;
2304 }
2305
Thomas Graf5424f322007-08-22 14:01:33 -07002306 um = nla_data(rt);
2307 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002308
2309 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2310 return -EINVAL;
2311
2312 for (i = 0; i < num_migrate; i++, um++, ma++) {
2313 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2314 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2315 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2316 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2317
2318 ma->proto = um->proto;
2319 ma->mode = um->mode;
2320 ma->reqid = um->reqid;
2321
2322 ma->old_family = um->old_family;
2323 ma->new_family = um->new_family;
2324 }
2325
2326 *num = i;
2327 return 0;
2328}
2329
2330static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002331 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002332{
Thomas Graf7b67c852007-08-22 13:53:52 -07002333 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002334 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002335 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002336 u8 type;
2337 int err;
2338 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002339 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002340 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002341
Thomas Graf35a7aa02007-08-22 14:00:40 -07002342 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002343 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002344
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002345 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2346
Thomas Graf5424f322007-08-22 14:01:33 -07002347 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002348 if (err)
2349 return err;
2350
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002351 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002352 if (err)
2353 return err;
2354
2355 if (!n)
2356 return 0;
2357
Antony Antony4ab47d42017-06-06 12:12:13 +02002358 if (attrs[XFRMA_ENCAP]) {
2359 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2360 sizeof(*encap), GFP_KERNEL);
2361 if (!encap)
2362 return 0;
2363 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364
Antony Antony4ab47d42017-06-06 12:12:13 +02002365 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2366
2367 kfree(encap);
2368
2369 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002370}
2371#else
2372static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002373 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002374{
2375 return -ENOPROTOOPT;
2376}
2377#endif
2378
2379#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002380static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002381{
2382 struct xfrm_user_migrate um;
2383
2384 memset(&um, 0, sizeof(um));
2385 um.proto = m->proto;
2386 um.mode = m->mode;
2387 um.reqid = m->reqid;
2388 um.old_family = m->old_family;
2389 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2390 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2391 um.new_family = m->new_family;
2392 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2393 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2394
Thomas Grafc0144be2007-08-22 13:55:43 -07002395 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002396}
2397
David S. Miller183cad12011-02-24 00:28:01 -05002398static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002399{
2400 struct xfrm_user_kmaddress uk;
2401
2402 memset(&uk, 0, sizeof(uk));
2403 uk.family = k->family;
2404 uk.reserved = k->reserved;
2405 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002406 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002407
2408 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2409}
2410
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002411static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2412 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002413{
2414 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002415 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002416 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002417 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2418 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002419}
2420
David S. Miller183cad12011-02-24 00:28:01 -05002421static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2422 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002423 const struct xfrm_selector *sel,
2424 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002425{
David S. Miller183cad12011-02-24 00:28:01 -05002426 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002427 struct xfrm_userpolicy_id *pol_id;
2428 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002429 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002430
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002431 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2432 if (nlh == NULL)
2433 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002434
Thomas Graf7b67c852007-08-22 13:53:52 -07002435 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002436 /* copy data from selector, dir, and type to the pol_id */
2437 memset(pol_id, 0, sizeof(*pol_id));
2438 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2439 pol_id->dir = dir;
2440
David S. Miller1d1e34d2012-06-27 21:57:03 -07002441 if (k != NULL) {
2442 err = copy_to_user_kmaddress(k, skb);
2443 if (err)
2444 goto out_cancel;
2445 }
Antony Antony8bafd732017-06-06 12:12:14 +02002446 if (encap) {
2447 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2448 if (err)
2449 goto out_cancel;
2450 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002451 err = copy_to_user_policy_type(type, skb);
2452 if (err)
2453 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002454 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002455 err = copy_to_user_migrate(mp, skb);
2456 if (err)
2457 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002458 }
2459
Johannes Berg053c0952015-01-16 22:09:00 +01002460 nlmsg_end(skb, nlh);
2461 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002462
2463out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002464 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002465 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002466}
2467
David S. Miller183cad12011-02-24 00:28:01 -05002468static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2469 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002470 const struct xfrm_kmaddress *k,
2471 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002472{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002473 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002474 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002475 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002476
Antony Antony8bafd732017-06-06 12:12:14 +02002477 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2478 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002479 if (skb == NULL)
2480 return -ENOMEM;
2481
2482 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002483 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2484 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002485
Michal Kubecek21ee5432014-06-03 10:26:06 +02002486 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002487}
2488#else
David S. Miller183cad12011-02-24 00:28:01 -05002489static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2490 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002491 const struct xfrm_kmaddress *k,
2492 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002493{
2494 return -ENOPROTOOPT;
2495}
2496#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002497
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002498#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002499
2500static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002501 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002502 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2503 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2504 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2505 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2506 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2507 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002508 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002509 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002510 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002511 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002512 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002513 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002514 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002515 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2516 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002517 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002518 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002519 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002520 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002521 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522};
2523
Thomas Graf492b5582005-05-03 14:26:40 -07002524#undef XMSGSIZE
2525
Thomas Grafcf5cb792007-08-22 13:59:04 -07002526static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002527 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2528 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2529 [XFRMA_LASTUSED] = { .type = NLA_U64},
2530 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002531 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002532 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2533 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2534 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2535 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2536 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2537 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2538 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2539 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2540 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2541 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2542 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2543 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2544 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2545 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002546 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002547 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002548 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002549 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002550 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002551 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002552 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002553 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002554 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2555 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002556 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002557};
2558
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002559static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2560 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2561 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2562};
2563
Mathias Krause05600a72013-02-24 14:10:27 +01002564static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002565 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002566 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002568 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002569 const struct nla_policy *nla_pol;
2570 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002571} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2572 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2573 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2574 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002575 .dump = xfrm_dump_sa,
2576 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002577 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2578 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2579 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002580 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002581 .dump = xfrm_dump_policy,
2582 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002583 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002584 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002585 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002586 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2587 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002588 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002589 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2590 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002591 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2592 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002593 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002594 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002595 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2596 .nla_pol = xfrma_spd_policy,
2597 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002598 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599};
2600
Johannes Berg2d4bc932017-04-12 14:34:04 +02002601static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2602 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002604 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002605 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002606 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002607 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
Fan Du74005992015-01-27 17:00:29 +08002609#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002610 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002611 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002612#endif
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002616 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 type -= XFRM_MSG_BASE;
2619 link = &xfrm_dispatch[type];
2620
2621 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002622 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002623 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Thomas Graf492b5582005-05-03 14:26:40 -07002625 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2626 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002627 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002629 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002631 {
2632 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002633 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002634 .dump = link->dump,
2635 .done = link->done,
2636 };
2637 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 }
2640
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002641 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2642 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002643 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002644 if (err < 0)
2645 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002648 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Thomas Graf5424f322007-08-22 14:01:33 -07002650 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651}
2652
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002653static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
Fan Du283bc9f2013-11-07 17:47:50 +08002655 struct net *net = sock_net(skb->sk);
2656
2657 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002658 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002659 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660}
2661
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002662static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002663{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002664 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2665 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002666}
2667
David S. Miller214e0052011-02-24 00:02:38 -05002668static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
2670 struct xfrm_user_expire *ue;
2671 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002672 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Eric W. Biederman15e47302012-09-07 20:12:54 +00002674 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002675 if (nlh == NULL)
2676 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Thomas Graf7b67c852007-08-22 13:53:52 -07002678 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002680 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002681 /* clear the padding bytes */
2682 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
David S. Miller1d1e34d2012-06-27 21:57:03 -07002684 err = xfrm_mark_put(skb, &x->mark);
2685 if (err)
2686 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002687
Steffen Klassert7e652642018-06-12 14:07:07 +02002688 err = xfrm_if_id_put(skb, x->if_id);
2689 if (err)
2690 return err;
2691
Johannes Berg053c0952015-01-16 22:09:00 +01002692 nlmsg_end(skb, nlh);
2693 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
David S. Miller214e0052011-02-24 00:02:38 -05002696static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002698 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 struct sk_buff *skb;
2700
Thomas Graf7deb2262007-08-22 13:57:39 -07002701 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (skb == NULL)
2703 return -ENOMEM;
2704
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002705 if (build_expire(skb, x, c) < 0) {
2706 kfree_skb(skb);
2707 return -EMSGSIZE;
2708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Michal Kubecek21ee5432014-06-03 10:26:06 +02002710 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711}
2712
David S. Miller214e0052011-02-24 00:02:38 -05002713static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002714{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002715 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002716 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002717 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002718
Steffen Klassertd8647b72011-03-08 00:10:27 +00002719 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002720 if (skb == NULL)
2721 return -ENOMEM;
2722
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002723 err = build_aevent(skb, x, c);
2724 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002725
Michal Kubecek21ee5432014-06-03 10:26:06 +02002726 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002727}
2728
David S. Miller214e0052011-02-24 00:02:38 -05002729static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002730{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002731 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002732 struct xfrm_usersa_flush *p;
2733 struct nlmsghdr *nlh;
2734 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002735 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002736
Thomas Graf7deb2262007-08-22 13:57:39 -07002737 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002738 if (skb == NULL)
2739 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002740
Eric W. Biederman15e47302012-09-07 20:12:54 +00002741 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002742 if (nlh == NULL) {
2743 kfree_skb(skb);
2744 return -EMSGSIZE;
2745 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002746
Thomas Graf7b67c852007-08-22 13:53:52 -07002747 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002748 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002749
Thomas Graf98250692007-08-22 12:47:26 -07002750 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002751
Michal Kubecek21ee5432014-06-03 10:26:06 +02002752 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002753}
2754
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002755static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002757 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002758 if (x->aead)
2759 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002760 if (x->aalg) {
2761 l += nla_total_size(sizeof(struct xfrm_algo) +
2762 (x->aalg->alg_key_len + 7) / 8);
2763 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2764 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002765 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002766 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002767 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002768 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002769 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002770 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002771 if (x->tfcpad)
2772 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002773 if (x->replay_esn)
2774 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002775 else
2776 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002777 if (x->security)
2778 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2779 x->security->ctx_len);
2780 if (x->coaddr)
2781 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002782 if (x->props.extra_flags)
2783 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002784 if (x->xso.dev)
2785 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002786 if (x->props.smark.v | x->props.smark.m) {
2787 l += nla_total_size(sizeof(x->props.smark.v));
2788 l += nla_total_size(sizeof(x->props.smark.m));
2789 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002790 if (x->if_id)
2791 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002792
Herbert Xud26f3982007-11-13 21:47:08 -08002793 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002794 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002795
2796 return l;
2797}
2798
David S. Miller214e0052011-02-24 00:02:38 -05002799static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002801 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002802 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002803 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002804 struct nlmsghdr *nlh;
2805 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002806 unsigned int len = xfrm_sa_len(x);
2807 unsigned int headlen;
2808 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002809
2810 headlen = sizeof(*p);
2811 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002812 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002813 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002814 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002815 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002816 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817
Thomas Graf7deb2262007-08-22 13:57:39 -07002818 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002819 if (skb == NULL)
2820 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002821
Eric W. Biederman15e47302012-09-07 20:12:54 +00002822 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002823 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002824 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002825 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002826
Thomas Graf7b67c852007-08-22 13:53:52 -07002827 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002828 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002829 struct nlattr *attr;
2830
Thomas Graf7b67c852007-08-22 13:53:52 -07002831 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002832 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002833 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2834 id->spi = x->id.spi;
2835 id->family = x->props.family;
2836 id->proto = x->id.proto;
2837
Thomas Grafc0144be2007-08-22 13:55:43 -07002838 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002839 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002840 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002841 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002842
2843 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002844 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002845 err = copy_to_user_state_extra(x, p, skb);
2846 if (err)
2847 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848
Thomas Graf98250692007-08-22 12:47:26 -07002849 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002850
Michal Kubecek21ee5432014-06-03 10:26:06 +02002851 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002852
David S. Miller1d1e34d2012-06-27 21:57:03 -07002853out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002854 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002855 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002856}
2857
David S. Miller214e0052011-02-24 00:02:38 -05002858static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002859{
2860
2861 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002862 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002864 case XFRM_MSG_NEWAE:
2865 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002866 case XFRM_MSG_DELSA:
2867 case XFRM_MSG_UPDSA:
2868 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002869 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002870 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002871 return xfrm_notify_sa_flush(c);
2872 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002873 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2874 c->event);
2875 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002876 }
2877
2878 return 0;
2879
2880}
2881
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002882static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2883 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002884{
2885 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2886 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002887 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002888 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2889 + userpolicy_type_attrsize();
2890}
2891
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002893 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002895 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 struct xfrm_user_acquire *ua;
2897 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002898 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002900 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2901 if (nlh == NULL)
2902 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Thomas Graf7b67c852007-08-22 13:53:52 -07002904 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 memcpy(&ua->id, &x->id, sizeof(ua->id));
2906 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2907 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002908 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 ua->aalgos = xt->aalgos;
2910 ua->ealgos = xt->ealgos;
2911 ua->calgos = xt->calgos;
2912 ua->seq = x->km.seq = seq;
2913
David S. Miller1d1e34d2012-06-27 21:57:03 -07002914 err = copy_to_user_tmpl(xp, skb);
2915 if (!err)
2916 err = copy_to_user_state_sec_ctx(x, skb);
2917 if (!err)
2918 err = copy_to_user_policy_type(xp->type, skb);
2919 if (!err)
2920 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02002921 if (!err)
2922 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002923 if (err) {
2924 nlmsg_cancel(skb, nlh);
2925 return err;
2926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
Johannes Berg053c0952015-01-16 22:09:00 +01002928 nlmsg_end(skb, nlh);
2929 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930}
2931
2932static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002933 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002935 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002937 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Thomas Graf7deb2262007-08-22 13:57:39 -07002939 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 if (skb == NULL)
2941 return -ENOMEM;
2942
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002943 err = build_acquire(skb, x, xt, xp);
2944 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Michal Kubecek21ee5432014-06-03 10:26:06 +02002946 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947}
2948
2949/* User gives us xfrm_user_policy_info followed by an array of 0
2950 * or more templates.
2951 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002952static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 u8 *data, int len, int *dir)
2954{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002955 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2957 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2958 struct xfrm_policy *xp;
2959 int nr;
2960
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002961 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 case AF_INET:
2963 if (opt != IP_XFRM_POLICY) {
2964 *dir = -EOPNOTSUPP;
2965 return NULL;
2966 }
2967 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002968#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 case AF_INET6:
2970 if (opt != IPV6_XFRM_POLICY) {
2971 *dir = -EOPNOTSUPP;
2972 return NULL;
2973 }
2974 break;
2975#endif
2976 default:
2977 *dir = -EINVAL;
2978 return NULL;
2979 }
2980
2981 *dir = -EINVAL;
2982
2983 if (len < sizeof(*p) ||
2984 verify_newpolicy_info(p))
2985 return NULL;
2986
2987 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002988 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 return NULL;
2990
Herbert Xua4f1bac2005-07-26 15:43:17 -07002991 if (p->dir > XFRM_POLICY_OUT)
2992 return NULL;
2993
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002994 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 if (xp == NULL) {
2996 *dir = -ENOBUFS;
2997 return NULL;
2998 }
2999
3000 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07003001 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 copy_templates(xp, ut, nr);
3003
3004 *dir = p->dir;
3005
3006 return xp;
3007}
3008
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003009static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003010{
3011 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3012 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3013 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003014 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003015 + userpolicy_type_attrsize();
3016}
3017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003019 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
3021 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003022 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003023 struct nlmsghdr *nlh;
3024 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Eric W. Biederman15e47302012-09-07 20:12:54 +00003026 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003027 if (nlh == NULL)
3028 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Thomas Graf7b67c852007-08-22 13:53:52 -07003030 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003032 err = copy_to_user_tmpl(xp, skb);
3033 if (!err)
3034 err = copy_to_user_sec_ctx(xp, skb);
3035 if (!err)
3036 err = copy_to_user_policy_type(xp->type, skb);
3037 if (!err)
3038 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003039 if (!err)
3040 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003041 if (err) {
3042 nlmsg_cancel(skb, nlh);
3043 return err;
3044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 upe->hard = !!hard;
3046
Johannes Berg053c0952015-01-16 22:09:00 +01003047 nlmsg_end(skb, nlh);
3048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
3050
David S. Miller214e0052011-02-24 00:02:38 -05003051static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003053 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003055 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Thomas Graf7deb2262007-08-22 13:57:39 -07003057 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 if (skb == NULL)
3059 return -ENOMEM;
3060
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003061 err = build_polexpire(skb, xp, dir, c);
3062 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Michal Kubecek21ee5432014-06-03 10:26:06 +02003064 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
David S. Miller214e0052011-02-24 00:02:38 -05003067static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003068{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003069 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003070 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003071 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003072 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003073 struct nlmsghdr *nlh;
3074 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003075 unsigned int headlen;
3076 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003077
3078 headlen = sizeof(*p);
3079 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003080 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003081 headlen = sizeof(*id);
3082 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003083 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003084 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003085 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003086
Thomas Graf7deb2262007-08-22 13:57:39 -07003087 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003088 if (skb == NULL)
3089 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003090
Eric W. Biederman15e47302012-09-07 20:12:54 +00003091 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003092 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003093 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003094 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003095
Thomas Graf7b67c852007-08-22 13:53:52 -07003096 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003097 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003098 struct nlattr *attr;
3099
Thomas Graf7b67c852007-08-22 13:53:52 -07003100 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003101 memset(id, 0, sizeof(*id));
3102 id->dir = dir;
3103 if (c->data.byid)
3104 id->index = xp->index;
3105 else
3106 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3107
Thomas Grafc0144be2007-08-22 13:55:43 -07003108 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003109 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003110 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003111 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003112
3113 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003114 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003115
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003116 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003117 err = copy_to_user_tmpl(xp, skb);
3118 if (!err)
3119 err = copy_to_user_policy_type(xp->type, skb);
3120 if (!err)
3121 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003122 if (!err)
3123 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003124 if (err)
3125 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003126
Thomas Graf98250692007-08-22 12:47:26 -07003127 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003128
Michal Kubecek21ee5432014-06-03 10:26:06 +02003129 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003130
David S. Miller1d1e34d2012-06-27 21:57:03 -07003131out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003132 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003133 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003134}
3135
David S. Miller214e0052011-02-24 00:02:38 -05003136static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003137{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003138 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003139 struct nlmsghdr *nlh;
3140 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003141 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003142
Thomas Graf7deb2262007-08-22 13:57:39 -07003143 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003144 if (skb == NULL)
3145 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003146
Eric W. Biederman15e47302012-09-07 20:12:54 +00003147 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003148 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003149 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003150 goto out_free_skb;
3151 err = copy_to_user_policy_type(c->data.type, skb);
3152 if (err)
3153 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003154
Thomas Graf98250692007-08-22 12:47:26 -07003155 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003156
Michal Kubecek21ee5432014-06-03 10:26:06 +02003157 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003158
David S. Miller1d1e34d2012-06-27 21:57:03 -07003159out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003160 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003161 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003162}
3163
David S. Miller214e0052011-02-24 00:02:38 -05003164static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003165{
3166
3167 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003168 case XFRM_MSG_NEWPOLICY:
3169 case XFRM_MSG_UPDPOLICY:
3170 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003171 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003172 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003173 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003174 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003175 return xfrm_exp_policy_notify(xp, dir, c);
3176 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003177 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3178 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003179 }
3180
3181 return 0;
3182
3183}
3184
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003185static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003186{
3187 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3188}
3189
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003190static int build_report(struct sk_buff *skb, u8 proto,
3191 struct xfrm_selector *sel, xfrm_address_t *addr)
3192{
3193 struct xfrm_user_report *ur;
3194 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003195
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003196 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3197 if (nlh == NULL)
3198 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003199
Thomas Graf7b67c852007-08-22 13:53:52 -07003200 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003201 ur->proto = proto;
3202 memcpy(&ur->sel, sel, sizeof(ur->sel));
3203
David S. Miller1d1e34d2012-06-27 21:57:03 -07003204 if (addr) {
3205 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3206 if (err) {
3207 nlmsg_cancel(skb, nlh);
3208 return err;
3209 }
3210 }
Johannes Berg053c0952015-01-16 22:09:00 +01003211 nlmsg_end(skb, nlh);
3212 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003213}
3214
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003215static int xfrm_send_report(struct net *net, u8 proto,
3216 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003217{
3218 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003219 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003220
Thomas Graf7deb2262007-08-22 13:57:39 -07003221 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003222 if (skb == NULL)
3223 return -ENOMEM;
3224
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003225 err = build_report(skb, proto, sel, addr);
3226 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003227
Michal Kubecek21ee5432014-06-03 10:26:06 +02003228 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003229}
3230
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003231static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003232{
3233 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3234}
3235
3236static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3237 xfrm_address_t *new_saddr, __be16 new_sport)
3238{
3239 struct xfrm_user_mapping *um;
3240 struct nlmsghdr *nlh;
3241
3242 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3243 if (nlh == NULL)
3244 return -EMSGSIZE;
3245
3246 um = nlmsg_data(nlh);
3247
3248 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3249 um->id.spi = x->id.spi;
3250 um->id.family = x->props.family;
3251 um->id.proto = x->id.proto;
3252 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3253 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3254 um->new_sport = new_sport;
3255 um->old_sport = x->encap->encap_sport;
3256 um->reqid = x->props.reqid;
3257
Johannes Berg053c0952015-01-16 22:09:00 +01003258 nlmsg_end(skb, nlh);
3259 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003260}
3261
3262static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3263 __be16 sport)
3264{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003265 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003266 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003267 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003268
3269 if (x->id.proto != IPPROTO_ESP)
3270 return -EINVAL;
3271
3272 if (!x->encap)
3273 return -EINVAL;
3274
3275 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3276 if (skb == NULL)
3277 return -ENOMEM;
3278
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003279 err = build_mapping(skb, x, ipaddr, sport);
3280 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003281
Michal Kubecek21ee5432014-06-03 10:26:06 +02003282 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003283}
3284
Horia Geanta0f245582014-02-12 16:20:06 +02003285static bool xfrm_is_alive(const struct km_event *c)
3286{
3287 return (bool)xfrm_acquire_is_on(c->net);
3288}
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 .notify = xfrm_send_state_notify,
3292 .acquire = xfrm_send_acquire,
3293 .compile_policy = xfrm_compile_policy,
3294 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003295 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003296 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003297 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003298 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299};
3300
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003301static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302{
Patrick McHardybe336902006-03-20 22:40:54 -08003303 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003304 struct netlink_kernel_cfg cfg = {
3305 .groups = XFRMNLGRP_MAX,
3306 .input = xfrm_netlink_rcv,
3307 };
Patrick McHardybe336902006-03-20 22:40:54 -08003308
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003309 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003310 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003312 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003313 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 return 0;
3315}
3316
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003317static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003318{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003319 struct net *net;
3320 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003321 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003322 synchronize_net();
3323 list_for_each_entry(net, net_exit_list, exit_list)
3324 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003325}
3326
3327static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003328 .init = xfrm_user_net_init,
3329 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003330};
3331
3332static int __init xfrm_user_init(void)
3333{
3334 int rv;
3335
3336 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3337
3338 rv = register_pernet_subsys(&xfrm_user_net_ops);
3339 if (rv < 0)
3340 return rv;
3341 rv = xfrm_register_km(&netlink_mgr);
3342 if (rv < 0)
3343 unregister_pernet_subsys(&xfrm_user_net_ops);
3344 return rv;
3345}
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347static void __exit xfrm_user_exit(void)
3348{
3349 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003350 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351}
3352
3353module_init(xfrm_user_init);
3354module_exit(xfrm_user_exit);
3355MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003356MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);