blob: 5151b3ebf0688bc4195f61c3b6bbda4bbbcded6a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/socket.h>
19#include <linux/string.h>
20#include <linux/net.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pfkeyv2.h>
23#include <linux/ipsec.h>
24#include <linux/init.h>
25#include <linux/security.h>
26#include <net/sock.h>
27#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Thomas Graf5424f322007-08-22 14:01:33 -070036static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Thomas Graf5424f322007-08-22 14:01:33 -070038 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct xfrm_algo *algp;
40
41 if (!rt)
42 return 0;
43
Thomas Graf5424f322007-08-22 14:01:33 -070044 algp = nla_data(rt);
Alexey Dobriyan06cd22f2017-09-21 23:46:30 +030045 if (nla_len(rt) < (int)xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070046 return -EINVAL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (type) {
49 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53
54 default:
55 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Herbert Xu633439f2017-04-06 16:16:10 +080058 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 0;
60}
61
Martin Willi4447bb32009-11-25 00:29:52 +000062static int verify_auth_trunc(struct nlattr **attrs)
63{
64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65 struct xfrm_algo_auth *algp;
66
67 if (!rt)
68 return 0;
69
70 algp = nla_data(rt);
Alexey Dobriyan1bd963a2017-09-21 23:47:09 +030071 if (nla_len(rt) < (int)xfrm_alg_auth_len(algp))
Martin Willi4447bb32009-11-25 00:29:52 +000072 return -EINVAL;
73
Herbert Xu633439f2017-04-06 16:16:10 +080074 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Martin Willi4447bb32009-11-25 00:29:52 +000075 return 0;
76}
77
Herbert Xu1a6509d2008-01-28 19:37:29 -080078static int verify_aead(struct nlattr **attrs)
79{
80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81 struct xfrm_algo_aead *algp;
82
83 if (!rt)
84 return 0;
85
86 algp = nla_data(rt);
Alexey Dobriyan373b8ee2017-09-21 23:45:43 +030087 if (nla_len(rt) < (int)aead_len(algp))
Herbert Xu1a6509d2008-01-28 19:37:29 -080088 return -EINVAL;
89
Herbert Xu633439f2017-04-06 16:16:10 +080090 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Herbert Xu1a6509d2008-01-28 19:37:29 -080091 return 0;
92}
93
Thomas Graf5424f322007-08-22 14:01:33 -070094static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070095 xfrm_address_t **addrp)
96{
Thomas Graf5424f322007-08-22 14:01:33 -070097 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070098
Thomas Grafcf5cb792007-08-22 13:59:04 -070099 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700100 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700101}
Trent Jaegerdf718372005-12-13 23:12:27 -0800102
Thomas Graf5424f322007-08-22 14:01:33 -0700103static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800104{
Thomas Graf5424f322007-08-22 14:01:33 -0700105 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800106 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800107
108 if (!rt)
109 return 0;
110
Thomas Graf5424f322007-08-22 14:01:33 -0700111 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700112 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800113 return -EINVAL;
114
115 return 0;
116}
117
Steffen Klassertd8647b72011-03-08 00:10:27 +0000118static inline int verify_replay(struct xfrm_usersa_info *p,
119 struct nlattr **attrs)
120{
121 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000122 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000123
124 if (!rt)
Florian Westphald97ca5d2018-02-12 14:42:01 +0100125 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000135
Fan Du01714102014-01-18 09:54:28 +0800136 /* As only ESP and AH support ESN feature. */
137 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000138 return -EINVAL;
139
Steffen Klassertd8647b72011-03-08 00:10:27 +0000140 if (p->replay_window != 0)
141 return -EINVAL;
142
143 return 0;
144}
Trent Jaegerdf718372005-12-13 23:12:27 -0800145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700147 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int err;
150
151 err = -EINVAL;
152 switch (p->family) {
153 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +0200154 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
155 goto out;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 break;
158
159 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000160#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +0200161 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
162 goto out;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
165#else
166 err = -EAFNOSUPPORT;
167 goto out;
168#endif
169
170 default:
171 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 err = -EINVAL;
175 switch (p->id.proto) {
176 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000177 if ((!attrs[XFRMA_ALG_AUTH] &&
178 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800179 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700180 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000181 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200182 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 goto out;
184 break;
185
186 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800187 if (attrs[XFRMA_ALG_COMP])
188 goto out;
189 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000190 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800191 !attrs[XFRMA_ALG_CRYPT] &&
192 !attrs[XFRMA_ALG_AEAD])
193 goto out;
194 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000195 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800196 attrs[XFRMA_ALG_CRYPT]) &&
197 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000199 if (attrs[XFRMA_TFCPAD] &&
200 p->mode != XFRM_MODE_TUNNEL)
201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203
204 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700205 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800206 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000208 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000209 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200210 attrs[XFRMA_TFCPAD] ||
211 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto out;
213 break;
214
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000215#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700216 case IPPROTO_DSTOPTS:
217 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700218 if (attrs[XFRMA_ALG_COMP] ||
219 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000220 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800221 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700222 attrs[XFRMA_ALG_CRYPT] ||
223 attrs[XFRMA_ENCAP] ||
224 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000225 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700226 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700227 goto out;
228 break;
229#endif
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 default:
232 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Herbert Xu1a6509d2008-01-28 19:37:29 -0800235 if ((err = verify_aead(attrs)))
236 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000237 if ((err = verify_auth_trunc(attrs)))
238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700241 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700243 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700245 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800246 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000247 if ((err = verify_replay(p, attrs)))
248 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 err = -EINVAL;
251 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700252 case XFRM_MODE_TRANSPORT:
253 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700254 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700255 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257
258 default:
259 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 err = 0;
263
264out:
265 return err;
266}
267
268static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800269 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700270 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct xfrm_algo *p, *ualg;
273 struct xfrm_algo_desc *algo;
274
275 if (!rta)
276 return 0;
277
Thomas Graf5424f322007-08-22 14:01:33 -0700278 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 algo = get_byname(ualg->alg_name, 1);
281 if (!algo)
282 return -ENOSYS;
283 *props = algo->desc.sadb_alg_id;
284
Eric Dumazet0f99be02008-01-08 23:39:06 -0800285 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!p)
287 return -ENOMEM;
288
Herbert Xu04ff1262006-08-13 08:50:00 +1000289 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 *algpp = p;
291 return 0;
292}
293
Herbert Xu69b01372015-05-27 16:03:45 +0800294static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
295{
296 struct xfrm_algo *p, *ualg;
297 struct xfrm_algo_desc *algo;
298
299 if (!rta)
300 return 0;
301
302 ualg = nla_data(rta);
303
304 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
305 if (!algo)
306 return -ENOSYS;
307 x->props.ealgo = algo->desc.sadb_alg_id;
308
309 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
310 if (!p)
311 return -ENOMEM;
312
313 strcpy(p->alg_name, algo->name);
314 x->ealg = p;
315 x->geniv = algo->uinfo.encr.geniv;
316 return 0;
317}
318
Martin Willi4447bb32009-11-25 00:29:52 +0000319static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
320 struct nlattr *rta)
321{
322 struct xfrm_algo *ualg;
323 struct xfrm_algo_auth *p;
324 struct xfrm_algo_desc *algo;
325
326 if (!rta)
327 return 0;
328
329 ualg = nla_data(rta);
330
331 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
332 if (!algo)
333 return -ENOSYS;
334 *props = algo->desc.sadb_alg_id;
335
336 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
337 if (!p)
338 return -ENOMEM;
339
340 strcpy(p->alg_name, algo->name);
341 p->alg_key_len = ualg->alg_key_len;
342 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
343 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
344
345 *algpp = p;
346 return 0;
347}
348
349static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
350 struct nlattr *rta)
351{
352 struct xfrm_algo_auth *p, *ualg;
353 struct xfrm_algo_desc *algo;
354
355 if (!rta)
356 return 0;
357
358 ualg = nla_data(rta);
359
360 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
361 if (!algo)
362 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800363 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000364 return -EINVAL;
365 *props = algo->desc.sadb_alg_id;
366
367 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
368 if (!p)
369 return -ENOMEM;
370
371 strcpy(p->alg_name, algo->name);
372 if (!p->alg_trunc_len)
373 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
374
375 *algpp = p;
376 return 0;
377}
378
Herbert Xu69b01372015-05-27 16:03:45 +0800379static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800380{
381 struct xfrm_algo_aead *p, *ualg;
382 struct xfrm_algo_desc *algo;
383
384 if (!rta)
385 return 0;
386
387 ualg = nla_data(rta);
388
389 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
390 if (!algo)
391 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800392 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800393
394 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
395 if (!p)
396 return -ENOMEM;
397
398 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800399 x->aead = p;
400 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800401 return 0;
402}
403
Steffen Klasserte2b19122011-03-28 19:47:30 +0000404static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
405 struct nlattr *rp)
406{
407 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300408 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000409
410 if (!replay_esn || !rp)
411 return 0;
412
413 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000414 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000416 /* Check the overall length and the internal bitmap length to avoid
417 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300418 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000419 xfrm_replay_state_esn_len(replay_esn) != ulen ||
420 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000421 return -EINVAL;
422
Andy Whitcroft677e8062017-03-22 07:29:31 +0000423 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
424 return -EINVAL;
425
Steffen Klasserte2b19122011-03-28 19:47:30 +0000426 return 0;
427}
428
Steffen Klassertd8647b72011-03-08 00:10:27 +0000429static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
430 struct xfrm_replay_state_esn **preplay_esn,
431 struct nlattr *rta)
432{
433 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300434 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000435
436 if (!rta)
437 return 0;
438
439 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000440 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300441 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000442
Mathias Krauseecd79182012-09-20 10:01:49 +0000443 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000444 if (!p)
445 return -ENOMEM;
446
Mathias Krauseecd79182012-09-20 10:01:49 +0000447 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448 if (!pp) {
449 kfree(p);
450 return -ENOMEM;
451 }
452
Mathias Krauseecd79182012-09-20 10:01:49 +0000453 memcpy(p, up, ulen);
454 memcpy(pp, up, ulen);
455
Steffen Klassertd8647b72011-03-08 00:10:27 +0000456 *replay_esn = p;
457 *preplay_esn = pp;
458
459 return 0;
460}
461
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300462static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800463{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300464 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800465
466 if (xfrm_ctx) {
467 len += sizeof(struct xfrm_user_sec_ctx);
468 len += xfrm_ctx->ctx_len;
469 }
470 return len;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
474{
475 memcpy(&x->id, &p->id, sizeof(x->id));
476 memcpy(&x->sel, &p->sel, sizeof(x->sel));
477 memcpy(&x->lft, &p->lft, sizeof(x->lft));
478 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800479 x->props.replay_window = min_t(unsigned int, p->replay_window,
480 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 x->props.reqid = p->reqid;
482 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700483 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700485
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700486 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700487 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800490/*
491 * someday when pfkey also has support, we could have the code
492 * somehow made shareable and move it to xfrm_state.c - JHS
493 *
494*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000495static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
496 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497{
Thomas Graf5424f322007-08-22 14:01:33 -0700498 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000499 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700500 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
501 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
502 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800503
Steffen Klassertd8647b72011-03-08 00:10:27 +0000504 if (re) {
505 struct xfrm_replay_state_esn *replay_esn;
506 replay_esn = nla_data(re);
507 memcpy(x->replay_esn, replay_esn,
508 xfrm_replay_state_esn_len(replay_esn));
509 memcpy(x->preplay_esn, replay_esn,
510 xfrm_replay_state_esn_len(replay_esn));
511 }
512
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800513 if (rp) {
514 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700515 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800516 memcpy(&x->replay, replay, sizeof(*replay));
517 memcpy(&x->preplay, replay, sizeof(*replay));
518 }
519
520 if (lt) {
521 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700522 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800523 x->curlft.bytes = ltime->bytes;
524 x->curlft.packets = ltime->packets;
525 x->curlft.add_time = ltime->add_time;
526 x->curlft.use_time = ltime->use_time;
527 }
528
Thomas Grafcf5cb792007-08-22 13:59:04 -0700529 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700530 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800531
Thomas Grafcf5cb792007-08-22 13:59:04 -0700532 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700533 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800534}
535
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800536static struct xfrm_state *xfrm_state_construct(struct net *net,
537 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700538 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int *errp)
540{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800541 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 int err = -ENOMEM;
543
544 if (!x)
545 goto error_no_put;
546
547 copy_from_user_state(x, p);
548
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100549 if (attrs[XFRMA_SA_EXTRA_FLAGS])
550 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
551
Herbert Xu69b01372015-05-27 16:03:45 +0800552 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800553 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000554 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
555 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000557 if (!x->props.aalgo) {
558 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
559 attrs[XFRMA_ALG_AUTH])))
560 goto error;
561 }
Herbert Xu69b01372015-05-27 16:03:45 +0800562 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 goto error;
564 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
565 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700566 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700568
569 if (attrs[XFRMA_ENCAP]) {
570 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
571 sizeof(*x->encap), GFP_KERNEL);
572 if (x->encap == NULL)
573 goto error;
574 }
575
Martin Willi35d28562010-12-08 04:37:49 +0000576 if (attrs[XFRMA_TFCPAD])
577 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
578
Thomas Graffd211502007-09-06 03:28:08 -0700579 if (attrs[XFRMA_COADDR]) {
580 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
581 sizeof(*x->coaddr), GFP_KERNEL);
582 if (x->coaddr == NULL)
583 goto error;
584 }
585
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000586 xfrm_mark_get(attrs, &x->mark);
587
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900588 if (attrs[XFRMA_OUTPUT_MARK])
589 x->props.output_mark = nla_get_u32(attrs[XFRMA_OUTPUT_MARK]);
590
Ilan Tayariffdb5212017-08-01 12:49:08 +0300591 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (err)
593 goto error;
594
Mathias Krause2f30ea52016-09-08 18:09:57 +0200595 if (attrs[XFRMA_SEC_CTX]) {
596 err = security_xfrm_state_alloc(x,
597 nla_data(attrs[XFRMA_SEC_CTX]));
598 if (err)
599 goto error;
600 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800601
Steffen Klassertd8647b72011-03-08 00:10:27 +0000602 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
603 attrs[XFRMA_REPLAY_ESN_VAL])))
604 goto error;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800607 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800608 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800609 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800610
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000611 if ((err = xfrm_init_replay(x)))
612 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800613
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000614 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000615 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Yossi Kupermancc015722018-01-17 15:52:41 +0200617 /* configure the hardware if offload is requested */
618 if (attrs[XFRMA_OFFLOAD_DEV]) {
619 err = xfrm_dev_state_add(net, x,
620 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
621 if (err)
622 goto error;
623 }
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return x;
626
627error:
628 x->km.state = XFRM_STATE_DEAD;
629 xfrm_state_put(x);
630error_no_put:
631 *errp = err;
632 return NULL;
633}
634
Christoph Hellwig22e70052007-01-02 15:22:30 -0800635static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700636 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800638 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700639 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct xfrm_state *x;
641 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700642 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Thomas Graf35a7aa02007-08-22 14:00:40 -0700644 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (err)
646 return err;
647
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800648 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (!x)
650 return err;
651
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700652 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
654 err = xfrm_state_add(x);
655 else
656 err = xfrm_state_update(x);
657
Tetsuo Handa2e710292014-04-22 21:48:30 +0900658 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (err < 0) {
661 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200662 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800663 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700664 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
Yossi Kupermancc015722018-01-17 15:52:41 +0200667 if (x->km.state == XFRM_STATE_VOID)
668 x->km.state = XFRM_STATE_VALID;
669
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700670 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000671 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700672 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700673
674 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700675out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700676 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return err;
678}
679
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800680static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
681 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700682 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700683 int *errp)
684{
685 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000686 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700687 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000688 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700689
690 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
691 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000692 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700693 } else {
694 xfrm_address_t *saddr = NULL;
695
Thomas Graf35a7aa02007-08-22 14:00:40 -0700696 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700697 if (!saddr) {
698 err = -EINVAL;
699 goto out;
700 }
701
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800702 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000703 x = xfrm_state_lookup_byaddr(net, mark,
704 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800705 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700706 }
707
708 out:
709 if (!x && errp)
710 *errp = err;
711 return x;
712}
713
Christoph Hellwig22e70052007-01-02 15:22:30 -0800714static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700715 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800717 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700719 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700720 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700721 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800723 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700725 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
David S. Miller6f68dc32006-06-08 23:58:52 -0700727 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700728 goto out;
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700731 err = -EPERM;
732 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700735 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600736
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700737 if (err < 0)
738 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700739
740 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000741 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700742 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700743 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700745out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900746 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700747 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700748 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
751static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
752{
Mathias Krausef778a632012-09-19 11:33:39 +0000753 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 memcpy(&p->id, &x->id, sizeof(p->id));
755 memcpy(&p->sel, &x->sel, sizeof(p->sel));
756 memcpy(&p->lft, &x->lft, sizeof(p->lft));
757 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400758 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
759 put_unaligned(x->stats.replay, &p->stats.replay);
760 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700761 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 p->mode = x->props.mode;
763 p->replay_window = x->props.replay_window;
764 p->reqid = x->props.reqid;
765 p->family = x->props.family;
766 p->flags = x->props.flags;
767 p->seq = x->km.seq;
768}
769
770struct xfrm_dump_info {
771 struct sk_buff *in_skb;
772 struct sk_buff *out_skb;
773 u32 nlmsg_seq;
774 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775};
776
Thomas Grafc0144be2007-08-22 13:55:43 -0700777static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
778{
Thomas Grafc0144be2007-08-22 13:55:43 -0700779 struct xfrm_user_sec_ctx *uctx;
780 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700781 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700782
783 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
784 if (attr == NULL)
785 return -EMSGSIZE;
786
787 uctx = nla_data(attr);
788 uctx->exttype = XFRMA_SEC_CTX;
789 uctx->len = ctx_size;
790 uctx->ctx_doi = s->ctx_doi;
791 uctx->ctx_alg = s->ctx_alg;
792 uctx->ctx_len = s->ctx_len;
793 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
794
795 return 0;
796}
797
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200798static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
799{
800 struct xfrm_user_offload *xuo;
801 struct nlattr *attr;
802
803 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
804 if (attr == NULL)
805 return -EMSGSIZE;
806
807 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200808 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200809 xuo->ifindex = xso->dev->ifindex;
810 xuo->flags = xso->flags;
811
812 return 0;
813}
814
Martin Willi4447bb32009-11-25 00:29:52 +0000815static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
816{
817 struct xfrm_algo *algo;
818 struct nlattr *nla;
819
820 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
821 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
822 if (!nla)
823 return -EMSGSIZE;
824
825 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000826 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000827 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
828 algo->alg_key_len = auth->alg_key_len;
829
830 return 0;
831}
832
Herbert Xu68325d32007-10-09 13:30:57 -0700833/* Don't change this without updating xfrm_sa_len! */
834static int copy_to_user_state_extra(struct xfrm_state *x,
835 struct xfrm_usersa_info *p,
836 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700838 int ret = 0;
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 copy_to_user_state(x, p);
841
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100842 if (x->props.extra_flags) {
843 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
844 x->props.extra_flags);
845 if (ret)
846 goto out;
847 }
848
David S. Miller1d1e34d2012-06-27 21:57:03 -0700849 if (x->coaddr) {
850 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
851 if (ret)
852 goto out;
853 }
854 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200855 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
856 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700857 if (ret)
858 goto out;
859 }
860 if (x->aead) {
861 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
862 if (ret)
863 goto out;
864 }
865 if (x->aalg) {
866 ret = copy_to_user_auth(x->aalg, skb);
867 if (!ret)
868 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
869 xfrm_alg_auth_len(x->aalg), x->aalg);
870 if (ret)
871 goto out;
872 }
873 if (x->ealg) {
874 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
875 if (ret)
876 goto out;
877 }
878 if (x->calg) {
879 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
880 if (ret)
881 goto out;
882 }
883 if (x->encap) {
884 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
885 if (ret)
886 goto out;
887 }
888 if (x->tfcpad) {
889 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
890 if (ret)
891 goto out;
892 }
893 ret = xfrm_mark_put(skb, &x->mark);
894 if (ret)
895 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100896 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700897 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
898 xfrm_replay_state_esn_len(x->replay_esn),
899 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100900 else
901 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
902 &x->replay);
903 if (ret)
904 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200905 if(x->xso.dev)
906 ret = copy_user_offload(&x->xso, skb);
907 if (ret)
908 goto out;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900909 if (x->props.output_mark) {
910 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
911 if (ret)
912 goto out;
913 }
Steffen Klassert85981122017-08-31 10:37:00 +0200914 if (x->security)
915 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700916out:
917 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700918}
919
920static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
921{
922 struct xfrm_dump_info *sp = ptr;
923 struct sk_buff *in_skb = sp->in_skb;
924 struct sk_buff *skb = sp->out_skb;
925 struct xfrm_usersa_info *p;
926 struct nlmsghdr *nlh;
927 int err;
928
Eric W. Biederman15e47302012-09-07 20:12:54 +0000929 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700930 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
931 if (nlh == NULL)
932 return -EMSGSIZE;
933
934 p = nlmsg_data(nlh);
935
936 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700937 if (err) {
938 nlmsg_cancel(skb, nlh);
939 return err;
940 }
Thomas Graf98250692007-08-22 12:47:26 -0700941 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Timo Teras4c563f72008-02-28 21:31:08 -0800945static int xfrm_dump_sa_done(struct netlink_callback *cb)
946{
947 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800948 struct sock *sk = cb->skb->sk;
949 struct net *net = sock_net(sk);
950
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200951 if (cb->args[0])
952 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800953 return 0;
954}
955
Nicolas Dichteld3623092014-02-14 15:30:36 +0100956static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
958{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800959 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800960 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 struct xfrm_dump_info info;
962
Timo Teras4c563f72008-02-28 21:31:08 -0800963 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
964 sizeof(cb->args) - sizeof(cb->args[0]));
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 info.in_skb = cb->skb;
967 info.out_skb = skb;
968 info.nlmsg_seq = cb->nlh->nlmsg_seq;
969 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800970
971 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100972 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100973 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100974 u8 proto = 0;
975 int err;
976
Johannes Bergfceb6432017-04-12 14:34:07 +0200977 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
978 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100979 if (err < 0)
980 return err;
981
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100982 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200983 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
984 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100985 if (filter == NULL)
986 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100987 }
988
989 if (attrs[XFRMA_PROTO])
990 proto = nla_get_u8(attrs[XFRMA_PROTO]);
991
992 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200993 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800994 }
995
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800996 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 return skb->len;
999}
1000
1001static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1002 struct xfrm_state *x, u32 seq)
1003{
1004 struct xfrm_dump_info info;
1005 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001006 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Thomas Graf7deb2262007-08-22 13:57:39 -07001008 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (!skb)
1010 return ERR_PTR(-ENOMEM);
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 info.in_skb = in_skb;
1013 info.out_skb = skb;
1014 info.nlmsg_seq = seq;
1015 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Mathias Krause864745d2012-09-13 11:41:26 +00001017 err = dump_one_state(x, 0, &info);
1018 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001020 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
1023 return skb;
1024}
1025
Michal Kubecek21ee5432014-06-03 10:26:06 +02001026/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1027 * Must be called with RCU read lock.
1028 */
1029static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1030 u32 pid, unsigned int group)
1031{
1032 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1033
Florian Westphal86126b72018-06-25 14:00:07 +02001034 if (!nlsk) {
1035 kfree_skb(skb);
1036 return -EPIPE;
1037 }
1038
1039 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001040}
1041
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001042static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001043{
1044 return NLMSG_ALIGN(4)
1045 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001046 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1047 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1048 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001049}
1050
Alexey Dobriyane0710412010-01-23 13:37:10 +00001051static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001052 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001053{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001054 struct xfrmk_spdinfo si;
1055 struct xfrmu_spdinfo spc;
1056 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001057 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001058 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001059 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001060 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001061 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001062
Eric W. Biederman15e47302012-09-07 20:12:54 +00001063 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001064 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001065 return -EMSGSIZE;
1066
1067 f = nlmsg_data(nlh);
1068 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001069 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001070 spc.incnt = si.incnt;
1071 spc.outcnt = si.outcnt;
1072 spc.fwdcnt = si.fwdcnt;
1073 spc.inscnt = si.inscnt;
1074 spc.outscnt = si.outscnt;
1075 spc.fwdscnt = si.fwdscnt;
1076 sph.spdhcnt = si.spdhcnt;
1077 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001078
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001079 do {
1080 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1081
1082 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1083 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1084 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1085 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1086 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1087
David S. Miller1d1e34d2012-06-27 21:57:03 -07001088 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1089 if (!err)
1090 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001091 if (!err)
1092 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1093 if (!err)
1094 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001095 if (err) {
1096 nlmsg_cancel(skb, nlh);
1097 return err;
1098 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001099
Johannes Berg053c0952015-01-16 22:09:00 +01001100 nlmsg_end(skb, nlh);
1101 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001102}
1103
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001104static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1105 struct nlattr **attrs)
1106{
1107 struct net *net = sock_net(skb->sk);
1108 struct xfrmu_spdhthresh *thresh4 = NULL;
1109 struct xfrmu_spdhthresh *thresh6 = NULL;
1110
1111 /* selector prefixlen thresholds to hash policies */
1112 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1113 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1114
1115 if (nla_len(rta) < sizeof(*thresh4))
1116 return -EINVAL;
1117 thresh4 = nla_data(rta);
1118 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1119 return -EINVAL;
1120 }
1121 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1122 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1123
1124 if (nla_len(rta) < sizeof(*thresh6))
1125 return -EINVAL;
1126 thresh6 = nla_data(rta);
1127 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1128 return -EINVAL;
1129 }
1130
1131 if (thresh4 || thresh6) {
1132 write_seqlock(&net->xfrm.policy_hthresh.lock);
1133 if (thresh4) {
1134 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1135 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1136 }
1137 if (thresh6) {
1138 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1139 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1140 }
1141 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1142
1143 xfrm_policy_hash_rebuild(net);
1144 }
1145
1146 return 0;
1147}
1148
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001149static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001150 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001151{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001152 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001153 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001154 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001155 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001156 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001157 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001158
Thomas Graf7deb2262007-08-22 13:57:39 -07001159 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001160 if (r_skb == NULL)
1161 return -ENOMEM;
1162
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001163 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1164 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001165
Eric W. Biederman15e47302012-09-07 20:12:54 +00001166 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001167}
1168
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001169static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001170{
1171 return NLMSG_ALIGN(4)
1172 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1173 + nla_total_size(4); /* XFRMA_SAD_CNT */
1174}
1175
Alexey Dobriyane0710412010-01-23 13:37:10 +00001176static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001177 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001178{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001179 struct xfrmk_sadinfo si;
1180 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001181 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001182 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001183 u32 *f;
1184
Eric W. Biederman15e47302012-09-07 20:12:54 +00001185 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001186 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001187 return -EMSGSIZE;
1188
1189 f = nlmsg_data(nlh);
1190 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001191 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001192
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001193 sh.sadhmcnt = si.sadhmcnt;
1194 sh.sadhcnt = si.sadhcnt;
1195
David S. Miller1d1e34d2012-06-27 21:57:03 -07001196 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1197 if (!err)
1198 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1199 if (err) {
1200 nlmsg_cancel(skb, nlh);
1201 return err;
1202 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001203
Johannes Berg053c0952015-01-16 22:09:00 +01001204 nlmsg_end(skb, nlh);
1205 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001206}
1207
1208static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001209 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001210{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001211 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001212 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001213 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001214 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001215 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001216 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001217
Thomas Graf7deb2262007-08-22 13:57:39 -07001218 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001219 if (r_skb == NULL)
1220 return -ENOMEM;
1221
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001222 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1223 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001224
Eric W. Biederman15e47302012-09-07 20:12:54 +00001225 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001226}
1227
Christoph Hellwig22e70052007-01-02 15:22:30 -08001228static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001229 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001231 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001232 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 struct xfrm_state *x;
1234 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001235 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001237 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (x == NULL)
1239 goto out_noput;
1240
1241 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1242 if (IS_ERR(resp_skb)) {
1243 err = PTR_ERR(resp_skb);
1244 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001245 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247 xfrm_state_put(x);
1248out_noput:
1249 return err;
1250}
1251
Christoph Hellwig22e70052007-01-02 15:22:30 -08001252static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001253 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001255 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 struct xfrm_state *x;
1257 struct xfrm_userspi_info *p;
1258 struct sk_buff *resp_skb;
1259 xfrm_address_t *daddr;
1260 int family;
1261 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001262 u32 mark;
1263 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Thomas Graf7b67c852007-08-22 13:53:52 -07001265 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001266 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (err)
1268 goto out_noput;
1269
1270 family = p->info.family;
1271 daddr = &p->info.id.daddr;
1272
1273 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001274
1275 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001277 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001278 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 xfrm_state_put(x);
1280 x = NULL;
1281 }
1282 }
1283
1284 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001285 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 p->info.id.proto, daddr,
1287 &p->info.saddr, 1,
1288 family);
1289 err = -ENOENT;
1290 if (x == NULL)
1291 goto out_noput;
1292
Herbert Xu658b2192007-10-09 13:29:52 -07001293 err = xfrm_alloc_spi(x, p->min, p->max);
1294 if (err)
1295 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Herbert Xu658b2192007-10-09 13:29:52 -07001297 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (IS_ERR(resp_skb)) {
1299 err = PTR_ERR(resp_skb);
1300 goto out;
1301 }
1302
Eric W. Biederman15e47302012-09-07 20:12:54 +00001303 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305out:
1306 xfrm_state_put(x);
1307out_noput:
1308 return err;
1309}
1310
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001311static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 switch (dir) {
1314 case XFRM_POLICY_IN:
1315 case XFRM_POLICY_OUT:
1316 case XFRM_POLICY_FWD:
1317 break;
1318
1319 default:
1320 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 return 0;
1324}
1325
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001326static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001327{
1328 switch (type) {
1329 case XFRM_POLICY_TYPE_MAIN:
1330#ifdef CONFIG_XFRM_SUB_POLICY
1331 case XFRM_POLICY_TYPE_SUB:
1332#endif
1333 break;
1334
1335 default:
1336 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001337 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001338
1339 return 0;
1340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1343{
Fan Due682adf2013-11-07 17:47:48 +08001344 int ret;
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 switch (p->share) {
1347 case XFRM_SHARE_ANY:
1348 case XFRM_SHARE_SESSION:
1349 case XFRM_SHARE_USER:
1350 case XFRM_SHARE_UNIQUE:
1351 break;
1352
1353 default:
1354 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 switch (p->action) {
1358 case XFRM_POLICY_ALLOW:
1359 case XFRM_POLICY_BLOCK:
1360 break;
1361
1362 default:
1363 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 switch (p->sel.family) {
1367 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +02001368 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1369 return -EINVAL;
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 break;
1372
1373 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001374#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +02001375 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1376 return -EINVAL;
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 break;
1379#else
1380 return -EAFNOSUPPORT;
1381#endif
1382
1383 default:
1384 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Fan Due682adf2013-11-07 17:47:48 +08001387 ret = verify_policy_dir(p->dir);
1388 if (ret)
1389 return ret;
1390 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1391 return -EINVAL;
1392
1393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Thomas Graf5424f322007-08-22 14:01:33 -07001396static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001397{
Thomas Graf5424f322007-08-22 14:01:33 -07001398 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001399 struct xfrm_user_sec_ctx *uctx;
1400
1401 if (!rt)
1402 return 0;
1403
Thomas Graf5424f322007-08-22 14:01:33 -07001404 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001405 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001406}
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1409 int nr)
1410{
1411 int i;
1412
1413 xp->xfrm_nr = nr;
1414 for (i = 0; i < nr; i++, ut++) {
1415 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1416
1417 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1418 memcpy(&t->saddr, &ut->saddr,
1419 sizeof(xfrm_address_t));
1420 t->reqid = ut->reqid;
1421 t->mode = ut->mode;
1422 t->share = ut->share;
1423 t->optional = ut->optional;
1424 t->aalgos = ut->aalgos;
1425 t->ealgos = ut->ealgos;
1426 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001427 /* If all masks are ~0, then we allow all algorithms. */
1428 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001429 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431}
1432
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001433static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1434{
Steffen Klassert732706a2017-12-08 08:07:25 +01001435 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001436 int i;
1437
1438 if (nr > XFRM_MAX_DEPTH)
1439 return -EINVAL;
1440
Steffen Klassert732706a2017-12-08 08:07:25 +01001441 prev_family = family;
1442
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001443 for (i = 0; i < nr; i++) {
1444 /* We never validated the ut->family value, so many
1445 * applications simply leave it at zero. The check was
1446 * never made and ut->family was ignored because all
1447 * templates could be assumed to have the same family as
1448 * the policy itself. Now that we will have ipv4-in-ipv6
1449 * and ipv6-in-ipv4 tunnels, this is no longer true.
1450 */
1451 if (!ut[i].family)
1452 ut[i].family = family;
1453
Steffen Klassert732706a2017-12-08 08:07:25 +01001454 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1455 (ut[i].family != prev_family))
1456 return -EINVAL;
1457
1458 prev_family = ut[i].family;
1459
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001460 switch (ut[i].family) {
1461 case AF_INET:
1462 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001463#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001464 case AF_INET6:
1465 break;
1466#endif
1467 default:
1468 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001469 }
Cong Wang6a53b752017-11-27 11:15:16 -08001470
1471 switch (ut[i].id.proto) {
1472 case IPPROTO_AH:
1473 case IPPROTO_ESP:
1474 case IPPROTO_COMP:
1475#if IS_ENABLED(CONFIG_IPV6)
1476 case IPPROTO_ROUTING:
1477 case IPPROTO_DSTOPTS:
1478#endif
1479 case IPSEC_PROTO_ANY:
1480 break;
1481 default:
1482 return -EINVAL;
1483 }
1484
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001485 }
1486
1487 return 0;
1488}
1489
Thomas Graf5424f322007-08-22 14:01:33 -07001490static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Thomas Graf5424f322007-08-22 14:01:33 -07001492 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 if (!rt) {
1495 pol->xfrm_nr = 0;
1496 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001497 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1498 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001499 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001501 err = validate_tmpl(nr, utmpl, pol->family);
1502 if (err)
1503 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Thomas Graf5424f322007-08-22 14:01:33 -07001505 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507 return 0;
1508}
1509
Thomas Graf5424f322007-08-22 14:01:33 -07001510static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001511{
Thomas Graf5424f322007-08-22 14:01:33 -07001512 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001513 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001514 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001515 int err;
1516
1517 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001518 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001519 type = upt->type;
1520 }
1521
1522 err = verify_policy_type(type);
1523 if (err)
1524 return err;
1525
1526 *tp = type;
1527 return 0;
1528}
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1531{
1532 xp->priority = p->priority;
1533 xp->index = p->index;
1534 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1535 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1536 xp->action = p->action;
1537 xp->flags = p->flags;
1538 xp->family = p->sel.family;
1539 /* XXX xp->share = p->share; */
1540}
1541
1542static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1543{
Mathias Krause7b789832012-09-19 11:33:40 +00001544 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1546 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1547 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1548 p->priority = xp->priority;
1549 p->index = xp->index;
1550 p->sel.family = xp->family;
1551 p->dir = dir;
1552 p->action = xp->action;
1553 p->flags = xp->flags;
1554 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1555}
1556
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001557static 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 -07001558{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001559 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 int err;
1561
1562 if (!xp) {
1563 *errp = -ENOMEM;
1564 return NULL;
1565 }
1566
1567 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001568
Thomas Graf35a7aa02007-08-22 14:00:40 -07001569 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001570 if (err)
1571 goto error;
1572
Thomas Graf35a7aa02007-08-22 14:00:40 -07001573 if (!(err = copy_from_user_tmpl(xp, attrs)))
1574 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001575 if (err)
1576 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001578 xfrm_mark_get(attrs, &xp->mark);
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001581 error:
1582 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001583 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001584 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001585 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Christoph Hellwig22e70052007-01-02 15:22:30 -08001588static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001589 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001591 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001592 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001594 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 int err;
1596 int excl;
1597
1598 err = verify_newpolicy_info(p);
1599 if (err)
1600 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001601 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001602 if (err)
1603 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001605 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (!xp)
1607 return err;
1608
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001609 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001610 * Aha! this is anti-netlink really i.e more pfkey derived
1611 * in netlink excl is a flag and you wouldnt need
1612 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1614 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001615 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001618 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 kfree(xp);
1620 return err;
1621 }
1622
Herbert Xuf60f6b82005-06-18 22:44:37 -07001623 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001624 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001625 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001626 km_policy_notify(xp, p->dir, &c);
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 xfrm_pol_put(xp);
1629
1630 return 0;
1631}
1632
1633static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1634{
1635 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1636 int i;
1637
1638 if (xp->xfrm_nr == 0)
1639 return 0;
1640
1641 for (i = 0; i < xp->xfrm_nr; i++) {
1642 struct xfrm_user_tmpl *up = &vec[i];
1643 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1644
Mathias Krause1f868402012-09-19 11:33:41 +00001645 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001647 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1649 up->reqid = kp->reqid;
1650 up->mode = kp->mode;
1651 up->share = kp->share;
1652 up->optional = kp->optional;
1653 up->aalgos = kp->aalgos;
1654 up->ealgos = kp->ealgos;
1655 up->calgos = kp->calgos;
1656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Thomas Grafc0144be2007-08-22 13:55:43 -07001658 return nla_put(skb, XFRMA_TMPL,
1659 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001660}
1661
Serge Hallyn0d681622006-07-24 23:30:44 -07001662static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1663{
1664 if (x->security) {
1665 return copy_sec_ctx(x->security, skb);
1666 }
1667 return 0;
1668}
1669
1670static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1671{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001672 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001673 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001674 return 0;
1675}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001676static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001677{
1678#ifdef CONFIG_XFRM_SUB_POLICY
1679 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1680#else
1681 return 0;
1682#endif
1683}
Serge Hallyn0d681622006-07-24 23:30:44 -07001684
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001685#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001686static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001687{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001688 struct xfrm_userpolicy_type upt;
1689
1690 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1691 memset(&upt, 0, sizeof(upt));
1692 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001693
Thomas Grafc0144be2007-08-22 13:55:43 -07001694 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001695}
1696
1697#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001698static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001699{
1700 return 0;
1701}
1702#endif
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1705{
1706 struct xfrm_dump_info *sp = ptr;
1707 struct xfrm_userpolicy_info *p;
1708 struct sk_buff *in_skb = sp->in_skb;
1709 struct sk_buff *skb = sp->out_skb;
1710 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001711 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Eric W. Biederman15e47302012-09-07 20:12:54 +00001713 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001714 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1715 if (nlh == NULL)
1716 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Thomas Graf7b67c852007-08-22 13:53:52 -07001718 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001720 err = copy_to_user_tmpl(xp, skb);
1721 if (!err)
1722 err = copy_to_user_sec_ctx(xp, skb);
1723 if (!err)
1724 err = copy_to_user_policy_type(xp->type, skb);
1725 if (!err)
1726 err = xfrm_mark_put(skb, &xp->mark);
1727 if (err) {
1728 nlmsg_cancel(skb, nlh);
1729 return err;
1730 }
Thomas Graf98250692007-08-22 12:47:26 -07001731 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
Timo Teras4c563f72008-02-28 21:31:08 -08001735static int xfrm_dump_policy_done(struct netlink_callback *cb)
1736{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001737 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001738 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001739
Fan Du283bc9f2013-11-07 17:47:50 +08001740 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001741 return 0;
1742}
1743
Herbert Xu1137b5e2017-10-19 20:51:10 +08001744static int xfrm_dump_policy_start(struct netlink_callback *cb)
1745{
1746 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1747
1748 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1749
1750 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1751 return 0;
1752}
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1755{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001756 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001757 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 struct xfrm_dump_info info;
1759
1760 info.in_skb = cb->skb;
1761 info.out_skb = skb;
1762 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1763 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001764
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001765 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 return skb->len;
1768}
1769
1770static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1771 struct xfrm_policy *xp,
1772 int dir, u32 seq)
1773{
1774 struct xfrm_dump_info info;
1775 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001776 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Thomas Graf7deb2262007-08-22 13:57:39 -07001778 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (!skb)
1780 return ERR_PTR(-ENOMEM);
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 info.in_skb = in_skb;
1783 info.out_skb = skb;
1784 info.nlmsg_seq = seq;
1785 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Mathias Krausec2546372012-09-14 09:58:32 +00001787 err = dump_one_policy(xp, dir, 0, &info);
1788 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001790 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792
1793 return skb;
1794}
1795
Christoph Hellwig22e70052007-01-02 15:22:30 -08001796static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001797 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001799 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 struct xfrm_policy *xp;
1801 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001802 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001804 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001806 struct xfrm_mark m;
1807 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Thomas Graf7b67c852007-08-22 13:53:52 -07001809 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1811
Thomas Graf35a7aa02007-08-22 14:00:40 -07001812 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001813 if (err)
1814 return err;
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 err = verify_policy_dir(p->dir);
1817 if (err)
1818 return err;
1819
1820 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001821 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001822 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001823 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001824 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001825
Thomas Graf35a7aa02007-08-22 14:00:40 -07001826 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001827 if (err)
1828 return err;
1829
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001830 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001831 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001832 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001833
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001834 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001835 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001836 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001837 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001838 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001839 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001840 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 if (xp == NULL)
1843 return -ENOENT;
1844
1845 if (!delete) {
1846 struct sk_buff *resp_skb;
1847
1848 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1849 if (IS_ERR(resp_skb)) {
1850 err = PTR_ERR(resp_skb);
1851 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001852 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001853 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001855 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001856 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001857
1858 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001859 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001860
Herbert Xue7443892005-06-18 22:44:18 -07001861 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001862 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001863 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001864 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001865 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001868out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001869 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return err;
1871}
1872
Christoph Hellwig22e70052007-01-02 15:22:30 -08001873static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001874 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001876 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001877 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001878 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001879 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Tetsuo Handa2e710292014-04-22 21:48:30 +09001881 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001882 if (err) {
1883 if (err == -ESRCH) /* empty table */
1884 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001885 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001886 }
Herbert Xubf088672005-06-18 22:44:00 -07001887 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001888 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001889 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001890 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001891 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001892 km_state_notify(NULL, &c);
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 return 0;
1895}
1896
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001897static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001898{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001899 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001900 xfrm_replay_state_esn_len(x->replay_esn) :
1901 sizeof(struct xfrm_replay_state);
1902
Thomas Graf7deb2262007-08-22 13:57:39 -07001903 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001904 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001905 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001906 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001907 + nla_total_size(4) /* XFRM_AE_RTHR */
1908 + nla_total_size(4); /* XFRM_AE_ETHR */
1909}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001910
David S. Miller214e0052011-02-24 00:02:38 -05001911static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001912{
1913 struct xfrm_aevent_id *id;
1914 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001915 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001916
Eric W. Biederman15e47302012-09-07 20:12:54 +00001917 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001918 if (nlh == NULL)
1919 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001920
Thomas Graf7b67c852007-08-22 13:53:52 -07001921 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001922 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001923 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001924 id->sa_id.spi = x->id.spi;
1925 id->sa_id.family = x->props.family;
1926 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001927 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001928 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001929 id->flags = c->data.aevent;
1930
David S. Millerd0fde792012-03-29 04:02:26 -04001931 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001932 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1933 xfrm_replay_state_esn_len(x->replay_esn),
1934 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001935 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001936 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1937 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001938 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001939 if (err)
1940 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001941 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1942 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001943 if (err)
1944 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001945
David S. Miller1d1e34d2012-06-27 21:57:03 -07001946 if (id->flags & XFRM_AE_RTHR) {
1947 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1948 if (err)
1949 goto out_cancel;
1950 }
1951 if (id->flags & XFRM_AE_ETHR) {
1952 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1953 x->replay_maxage * 10 / HZ);
1954 if (err)
1955 goto out_cancel;
1956 }
1957 err = xfrm_mark_put(skb, &x->mark);
1958 if (err)
1959 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001960
Johannes Berg053c0952015-01-16 22:09:00 +01001961 nlmsg_end(skb, nlh);
1962 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001963
David S. Miller1d1e34d2012-06-27 21:57:03 -07001964out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001965 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001966 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001967}
1968
Christoph Hellwig22e70052007-01-02 15:22:30 -08001969static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001970 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001971{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001972 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001973 struct xfrm_state *x;
1974 struct sk_buff *r_skb;
1975 int err;
1976 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001977 u32 mark;
1978 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001979 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001980 struct xfrm_usersa_id *id = &p->sa_id;
1981
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001982 mark = xfrm_mark_get(attrs, &m);
1983
1984 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001985 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001986 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001987
1988 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1989 if (r_skb == NULL) {
1990 xfrm_state_put(x);
1991 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001992 }
1993
1994 /*
1995 * XXX: is this lock really needed - none of the other
1996 * gets lock (the concern is things getting updated
1997 * while we are still reading) - jhs
1998 */
1999 spin_lock_bh(&x->lock);
2000 c.data.aevent = p->flags;
2001 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002002 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002003
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002004 err = build_aevent(r_skb, x, &c);
2005 BUG_ON(err < 0);
2006
Eric W. Biederman15e47302012-09-07 20:12:54 +00002007 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002008 spin_unlock_bh(&x->lock);
2009 xfrm_state_put(x);
2010 return err;
2011}
2012
Christoph Hellwig22e70052007-01-02 15:22:30 -08002013static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002014 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002015{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002016 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002017 struct xfrm_state *x;
2018 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002019 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002020 u32 mark = 0;
2021 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002022 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002023 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002024 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002025 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002026 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2027 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002028
Michael Rossberg4e077232015-09-29 11:25:08 +02002029 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002030 return err;
2031
2032 /* pedantic mode - thou shalt sayeth replaceth */
2033 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2034 return err;
2035
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002036 mark = xfrm_mark_get(attrs, &m);
2037
2038 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 -08002039 if (x == NULL)
2040 return -ESRCH;
2041
2042 if (x->km.state != XFRM_STATE_VALID)
2043 goto out;
2044
Steffen Klassert4479ff72013-09-09 09:39:01 +02002045 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002046 if (err)
2047 goto out;
2048
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002049 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002050 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002051 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002052
2053 c.event = nlh->nlmsg_type;
2054 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002055 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002056 c.data.aevent = XFRM_AE_CU;
2057 km_state_notify(x, &c);
2058 err = 0;
2059out:
2060 xfrm_state_put(x);
2061 return err;
2062}
2063
Christoph Hellwig22e70052007-01-02 15:22:30 -08002064static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002065 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002067 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002068 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002069 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002070 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002071
Thomas Graf35a7aa02007-08-22 14:00:40 -07002072 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002073 if (err)
2074 return err;
2075
Tetsuo Handa2e710292014-04-22 21:48:30 +09002076 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002077 if (err) {
2078 if (err == -ESRCH) /* empty table */
2079 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002080 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002081 }
2082
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002083 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002084 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002085 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002086 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002087 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002088 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return 0;
2090}
2091
Christoph Hellwig22e70052007-01-02 15:22:30 -08002092static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002093 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002094{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002095 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002096 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002097 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002098 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002099 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002100 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002101 struct xfrm_mark m;
2102 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002103
Thomas Graf35a7aa02007-08-22 14:00:40 -07002104 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002105 if (err)
2106 return err;
2107
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002108 err = verify_policy_dir(p->dir);
2109 if (err)
2110 return err;
2111
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002112 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002113 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002114 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002115 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002116 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002117
Thomas Graf35a7aa02007-08-22 14:00:40 -07002118 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002119 if (err)
2120 return err;
2121
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002122 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002123 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002124 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002125
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002126 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002127 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002128 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002129 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002130 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002131 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002132 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002133 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002134 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002135 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002136
Timo Teräsea2dea92010-03-31 00:17:05 +00002137 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002138 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002139
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002140 err = 0;
2141 if (up->hard) {
2142 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002143 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002144 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002145 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002146
2147out:
2148 xfrm_pol_put(xp);
2149 return err;
2150}
2151
Christoph Hellwig22e70052007-01-02 15:22:30 -08002152static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002153 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002154{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002155 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002156 struct xfrm_state *x;
2157 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002158 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002159 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002160 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002161 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002162
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002163 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 -08002164
David S. Miller3a765aa2007-02-26 14:52:21 -08002165 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002166 if (x == NULL)
2167 return err;
2168
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002169 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002170 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002171 if (x->km.state != XFRM_STATE_VALID)
2172 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002173 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002174
Joy Latten161a09e2006-11-27 13:11:54 -06002175 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002176 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002177 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002178 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002179 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002180out:
2181 spin_unlock_bh(&x->lock);
2182 xfrm_state_put(x);
2183 return err;
2184}
2185
Christoph Hellwig22e70052007-01-02 15:22:30 -08002186static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002187 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002188{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002189 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002190 struct xfrm_policy *xp;
2191 struct xfrm_user_tmpl *ut;
2192 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002193 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002194 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002195
Thomas Graf7b67c852007-08-22 13:53:52 -07002196 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002197 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002198 int err = -ENOMEM;
2199
2200 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002201 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002202
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002203 xfrm_mark_get(attrs, &mark);
2204
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002205 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002206 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002207 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002208
2209 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002210 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002211 if (!xp)
2212 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002213
2214 memcpy(&x->id, &ua->id, sizeof(ua->id));
2215 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2216 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002217 xp->mark.m = x->mark.m = mark.m;
2218 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002219 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002220 /* extract the templates and for each call km_key */
2221 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2222 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2223 memcpy(&x->id, &t->id, sizeof(x->id));
2224 x->props.mode = t->mode;
2225 x->props.reqid = t->reqid;
2226 x->props.family = ut->family;
2227 t->aalgos = ua->aalgos;
2228 t->ealgos = ua->ealgos;
2229 t->calgos = ua->calgos;
2230 err = km_query(x, t, xp);
2231
2232 }
2233
2234 kfree(x);
2235 kfree(xp);
2236
2237 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002238
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002239free_state:
2240 kfree(x);
2241nomem:
2242 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002243}
2244
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002245#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002246static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002247 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002248 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002249{
Thomas Graf5424f322007-08-22 14:01:33 -07002250 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002251 struct xfrm_user_migrate *um;
2252 int i, num_migrate;
2253
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002254 if (k != NULL) {
2255 struct xfrm_user_kmaddress *uk;
2256
2257 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2258 memcpy(&k->local, &uk->local, sizeof(k->local));
2259 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2260 k->family = uk->family;
2261 k->reserved = uk->reserved;
2262 }
2263
Thomas Graf5424f322007-08-22 14:01:33 -07002264 um = nla_data(rt);
2265 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002266
2267 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2268 return -EINVAL;
2269
2270 for (i = 0; i < num_migrate; i++, um++, ma++) {
2271 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2272 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2273 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2274 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2275
2276 ma->proto = um->proto;
2277 ma->mode = um->mode;
2278 ma->reqid = um->reqid;
2279
2280 ma->old_family = um->old_family;
2281 ma->new_family = um->new_family;
2282 }
2283
2284 *num = i;
2285 return 0;
2286}
2287
2288static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002289 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002290{
Thomas Graf7b67c852007-08-22 13:53:52 -07002291 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002292 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002293 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294 u8 type;
2295 int err;
2296 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002297 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002298 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002299
Thomas Graf35a7aa02007-08-22 14:00:40 -07002300 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002301 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002302
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002303 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2304
Thomas Graf5424f322007-08-22 14:01:33 -07002305 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002306 if (err)
2307 return err;
2308
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002309 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002310 if (err)
2311 return err;
2312
2313 if (!n)
2314 return 0;
2315
Antony Antony4ab47d42017-06-06 12:12:13 +02002316 if (attrs[XFRMA_ENCAP]) {
2317 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2318 sizeof(*encap), GFP_KERNEL);
2319 if (!encap)
2320 return 0;
2321 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002322
Antony Antony4ab47d42017-06-06 12:12:13 +02002323 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2324
2325 kfree(encap);
2326
2327 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328}
2329#else
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{
2333 return -ENOPROTOOPT;
2334}
2335#endif
2336
2337#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002338static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002339{
2340 struct xfrm_user_migrate um;
2341
2342 memset(&um, 0, sizeof(um));
2343 um.proto = m->proto;
2344 um.mode = m->mode;
2345 um.reqid = m->reqid;
2346 um.old_family = m->old_family;
2347 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2348 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2349 um.new_family = m->new_family;
2350 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2351 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2352
Thomas Grafc0144be2007-08-22 13:55:43 -07002353 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002354}
2355
David S. Miller183cad12011-02-24 00:28:01 -05002356static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002357{
2358 struct xfrm_user_kmaddress uk;
2359
2360 memset(&uk, 0, sizeof(uk));
2361 uk.family = k->family;
2362 uk.reserved = k->reserved;
2363 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002364 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002365
2366 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2367}
2368
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002369static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2370 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002371{
2372 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002373 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002374 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002375 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2376 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002377}
2378
David S. Miller183cad12011-02-24 00:28:01 -05002379static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2380 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002381 const struct xfrm_selector *sel,
2382 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002383{
David S. Miller183cad12011-02-24 00:28:01 -05002384 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002385 struct xfrm_userpolicy_id *pol_id;
2386 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002387 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002388
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002389 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2390 if (nlh == NULL)
2391 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002392
Thomas Graf7b67c852007-08-22 13:53:52 -07002393 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002394 /* copy data from selector, dir, and type to the pol_id */
2395 memset(pol_id, 0, sizeof(*pol_id));
2396 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2397 pol_id->dir = dir;
2398
David S. Miller1d1e34d2012-06-27 21:57:03 -07002399 if (k != NULL) {
2400 err = copy_to_user_kmaddress(k, skb);
2401 if (err)
2402 goto out_cancel;
2403 }
Antony Antony8bafd732017-06-06 12:12:14 +02002404 if (encap) {
2405 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2406 if (err)
2407 goto out_cancel;
2408 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002409 err = copy_to_user_policy_type(type, skb);
2410 if (err)
2411 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002412 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002413 err = copy_to_user_migrate(mp, skb);
2414 if (err)
2415 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002416 }
2417
Johannes Berg053c0952015-01-16 22:09:00 +01002418 nlmsg_end(skb, nlh);
2419 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002420
2421out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002422 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002423 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002424}
2425
David S. Miller183cad12011-02-24 00:28:01 -05002426static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2427 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002428 const struct xfrm_kmaddress *k,
2429 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002430{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002431 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002432 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002433 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002434
Antony Antony8bafd732017-06-06 12:12:14 +02002435 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2436 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002437 if (skb == NULL)
2438 return -ENOMEM;
2439
2440 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002441 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2442 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002443
Michal Kubecek21ee5432014-06-03 10:26:06 +02002444 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002445}
2446#else
David S. Miller183cad12011-02-24 00:28:01 -05002447static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2448 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002449 const struct xfrm_kmaddress *k,
2450 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002451{
2452 return -ENOPROTOOPT;
2453}
2454#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002455
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002456#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002457
2458static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002459 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002460 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2461 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2462 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2463 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2464 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2465 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002466 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002467 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002468 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002469 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002470 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002471 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002472 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002473 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2474 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002475 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002476 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002477 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002478 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002479 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480};
2481
Thomas Graf492b5582005-05-03 14:26:40 -07002482#undef XMSGSIZE
2483
Thomas Grafcf5cb792007-08-22 13:59:04 -07002484static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002485 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2486 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2487 [XFRMA_LASTUSED] = { .type = NLA_U64},
2488 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002489 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002490 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2491 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2492 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2493 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2494 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2495 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2496 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2497 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2498 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2499 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2500 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2501 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2502 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2503 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002504 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002505 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002506 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002507 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002508 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002509 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002510 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002511 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Michal Kubeceke7191352017-11-29 18:23:56 +01002512 [XFRMA_OUTPUT_MARK] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002513};
2514
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002515static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2516 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2517 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2518};
2519
Mathias Krause05600a72013-02-24 14:10:27 +01002520static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002521 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002522 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002524 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002525 const struct nla_policy *nla_pol;
2526 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002527} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2528 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2529 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2530 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002531 .dump = xfrm_dump_sa,
2532 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002533 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2534 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2535 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002536 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002537 .dump = xfrm_dump_policy,
2538 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002539 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002540 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002541 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002542 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2543 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002544 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002545 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2546 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002547 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2548 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002549 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002550 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002551 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2552 .nla_pol = xfrma_spd_policy,
2553 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002554 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555};
2556
Johannes Berg2d4bc932017-04-12 14:34:04 +02002557static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2558 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002560 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002561 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002562 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002563 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Fan Du74005992015-01-27 17:00:29 +08002565#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002566 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002567 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002568#endif
2569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574 type -= XFRM_MSG_BASE;
2575 link = &xfrm_dispatch[type];
2576
2577 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002578 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002579 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Thomas Graf492b5582005-05-03 14:26:40 -07002581 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2582 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002583 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002585 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002587 {
2588 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002589 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002590 .dump = link->dump,
2591 .done = link->done,
2592 };
2593 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
2596
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002597 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2598 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002599 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002600 if (err < 0)
2601 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002604 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Thomas Graf5424f322007-08-22 14:01:33 -07002606 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002609static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Fan Du283bc9f2013-11-07 17:47:50 +08002611 struct net *net = sock_net(skb->sk);
2612
2613 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002614 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002615 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002618static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002619{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002620 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2621 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002622}
2623
David S. Miller214e0052011-02-24 00:02:38 -05002624static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 struct xfrm_user_expire *ue;
2627 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002628 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Eric W. Biederman15e47302012-09-07 20:12:54 +00002630 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002631 if (nlh == NULL)
2632 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Thomas Graf7b67c852007-08-22 13:53:52 -07002634 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002636 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002637 /* clear the padding bytes */
2638 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
David S. Miller1d1e34d2012-06-27 21:57:03 -07002640 err = xfrm_mark_put(skb, &x->mark);
2641 if (err)
2642 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002643
Johannes Berg053c0952015-01-16 22:09:00 +01002644 nlmsg_end(skb, nlh);
2645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
2647
David S. Miller214e0052011-02-24 00:02:38 -05002648static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002650 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 struct sk_buff *skb;
2652
Thomas Graf7deb2262007-08-22 13:57:39 -07002653 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (skb == NULL)
2655 return -ENOMEM;
2656
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002657 if (build_expire(skb, x, c) < 0) {
2658 kfree_skb(skb);
2659 return -EMSGSIZE;
2660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Michal Kubecek21ee5432014-06-03 10:26:06 +02002662 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
David S. Miller214e0052011-02-24 00:02:38 -05002665static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002666{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002667 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002668 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002669 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002670
Steffen Klassertd8647b72011-03-08 00:10:27 +00002671 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002672 if (skb == NULL)
2673 return -ENOMEM;
2674
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002675 err = build_aevent(skb, x, c);
2676 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002677
Michal Kubecek21ee5432014-06-03 10:26:06 +02002678 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002679}
2680
David S. Miller214e0052011-02-24 00:02:38 -05002681static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002682{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002683 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002684 struct xfrm_usersa_flush *p;
2685 struct nlmsghdr *nlh;
2686 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002687 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002688
Thomas Graf7deb2262007-08-22 13:57:39 -07002689 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002690 if (skb == NULL)
2691 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692
Eric W. Biederman15e47302012-09-07 20:12:54 +00002693 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002694 if (nlh == NULL) {
2695 kfree_skb(skb);
2696 return -EMSGSIZE;
2697 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002698
Thomas Graf7b67c852007-08-22 13:53:52 -07002699 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002700 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002701
Thomas Graf98250692007-08-22 12:47:26 -07002702 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002703
Michal Kubecek21ee5432014-06-03 10:26:06 +02002704 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002705}
2706
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002707static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002708{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002709 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002710 if (x->aead)
2711 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002712 if (x->aalg) {
2713 l += nla_total_size(sizeof(struct xfrm_algo) +
2714 (x->aalg->alg_key_len + 7) / 8);
2715 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2716 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002717 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002718 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002719 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002720 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002721 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002722 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002723 if (x->tfcpad)
2724 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002725 if (x->replay_esn)
2726 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002727 else
2728 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002729 if (x->security)
2730 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2731 x->security->ctx_len);
2732 if (x->coaddr)
2733 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002734 if (x->props.extra_flags)
2735 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002736 if (x->xso.dev)
2737 l += nla_total_size(sizeof(x->xso));
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002738 if (x->props.output_mark)
2739 l += nla_total_size(sizeof(x->props.output_mark));
Herbert Xu68325d32007-10-09 13:30:57 -07002740
Herbert Xud26f3982007-11-13 21:47:08 -08002741 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002742 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002743
2744 return l;
2745}
2746
David S. Miller214e0052011-02-24 00:02:38 -05002747static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002748{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002749 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002750 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002751 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002752 struct nlmsghdr *nlh;
2753 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002754 unsigned int len = xfrm_sa_len(x);
2755 unsigned int headlen;
2756 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002757
2758 headlen = sizeof(*p);
2759 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002760 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002761 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002762 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002763 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002764 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002765
Thomas Graf7deb2262007-08-22 13:57:39 -07002766 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002767 if (skb == NULL)
2768 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002769
Eric W. Biederman15e47302012-09-07 20:12:54 +00002770 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002771 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002772 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002773 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002774
Thomas Graf7b67c852007-08-22 13:53:52 -07002775 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002776 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002777 struct nlattr *attr;
2778
Thomas Graf7b67c852007-08-22 13:53:52 -07002779 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002780 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002781 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2782 id->spi = x->id.spi;
2783 id->family = x->props.family;
2784 id->proto = x->id.proto;
2785
Thomas Grafc0144be2007-08-22 13:55:43 -07002786 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002787 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002788 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002789 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002790
2791 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002792 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002793 err = copy_to_user_state_extra(x, p, skb);
2794 if (err)
2795 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002796
Thomas Graf98250692007-08-22 12:47:26 -07002797 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002798
Michal Kubecek21ee5432014-06-03 10:26:06 +02002799 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800
David S. Miller1d1e34d2012-06-27 21:57:03 -07002801out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002802 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002803 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002804}
2805
David S. Miller214e0052011-02-24 00:02:38 -05002806static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002807{
2808
2809 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002810 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002811 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002812 case XFRM_MSG_NEWAE:
2813 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002814 case XFRM_MSG_DELSA:
2815 case XFRM_MSG_UPDSA:
2816 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002818 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002819 return xfrm_notify_sa_flush(c);
2820 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002821 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2822 c->event);
2823 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002824 }
2825
2826 return 0;
2827
2828}
2829
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002830static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2831 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002832{
2833 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2834 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002835 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002836 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2837 + userpolicy_type_attrsize();
2838}
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002841 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002843 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 struct xfrm_user_acquire *ua;
2845 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002846 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002848 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2849 if (nlh == NULL)
2850 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Thomas Graf7b67c852007-08-22 13:53:52 -07002852 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 memcpy(&ua->id, &x->id, sizeof(ua->id));
2854 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2855 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002856 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 ua->aalgos = xt->aalgos;
2858 ua->ealgos = xt->ealgos;
2859 ua->calgos = xt->calgos;
2860 ua->seq = x->km.seq = seq;
2861
David S. Miller1d1e34d2012-06-27 21:57:03 -07002862 err = copy_to_user_tmpl(xp, skb);
2863 if (!err)
2864 err = copy_to_user_state_sec_ctx(x, skb);
2865 if (!err)
2866 err = copy_to_user_policy_type(xp->type, skb);
2867 if (!err)
2868 err = xfrm_mark_put(skb, &xp->mark);
2869 if (err) {
2870 nlmsg_cancel(skb, nlh);
2871 return err;
2872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Johannes Berg053c0952015-01-16 22:09:00 +01002874 nlmsg_end(skb, nlh);
2875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
2878static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002879 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002881 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002883 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Thomas Graf7deb2262007-08-22 13:57:39 -07002885 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 if (skb == NULL)
2887 return -ENOMEM;
2888
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002889 err = build_acquire(skb, x, xt, xp);
2890 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Michal Kubecek21ee5432014-06-03 10:26:06 +02002892 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893}
2894
2895/* User gives us xfrm_user_policy_info followed by an array of 0
2896 * or more templates.
2897 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002898static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 u8 *data, int len, int *dir)
2900{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002901 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2903 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2904 struct xfrm_policy *xp;
2905 int nr;
2906
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002907 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 case AF_INET:
2909 if (opt != IP_XFRM_POLICY) {
2910 *dir = -EOPNOTSUPP;
2911 return NULL;
2912 }
2913 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002914#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 case AF_INET6:
2916 if (opt != IPV6_XFRM_POLICY) {
2917 *dir = -EOPNOTSUPP;
2918 return NULL;
2919 }
2920 break;
2921#endif
2922 default:
2923 *dir = -EINVAL;
2924 return NULL;
2925 }
2926
2927 *dir = -EINVAL;
2928
2929 if (len < sizeof(*p) ||
2930 verify_newpolicy_info(p))
2931 return NULL;
2932
2933 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002934 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return NULL;
2936
Herbert Xua4f1bac2005-07-26 15:43:17 -07002937 if (p->dir > XFRM_POLICY_OUT)
2938 return NULL;
2939
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002940 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 if (xp == NULL) {
2942 *dir = -ENOBUFS;
2943 return NULL;
2944 }
2945
2946 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002947 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 copy_templates(xp, ut, nr);
2949
2950 *dir = p->dir;
2951
2952 return xp;
2953}
2954
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002955static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002956{
2957 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2958 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2959 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002960 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002961 + userpolicy_type_attrsize();
2962}
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002965 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
2967 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002968 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002969 struct nlmsghdr *nlh;
2970 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Eric W. Biederman15e47302012-09-07 20:12:54 +00002972 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002973 if (nlh == NULL)
2974 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Thomas Graf7b67c852007-08-22 13:53:52 -07002976 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002978 err = copy_to_user_tmpl(xp, skb);
2979 if (!err)
2980 err = copy_to_user_sec_ctx(xp, skb);
2981 if (!err)
2982 err = copy_to_user_policy_type(xp->type, skb);
2983 if (!err)
2984 err = xfrm_mark_put(skb, &xp->mark);
2985 if (err) {
2986 nlmsg_cancel(skb, nlh);
2987 return err;
2988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 upe->hard = !!hard;
2990
Johannes Berg053c0952015-01-16 22:09:00 +01002991 nlmsg_end(skb, nlh);
2992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
2994
David S. Miller214e0052011-02-24 00:02:38 -05002995static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002997 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002999 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Thomas Graf7deb2262007-08-22 13:57:39 -07003001 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (skb == NULL)
3003 return -ENOMEM;
3004
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003005 err = build_polexpire(skb, xp, dir, c);
3006 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Michal Kubecek21ee5432014-06-03 10:26:06 +02003008 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009}
3010
David S. Miller214e0052011-02-24 00:02:38 -05003011static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003012{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003013 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003014 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003015 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003016 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003017 struct nlmsghdr *nlh;
3018 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003019 unsigned int headlen;
3020 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003021
3022 headlen = sizeof(*p);
3023 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003024 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003025 headlen = sizeof(*id);
3026 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003027 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003028 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003029 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003030
Thomas Graf7deb2262007-08-22 13:57:39 -07003031 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003032 if (skb == NULL)
3033 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003034
Eric W. Biederman15e47302012-09-07 20:12:54 +00003035 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003036 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003037 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003038 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003039
Thomas Graf7b67c852007-08-22 13:53:52 -07003040 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003041 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003042 struct nlattr *attr;
3043
Thomas Graf7b67c852007-08-22 13:53:52 -07003044 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003045 memset(id, 0, sizeof(*id));
3046 id->dir = dir;
3047 if (c->data.byid)
3048 id->index = xp->index;
3049 else
3050 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3051
Thomas Grafc0144be2007-08-22 13:55:43 -07003052 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003053 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003054 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003055 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003056
3057 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003058 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003059
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003060 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003061 err = copy_to_user_tmpl(xp, skb);
3062 if (!err)
3063 err = copy_to_user_policy_type(xp->type, skb);
3064 if (!err)
3065 err = xfrm_mark_put(skb, &xp->mark);
3066 if (err)
3067 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003068
Thomas Graf98250692007-08-22 12:47:26 -07003069 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003070
Michal Kubecek21ee5432014-06-03 10:26:06 +02003071 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003072
David S. Miller1d1e34d2012-06-27 21:57:03 -07003073out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003074 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003075 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003076}
3077
David S. Miller214e0052011-02-24 00:02:38 -05003078static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003079{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003080 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003081 struct nlmsghdr *nlh;
3082 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003083 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003084
Thomas Graf7deb2262007-08-22 13:57:39 -07003085 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003086 if (skb == NULL)
3087 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003088
Eric W. Biederman15e47302012-09-07 20:12:54 +00003089 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003090 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003091 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003092 goto out_free_skb;
3093 err = copy_to_user_policy_type(c->data.type, skb);
3094 if (err)
3095 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003096
Thomas Graf98250692007-08-22 12:47:26 -07003097 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003098
Michal Kubecek21ee5432014-06-03 10:26:06 +02003099 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003100
David S. Miller1d1e34d2012-06-27 21:57:03 -07003101out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003102 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003103 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003104}
3105
David S. Miller214e0052011-02-24 00:02:38 -05003106static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003107{
3108
3109 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003110 case XFRM_MSG_NEWPOLICY:
3111 case XFRM_MSG_UPDPOLICY:
3112 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003113 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003114 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003115 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003116 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003117 return xfrm_exp_policy_notify(xp, dir, c);
3118 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003119 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3120 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003121 }
3122
3123 return 0;
3124
3125}
3126
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003127static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003128{
3129 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3130}
3131
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003132static int build_report(struct sk_buff *skb, u8 proto,
3133 struct xfrm_selector *sel, xfrm_address_t *addr)
3134{
3135 struct xfrm_user_report *ur;
3136 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003137
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003138 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3139 if (nlh == NULL)
3140 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003141
Thomas Graf7b67c852007-08-22 13:53:52 -07003142 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003143 ur->proto = proto;
3144 memcpy(&ur->sel, sel, sizeof(ur->sel));
3145
David S. Miller1d1e34d2012-06-27 21:57:03 -07003146 if (addr) {
3147 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3148 if (err) {
3149 nlmsg_cancel(skb, nlh);
3150 return err;
3151 }
3152 }
Johannes Berg053c0952015-01-16 22:09:00 +01003153 nlmsg_end(skb, nlh);
3154 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003155}
3156
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003157static int xfrm_send_report(struct net *net, u8 proto,
3158 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003159{
3160 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003161 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003162
Thomas Graf7deb2262007-08-22 13:57:39 -07003163 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003164 if (skb == NULL)
3165 return -ENOMEM;
3166
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003167 err = build_report(skb, proto, sel, addr);
3168 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003169
Michal Kubecek21ee5432014-06-03 10:26:06 +02003170 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003171}
3172
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003173static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003174{
3175 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3176}
3177
3178static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3179 xfrm_address_t *new_saddr, __be16 new_sport)
3180{
3181 struct xfrm_user_mapping *um;
3182 struct nlmsghdr *nlh;
3183
3184 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3185 if (nlh == NULL)
3186 return -EMSGSIZE;
3187
3188 um = nlmsg_data(nlh);
3189
3190 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3191 um->id.spi = x->id.spi;
3192 um->id.family = x->props.family;
3193 um->id.proto = x->id.proto;
3194 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3195 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3196 um->new_sport = new_sport;
3197 um->old_sport = x->encap->encap_sport;
3198 um->reqid = x->props.reqid;
3199
Johannes Berg053c0952015-01-16 22:09:00 +01003200 nlmsg_end(skb, nlh);
3201 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003202}
3203
3204static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3205 __be16 sport)
3206{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003207 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003208 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003209 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003210
3211 if (x->id.proto != IPPROTO_ESP)
3212 return -EINVAL;
3213
3214 if (!x->encap)
3215 return -EINVAL;
3216
3217 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3218 if (skb == NULL)
3219 return -ENOMEM;
3220
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003221 err = build_mapping(skb, x, ipaddr, sport);
3222 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003223
Michal Kubecek21ee5432014-06-03 10:26:06 +02003224 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003225}
3226
Horia Geanta0f245582014-02-12 16:20:06 +02003227static bool xfrm_is_alive(const struct km_event *c)
3228{
3229 return (bool)xfrm_acquire_is_on(c->net);
3230}
3231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 .notify = xfrm_send_state_notify,
3234 .acquire = xfrm_send_acquire,
3235 .compile_policy = xfrm_compile_policy,
3236 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003237 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003238 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003239 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003240 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241};
3242
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003243static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244{
Patrick McHardybe336902006-03-20 22:40:54 -08003245 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003246 struct netlink_kernel_cfg cfg = {
3247 .groups = XFRMNLGRP_MAX,
3248 .input = xfrm_netlink_rcv,
3249 };
Patrick McHardybe336902006-03-20 22:40:54 -08003250
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003251 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003252 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003254 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003255 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 return 0;
3257}
3258
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003259static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003260{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003261 struct net *net;
3262 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003263 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003264 synchronize_net();
3265 list_for_each_entry(net, net_exit_list, exit_list)
3266 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003267}
3268
3269static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003270 .init = xfrm_user_net_init,
3271 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003272};
3273
3274static int __init xfrm_user_init(void)
3275{
3276 int rv;
3277
3278 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3279
3280 rv = register_pernet_subsys(&xfrm_user_net_ops);
3281 if (rv < 0)
3282 return rv;
3283 rv = xfrm_register_km(&netlink_mgr);
3284 if (rv < 0)
3285 unregister_pernet_subsys(&xfrm_user_net_ops);
3286 return rv;
3287}
3288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289static void __exit xfrm_user_exit(void)
3290{
3291 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003292 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
3295module_init(xfrm_user_init);
3296module_exit(xfrm_user_exit);
3297MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003298MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003299