blob: 7f52b8eb177db4978750caed402aa34f6a31d7b4 [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
Mathias Krauseecd79182012-09-20 10:01:49 +0000124 if (p->flags & XFRM_STATE_ESN) {
125 if (!rt)
126 return -EINVAL;
127
128 rs = nla_data(rt);
129
130 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
131 return -EINVAL;
132
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300133 if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) &&
Mathias Krauseecd79182012-09-20 10:01:49 +0000134 nla_len(rt) != sizeof(*rs))
135 return -EINVAL;
136 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000137
Steffen Klassertd8647b72011-03-08 00:10:27 +0000138 if (!rt)
139 return 0;
140
Fan Du01714102014-01-18 09:54:28 +0800141 /* As only ESP and AH support ESN feature. */
142 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000143 return -EINVAL;
144
Steffen Klassertd8647b72011-03-08 00:10:27 +0000145 if (p->replay_window != 0)
146 return -EINVAL;
147
148 return 0;
149}
Trent Jaegerdf718372005-12-13 23:12:27 -0800150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700152 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 int err;
155
156 err = -EINVAL;
157 switch (p->family) {
158 case AF_INET:
159 break;
160
161 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000162#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164#else
165 err = -EAFNOSUPPORT;
166 goto out;
167#endif
168
169 default:
170 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 err = -EINVAL;
174 switch (p->id.proto) {
175 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000176 if ((!attrs[XFRMA_ALG_AUTH] &&
177 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800178 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700179 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000180 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200181 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto out;
183 break;
184
185 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800186 if (attrs[XFRMA_ALG_COMP])
187 goto out;
188 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000189 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800190 !attrs[XFRMA_ALG_CRYPT] &&
191 !attrs[XFRMA_ALG_AEAD])
192 goto out;
193 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000194 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800195 attrs[XFRMA_ALG_CRYPT]) &&
196 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000198 if (attrs[XFRMA_TFCPAD] &&
199 p->mode != XFRM_MODE_TUNNEL)
200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 break;
202
203 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700204 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800205 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700206 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000207 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000208 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200209 attrs[XFRMA_TFCPAD] ||
210 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto out;
212 break;
213
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000214#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700215 case IPPROTO_DSTOPTS:
216 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700217 if (attrs[XFRMA_ALG_COMP] ||
218 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000219 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800220 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700221 attrs[XFRMA_ALG_CRYPT] ||
222 attrs[XFRMA_ENCAP] ||
223 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000224 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700226 goto out;
227 break;
228#endif
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 default:
231 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Herbert Xu1a6509d2008-01-28 19:37:29 -0800234 if ((err = verify_aead(attrs)))
235 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000236 if ((err = verify_auth_trunc(attrs)))
237 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700238 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700240 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800245 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000246 if ((err = verify_replay(p, attrs)))
247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 err = -EINVAL;
250 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700251 case XFRM_MODE_TRANSPORT:
252 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700253 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700254 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256
257 default:
258 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 err = 0;
262
263out:
264 return err;
265}
266
267static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800268 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700269 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct xfrm_algo *p, *ualg;
272 struct xfrm_algo_desc *algo;
273
274 if (!rta)
275 return 0;
276
Thomas Graf5424f322007-08-22 14:01:33 -0700277 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 algo = get_byname(ualg->alg_name, 1);
280 if (!algo)
281 return -ENOSYS;
282 *props = algo->desc.sadb_alg_id;
283
Eric Dumazet0f99be02008-01-08 23:39:06 -0800284 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!p)
286 return -ENOMEM;
287
Herbert Xu04ff1262006-08-13 08:50:00 +1000288 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *algpp = p;
290 return 0;
291}
292
Herbert Xu69b01372015-05-27 16:03:45 +0800293static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
294{
295 struct xfrm_algo *p, *ualg;
296 struct xfrm_algo_desc *algo;
297
298 if (!rta)
299 return 0;
300
301 ualg = nla_data(rta);
302
303 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
304 if (!algo)
305 return -ENOSYS;
306 x->props.ealgo = algo->desc.sadb_alg_id;
307
308 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
309 if (!p)
310 return -ENOMEM;
311
312 strcpy(p->alg_name, algo->name);
313 x->ealg = p;
314 x->geniv = algo->uinfo.encr.geniv;
315 return 0;
316}
317
Martin Willi4447bb32009-11-25 00:29:52 +0000318static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
319 struct nlattr *rta)
320{
321 struct xfrm_algo *ualg;
322 struct xfrm_algo_auth *p;
323 struct xfrm_algo_desc *algo;
324
325 if (!rta)
326 return 0;
327
328 ualg = nla_data(rta);
329
330 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
331 if (!algo)
332 return -ENOSYS;
333 *props = algo->desc.sadb_alg_id;
334
335 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
336 if (!p)
337 return -ENOMEM;
338
339 strcpy(p->alg_name, algo->name);
340 p->alg_key_len = ualg->alg_key_len;
341 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
342 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
343
344 *algpp = p;
345 return 0;
346}
347
348static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
349 struct nlattr *rta)
350{
351 struct xfrm_algo_auth *p, *ualg;
352 struct xfrm_algo_desc *algo;
353
354 if (!rta)
355 return 0;
356
357 ualg = nla_data(rta);
358
359 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
360 if (!algo)
361 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800362 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000363 return -EINVAL;
364 *props = algo->desc.sadb_alg_id;
365
366 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
367 if (!p)
368 return -ENOMEM;
369
370 strcpy(p->alg_name, algo->name);
371 if (!p->alg_trunc_len)
372 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
373
374 *algpp = p;
375 return 0;
376}
377
Herbert Xu69b01372015-05-27 16:03:45 +0800378static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800379{
380 struct xfrm_algo_aead *p, *ualg;
381 struct xfrm_algo_desc *algo;
382
383 if (!rta)
384 return 0;
385
386 ualg = nla_data(rta);
387
388 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
389 if (!algo)
390 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800391 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800392
393 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
394 if (!p)
395 return -ENOMEM;
396
397 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800398 x->aead = p;
399 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800400 return 0;
401}
402
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
404 struct nlattr *rp)
405{
406 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300407 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000408
409 if (!replay_esn || !rp)
410 return 0;
411
412 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000413 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000414
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000415 /* Check the overall length and the internal bitmap length to avoid
416 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300417 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000418 xfrm_replay_state_esn_len(replay_esn) != ulen ||
419 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000420 return -EINVAL;
421
Andy Whitcroft677e8062017-03-22 07:29:31 +0000422 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
423 return -EINVAL;
424
Steffen Klasserte2b19122011-03-28 19:47:30 +0000425 return 0;
426}
427
Steffen Klassertd8647b72011-03-08 00:10:27 +0000428static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
429 struct xfrm_replay_state_esn **preplay_esn,
430 struct nlattr *rta)
431{
432 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300433 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000434
435 if (!rta)
436 return 0;
437
438 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000439 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300440 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000441
Mathias Krauseecd79182012-09-20 10:01:49 +0000442 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000443 if (!p)
444 return -ENOMEM;
445
Mathias Krauseecd79182012-09-20 10:01:49 +0000446 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000447 if (!pp) {
448 kfree(p);
449 return -ENOMEM;
450 }
451
Mathias Krauseecd79182012-09-20 10:01:49 +0000452 memcpy(p, up, ulen);
453 memcpy(pp, up, ulen);
454
Steffen Klassertd8647b72011-03-08 00:10:27 +0000455 *replay_esn = p;
456 *preplay_esn = pp;
457
458 return 0;
459}
460
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300461static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800462{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300463 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800464
465 if (xfrm_ctx) {
466 len += sizeof(struct xfrm_user_sec_ctx);
467 len += xfrm_ctx->ctx_len;
468 }
469 return len;
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
473{
474 memcpy(&x->id, &p->id, sizeof(x->id));
475 memcpy(&x->sel, &p->sel, sizeof(x->sel));
476 memcpy(&x->lft, &p->lft, sizeof(x->lft));
477 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800478 x->props.replay_window = min_t(unsigned int, p->replay_window,
479 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 x->props.reqid = p->reqid;
481 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700482 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700484
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700485 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700486 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800489/*
490 * someday when pfkey also has support, we could have the code
491 * somehow made shareable and move it to xfrm_state.c - JHS
492 *
493*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000494static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
495 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800496{
Thomas Graf5424f322007-08-22 14:01:33 -0700497 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000498 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700499 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
500 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
501 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800502
Steffen Klassertd8647b72011-03-08 00:10:27 +0000503 if (re) {
504 struct xfrm_replay_state_esn *replay_esn;
505 replay_esn = nla_data(re);
506 memcpy(x->replay_esn, replay_esn,
507 xfrm_replay_state_esn_len(replay_esn));
508 memcpy(x->preplay_esn, replay_esn,
509 xfrm_replay_state_esn_len(replay_esn));
510 }
511
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800512 if (rp) {
513 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700514 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800515 memcpy(&x->replay, replay, sizeof(*replay));
516 memcpy(&x->preplay, replay, sizeof(*replay));
517 }
518
519 if (lt) {
520 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700521 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800522 x->curlft.bytes = ltime->bytes;
523 x->curlft.packets = ltime->packets;
524 x->curlft.add_time = ltime->add_time;
525 x->curlft.use_time = ltime->use_time;
526 }
527
Thomas Grafcf5cb792007-08-22 13:59:04 -0700528 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700529 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800530
Thomas Grafcf5cb792007-08-22 13:59:04 -0700531 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700532 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800533}
534
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800535static struct xfrm_state *xfrm_state_construct(struct net *net,
536 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700537 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int *errp)
539{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800540 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err = -ENOMEM;
542
543 if (!x)
544 goto error_no_put;
545
546 copy_from_user_state(x, p);
547
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100548 if (attrs[XFRMA_SA_EXTRA_FLAGS])
549 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
550
Herbert Xu69b01372015-05-27 16:03:45 +0800551 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800552 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000553 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
554 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000556 if (!x->props.aalgo) {
557 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
558 attrs[XFRMA_ALG_AUTH])))
559 goto error;
560 }
Herbert Xu69b01372015-05-27 16:03:45 +0800561 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto error;
563 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
564 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700565 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700567
568 if (attrs[XFRMA_ENCAP]) {
569 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
570 sizeof(*x->encap), GFP_KERNEL);
571 if (x->encap == NULL)
572 goto error;
573 }
574
Martin Willi35d28562010-12-08 04:37:49 +0000575 if (attrs[XFRMA_TFCPAD])
576 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
577
Thomas Graffd211502007-09-06 03:28:08 -0700578 if (attrs[XFRMA_COADDR]) {
579 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
580 sizeof(*x->coaddr), GFP_KERNEL);
581 if (x->coaddr == NULL)
582 goto error;
583 }
584
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000585 xfrm_mark_get(attrs, &x->mark);
586
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900587 if (attrs[XFRMA_OUTPUT_MARK])
588 x->props.output_mark = nla_get_u32(attrs[XFRMA_OUTPUT_MARK]);
589
Ilan Tayariffdb5212017-08-01 12:49:08 +0300590 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (err)
592 goto error;
593
Mathias Krause2f30ea52016-09-08 18:09:57 +0200594 if (attrs[XFRMA_SEC_CTX]) {
595 err = security_xfrm_state_alloc(x,
596 nla_data(attrs[XFRMA_SEC_CTX]));
597 if (err)
598 goto error;
599 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800600
Steffen Klassertd8647b72011-03-08 00:10:27 +0000601 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
602 attrs[XFRMA_REPLAY_ESN_VAL])))
603 goto error;
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800606 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800607 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800608 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800609
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000610 if ((err = xfrm_init_replay(x)))
611 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800612
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000613 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000614 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Yossi Kupermancc015722018-01-17 15:52:41 +0200616 /* configure the hardware if offload is requested */
617 if (attrs[XFRMA_OFFLOAD_DEV]) {
618 err = xfrm_dev_state_add(net, x,
619 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
620 if (err)
621 goto error;
622 }
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return x;
625
626error:
627 x->km.state = XFRM_STATE_DEAD;
628 xfrm_state_put(x);
629error_no_put:
630 *errp = err;
631 return NULL;
632}
633
Christoph Hellwig22e70052007-01-02 15:22:30 -0800634static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700635 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800637 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700638 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 struct xfrm_state *x;
640 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700641 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Thomas Graf35a7aa02007-08-22 14:00:40 -0700643 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (err)
645 return err;
646
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800647 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!x)
649 return err;
650
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700651 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
653 err = xfrm_state_add(x);
654 else
655 err = xfrm_state_update(x);
656
Tetsuo Handa2e710292014-04-22 21:48:30 +0900657 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (err < 0) {
660 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200661 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800662 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700663 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Yossi Kupermancc015722018-01-17 15:52:41 +0200666 if (x->km.state == XFRM_STATE_VOID)
667 x->km.state = XFRM_STATE_VALID;
668
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700669 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000670 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700671 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700672
673 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700674out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700675 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return err;
677}
678
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800679static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
680 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700681 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700682 int *errp)
683{
684 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000685 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700686 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000687 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700688
689 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
690 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000691 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700692 } else {
693 xfrm_address_t *saddr = NULL;
694
Thomas Graf35a7aa02007-08-22 14:00:40 -0700695 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700696 if (!saddr) {
697 err = -EINVAL;
698 goto out;
699 }
700
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800701 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000702 x = xfrm_state_lookup_byaddr(net, mark,
703 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800704 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700705 }
706
707 out:
708 if (!x && errp)
709 *errp = err;
710 return x;
711}
712
Christoph Hellwig22e70052007-01-02 15:22:30 -0800713static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700714 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800716 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700718 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700719 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700720 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800722 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700724 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
David S. Miller6f68dc32006-06-08 23:58:52 -0700726 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700727 goto out;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700730 err = -EPERM;
731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700734 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600735
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700736 if (err < 0)
737 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700738
739 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000740 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700741 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700742 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700744out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900745 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700746 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700747 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
751{
Mathias Krausef778a632012-09-19 11:33:39 +0000752 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 memcpy(&p->id, &x->id, sizeof(p->id));
754 memcpy(&p->sel, &x->sel, sizeof(p->sel));
755 memcpy(&p->lft, &x->lft, sizeof(p->lft));
756 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400757 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
758 put_unaligned(x->stats.replay, &p->stats.replay);
759 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700760 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 p->mode = x->props.mode;
762 p->replay_window = x->props.replay_window;
763 p->reqid = x->props.reqid;
764 p->family = x->props.family;
765 p->flags = x->props.flags;
766 p->seq = x->km.seq;
767}
768
769struct xfrm_dump_info {
770 struct sk_buff *in_skb;
771 struct sk_buff *out_skb;
772 u32 nlmsg_seq;
773 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774};
775
Thomas Grafc0144be2007-08-22 13:55:43 -0700776static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
777{
Thomas Grafc0144be2007-08-22 13:55:43 -0700778 struct xfrm_user_sec_ctx *uctx;
779 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700780 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700781
782 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
783 if (attr == NULL)
784 return -EMSGSIZE;
785
786 uctx = nla_data(attr);
787 uctx->exttype = XFRMA_SEC_CTX;
788 uctx->len = ctx_size;
789 uctx->ctx_doi = s->ctx_doi;
790 uctx->ctx_alg = s->ctx_alg;
791 uctx->ctx_len = s->ctx_len;
792 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
793
794 return 0;
795}
796
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200797static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
798{
799 struct xfrm_user_offload *xuo;
800 struct nlattr *attr;
801
802 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
803 if (attr == NULL)
804 return -EMSGSIZE;
805
806 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200807 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200808 xuo->ifindex = xso->dev->ifindex;
809 xuo->flags = xso->flags;
810
811 return 0;
812}
813
Martin Willi4447bb32009-11-25 00:29:52 +0000814static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
815{
816 struct xfrm_algo *algo;
817 struct nlattr *nla;
818
819 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
820 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
821 if (!nla)
822 return -EMSGSIZE;
823
824 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000825 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000826 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
827 algo->alg_key_len = auth->alg_key_len;
828
829 return 0;
830}
831
Herbert Xu68325d32007-10-09 13:30:57 -0700832/* Don't change this without updating xfrm_sa_len! */
833static int copy_to_user_state_extra(struct xfrm_state *x,
834 struct xfrm_usersa_info *p,
835 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700837 int ret = 0;
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 copy_to_user_state(x, p);
840
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100841 if (x->props.extra_flags) {
842 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
843 x->props.extra_flags);
844 if (ret)
845 goto out;
846 }
847
David S. Miller1d1e34d2012-06-27 21:57:03 -0700848 if (x->coaddr) {
849 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
850 if (ret)
851 goto out;
852 }
853 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200854 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
855 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700856 if (ret)
857 goto out;
858 }
859 if (x->aead) {
860 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
861 if (ret)
862 goto out;
863 }
864 if (x->aalg) {
865 ret = copy_to_user_auth(x->aalg, skb);
866 if (!ret)
867 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
868 xfrm_alg_auth_len(x->aalg), x->aalg);
869 if (ret)
870 goto out;
871 }
872 if (x->ealg) {
873 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
874 if (ret)
875 goto out;
876 }
877 if (x->calg) {
878 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
879 if (ret)
880 goto out;
881 }
882 if (x->encap) {
883 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
884 if (ret)
885 goto out;
886 }
887 if (x->tfcpad) {
888 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
889 if (ret)
890 goto out;
891 }
892 ret = xfrm_mark_put(skb, &x->mark);
893 if (ret)
894 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100895 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700896 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
897 xfrm_replay_state_esn_len(x->replay_esn),
898 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100899 else
900 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
901 &x->replay);
902 if (ret)
903 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200904 if(x->xso.dev)
905 ret = copy_user_offload(&x->xso, skb);
906 if (ret)
907 goto out;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900908 if (x->props.output_mark) {
909 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
910 if (ret)
911 goto out;
912 }
Steffen Klassert85981122017-08-31 10:37:00 +0200913 if (x->security)
914 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700915out:
916 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700917}
918
919static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
920{
921 struct xfrm_dump_info *sp = ptr;
922 struct sk_buff *in_skb = sp->in_skb;
923 struct sk_buff *skb = sp->out_skb;
924 struct xfrm_usersa_info *p;
925 struct nlmsghdr *nlh;
926 int err;
927
Eric W. Biederman15e47302012-09-07 20:12:54 +0000928 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700929 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
930 if (nlh == NULL)
931 return -EMSGSIZE;
932
933 p = nlmsg_data(nlh);
934
935 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700936 if (err) {
937 nlmsg_cancel(skb, nlh);
938 return err;
939 }
Thomas Graf98250692007-08-22 12:47:26 -0700940 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Timo Teras4c563f72008-02-28 21:31:08 -0800944static int xfrm_dump_sa_done(struct netlink_callback *cb)
945{
946 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800947 struct sock *sk = cb->skb->sk;
948 struct net *net = sock_net(sk);
949
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200950 if (cb->args[0])
951 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800952 return 0;
953}
954
Nicolas Dichteld3623092014-02-14 15:30:36 +0100955static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
957{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800958 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800959 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct xfrm_dump_info info;
961
Timo Teras4c563f72008-02-28 21:31:08 -0800962 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
963 sizeof(cb->args) - sizeof(cb->args[0]));
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 info.in_skb = cb->skb;
966 info.out_skb = skb;
967 info.nlmsg_seq = cb->nlh->nlmsg_seq;
968 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800969
970 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100971 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100972 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100973 u8 proto = 0;
974 int err;
975
Johannes Bergfceb6432017-04-12 14:34:07 +0200976 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
977 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100978 if (err < 0)
979 return err;
980
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100981 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200982 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
983 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100984 if (filter == NULL)
985 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100986 }
987
988 if (attrs[XFRMA_PROTO])
989 proto = nla_get_u8(attrs[XFRMA_PROTO]);
990
991 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200992 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800993 }
994
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800995 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 return skb->len;
998}
999
1000static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1001 struct xfrm_state *x, u32 seq)
1002{
1003 struct xfrm_dump_info info;
1004 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001005 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Thomas Graf7deb2262007-08-22 13:57:39 -07001007 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (!skb)
1009 return ERR_PTR(-ENOMEM);
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 info.in_skb = in_skb;
1012 info.out_skb = skb;
1013 info.nlmsg_seq = seq;
1014 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Mathias Krause864745d2012-09-13 11:41:26 +00001016 err = dump_one_state(x, 0, &info);
1017 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001019 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021
1022 return skb;
1023}
1024
Michal Kubecek21ee5432014-06-03 10:26:06 +02001025/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1026 * Must be called with RCU read lock.
1027 */
1028static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1029 u32 pid, unsigned int group)
1030{
1031 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1032
1033 if (nlsk)
1034 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1035 else
1036 return -1;
1037}
1038
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001039static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001040{
1041 return NLMSG_ALIGN(4)
1042 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001043 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1044 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1045 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001046}
1047
Alexey Dobriyane0710412010-01-23 13:37:10 +00001048static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001049 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001050{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001051 struct xfrmk_spdinfo si;
1052 struct xfrmu_spdinfo spc;
1053 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001054 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001055 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001056 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001057 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001058 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001059
Eric W. Biederman15e47302012-09-07 20:12:54 +00001060 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001061 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001062 return -EMSGSIZE;
1063
1064 f = nlmsg_data(nlh);
1065 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001066 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001067 spc.incnt = si.incnt;
1068 spc.outcnt = si.outcnt;
1069 spc.fwdcnt = si.fwdcnt;
1070 spc.inscnt = si.inscnt;
1071 spc.outscnt = si.outscnt;
1072 spc.fwdscnt = si.fwdscnt;
1073 sph.spdhcnt = si.spdhcnt;
1074 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001075
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001076 do {
1077 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1078
1079 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1080 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1081 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1082 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1083 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1084
David S. Miller1d1e34d2012-06-27 21:57:03 -07001085 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1086 if (!err)
1087 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001088 if (!err)
1089 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1090 if (!err)
1091 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001092 if (err) {
1093 nlmsg_cancel(skb, nlh);
1094 return err;
1095 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001096
Johannes Berg053c0952015-01-16 22:09:00 +01001097 nlmsg_end(skb, nlh);
1098 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001099}
1100
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001101static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1102 struct nlattr **attrs)
1103{
1104 struct net *net = sock_net(skb->sk);
1105 struct xfrmu_spdhthresh *thresh4 = NULL;
1106 struct xfrmu_spdhthresh *thresh6 = NULL;
1107
1108 /* selector prefixlen thresholds to hash policies */
1109 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1110 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1111
1112 if (nla_len(rta) < sizeof(*thresh4))
1113 return -EINVAL;
1114 thresh4 = nla_data(rta);
1115 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1116 return -EINVAL;
1117 }
1118 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1119 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1120
1121 if (nla_len(rta) < sizeof(*thresh6))
1122 return -EINVAL;
1123 thresh6 = nla_data(rta);
1124 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1125 return -EINVAL;
1126 }
1127
1128 if (thresh4 || thresh6) {
1129 write_seqlock(&net->xfrm.policy_hthresh.lock);
1130 if (thresh4) {
1131 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1132 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1133 }
1134 if (thresh6) {
1135 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1136 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1137 }
1138 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1139
1140 xfrm_policy_hash_rebuild(net);
1141 }
1142
1143 return 0;
1144}
1145
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001146static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001147 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001148{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001149 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001150 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001151 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001152 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001153 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001154 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001155
Thomas Graf7deb2262007-08-22 13:57:39 -07001156 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001157 if (r_skb == NULL)
1158 return -ENOMEM;
1159
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001160 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1161 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001162
Eric W. Biederman15e47302012-09-07 20:12:54 +00001163 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001164}
1165
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001166static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001167{
1168 return NLMSG_ALIGN(4)
1169 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1170 + nla_total_size(4); /* XFRMA_SAD_CNT */
1171}
1172
Alexey Dobriyane0710412010-01-23 13:37:10 +00001173static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001174 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001175{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001176 struct xfrmk_sadinfo si;
1177 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001178 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001179 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001180 u32 *f;
1181
Eric W. Biederman15e47302012-09-07 20:12:54 +00001182 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001183 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001184 return -EMSGSIZE;
1185
1186 f = nlmsg_data(nlh);
1187 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001188 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001189
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001190 sh.sadhmcnt = si.sadhmcnt;
1191 sh.sadhcnt = si.sadhcnt;
1192
David S. Miller1d1e34d2012-06-27 21:57:03 -07001193 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1194 if (!err)
1195 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1196 if (err) {
1197 nlmsg_cancel(skb, nlh);
1198 return err;
1199 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001200
Johannes Berg053c0952015-01-16 22:09:00 +01001201 nlmsg_end(skb, nlh);
1202 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001203}
1204
1205static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001206 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001207{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001208 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001209 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001210 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001211 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001212 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001213 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001214
Thomas Graf7deb2262007-08-22 13:57:39 -07001215 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001216 if (r_skb == NULL)
1217 return -ENOMEM;
1218
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001219 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1220 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001221
Eric W. Biederman15e47302012-09-07 20:12:54 +00001222 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001223}
1224
Christoph Hellwig22e70052007-01-02 15:22:30 -08001225static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001226 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001228 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001229 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 struct xfrm_state *x;
1231 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001232 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001234 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (x == NULL)
1236 goto out_noput;
1237
1238 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1239 if (IS_ERR(resp_skb)) {
1240 err = PTR_ERR(resp_skb);
1241 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001242 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244 xfrm_state_put(x);
1245out_noput:
1246 return err;
1247}
1248
Christoph Hellwig22e70052007-01-02 15:22:30 -08001249static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001250 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001252 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 struct xfrm_state *x;
1254 struct xfrm_userspi_info *p;
1255 struct sk_buff *resp_skb;
1256 xfrm_address_t *daddr;
1257 int family;
1258 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001259 u32 mark;
1260 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Thomas Graf7b67c852007-08-22 13:53:52 -07001262 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001263 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (err)
1265 goto out_noput;
1266
1267 family = p->info.family;
1268 daddr = &p->info.id.daddr;
1269
1270 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001271
1272 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001274 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001275 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 xfrm_state_put(x);
1277 x = NULL;
1278 }
1279 }
1280
1281 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001282 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 p->info.id.proto, daddr,
1284 &p->info.saddr, 1,
1285 family);
1286 err = -ENOENT;
1287 if (x == NULL)
1288 goto out_noput;
1289
Herbert Xu658b2192007-10-09 13:29:52 -07001290 err = xfrm_alloc_spi(x, p->min, p->max);
1291 if (err)
1292 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Herbert Xu658b2192007-10-09 13:29:52 -07001294 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (IS_ERR(resp_skb)) {
1296 err = PTR_ERR(resp_skb);
1297 goto out;
1298 }
1299
Eric W. Biederman15e47302012-09-07 20:12:54 +00001300 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302out:
1303 xfrm_state_put(x);
1304out_noput:
1305 return err;
1306}
1307
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001308static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
1310 switch (dir) {
1311 case XFRM_POLICY_IN:
1312 case XFRM_POLICY_OUT:
1313 case XFRM_POLICY_FWD:
1314 break;
1315
1316 default:
1317 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 return 0;
1321}
1322
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001323static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001324{
1325 switch (type) {
1326 case XFRM_POLICY_TYPE_MAIN:
1327#ifdef CONFIG_XFRM_SUB_POLICY
1328 case XFRM_POLICY_TYPE_SUB:
1329#endif
1330 break;
1331
1332 default:
1333 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001334 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001335
1336 return 0;
1337}
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1340{
Fan Due682adf02013-11-07 17:47:48 +08001341 int ret;
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 switch (p->share) {
1344 case XFRM_SHARE_ANY:
1345 case XFRM_SHARE_SESSION:
1346 case XFRM_SHARE_USER:
1347 case XFRM_SHARE_UNIQUE:
1348 break;
1349
1350 default:
1351 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 switch (p->action) {
1355 case XFRM_POLICY_ALLOW:
1356 case XFRM_POLICY_BLOCK:
1357 break;
1358
1359 default:
1360 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 switch (p->sel.family) {
1364 case AF_INET:
1365 break;
1366
1367 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001368#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 break;
1370#else
1371 return -EAFNOSUPPORT;
1372#endif
1373
1374 default:
1375 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Fan Due682adf02013-11-07 17:47:48 +08001378 ret = verify_policy_dir(p->dir);
1379 if (ret)
1380 return ret;
1381 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1382 return -EINVAL;
1383
1384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
Thomas Graf5424f322007-08-22 14:01:33 -07001387static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001388{
Thomas Graf5424f322007-08-22 14:01:33 -07001389 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001390 struct xfrm_user_sec_ctx *uctx;
1391
1392 if (!rt)
1393 return 0;
1394
Thomas Graf5424f322007-08-22 14:01:33 -07001395 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001396 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1400 int nr)
1401{
1402 int i;
1403
1404 xp->xfrm_nr = nr;
1405 for (i = 0; i < nr; i++, ut++) {
1406 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1407
1408 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1409 memcpy(&t->saddr, &ut->saddr,
1410 sizeof(xfrm_address_t));
1411 t->reqid = ut->reqid;
1412 t->mode = ut->mode;
1413 t->share = ut->share;
1414 t->optional = ut->optional;
1415 t->aalgos = ut->aalgos;
1416 t->ealgos = ut->ealgos;
1417 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001418 /* If all masks are ~0, then we allow all algorithms. */
1419 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001420 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422}
1423
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001424static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1425{
Steffen Klassert732706a2017-12-08 08:07:25 +01001426 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001427 int i;
1428
1429 if (nr > XFRM_MAX_DEPTH)
1430 return -EINVAL;
1431
Steffen Klassert732706a2017-12-08 08:07:25 +01001432 prev_family = family;
1433
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001434 for (i = 0; i < nr; i++) {
1435 /* We never validated the ut->family value, so many
1436 * applications simply leave it at zero. The check was
1437 * never made and ut->family was ignored because all
1438 * templates could be assumed to have the same family as
1439 * the policy itself. Now that we will have ipv4-in-ipv6
1440 * and ipv6-in-ipv4 tunnels, this is no longer true.
1441 */
1442 if (!ut[i].family)
1443 ut[i].family = family;
1444
Steffen Klassert732706a2017-12-08 08:07:25 +01001445 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1446 (ut[i].family != prev_family))
1447 return -EINVAL;
1448
1449 prev_family = ut[i].family;
1450
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001451 switch (ut[i].family) {
1452 case AF_INET:
1453 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001454#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001455 case AF_INET6:
1456 break;
1457#endif
1458 default:
1459 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001460 }
Cong Wang6a53b752017-11-27 11:15:16 -08001461
1462 switch (ut[i].id.proto) {
1463 case IPPROTO_AH:
1464 case IPPROTO_ESP:
1465 case IPPROTO_COMP:
1466#if IS_ENABLED(CONFIG_IPV6)
1467 case IPPROTO_ROUTING:
1468 case IPPROTO_DSTOPTS:
1469#endif
1470 case IPSEC_PROTO_ANY:
1471 break;
1472 default:
1473 return -EINVAL;
1474 }
1475
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001476 }
1477
1478 return 0;
1479}
1480
Thomas Graf5424f322007-08-22 14:01:33 -07001481static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
Thomas Graf5424f322007-08-22 14:01:33 -07001483 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 if (!rt) {
1486 pol->xfrm_nr = 0;
1487 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001488 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1489 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001490 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001492 err = validate_tmpl(nr, utmpl, pol->family);
1493 if (err)
1494 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Thomas Graf5424f322007-08-22 14:01:33 -07001496 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
1498 return 0;
1499}
1500
Thomas Graf5424f322007-08-22 14:01:33 -07001501static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001502{
Thomas Graf5424f322007-08-22 14:01:33 -07001503 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001504 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001505 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001506 int err;
1507
1508 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001509 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001510 type = upt->type;
1511 }
1512
1513 err = verify_policy_type(type);
1514 if (err)
1515 return err;
1516
1517 *tp = type;
1518 return 0;
1519}
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1522{
1523 xp->priority = p->priority;
1524 xp->index = p->index;
1525 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1526 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1527 xp->action = p->action;
1528 xp->flags = p->flags;
1529 xp->family = p->sel.family;
1530 /* XXX xp->share = p->share; */
1531}
1532
1533static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1534{
Mathias Krause7b789832012-09-19 11:33:40 +00001535 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1537 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1538 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1539 p->priority = xp->priority;
1540 p->index = xp->index;
1541 p->sel.family = xp->family;
1542 p->dir = dir;
1543 p->action = xp->action;
1544 p->flags = xp->flags;
1545 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1546}
1547
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001548static 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 -07001549{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001550 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 int err;
1552
1553 if (!xp) {
1554 *errp = -ENOMEM;
1555 return NULL;
1556 }
1557
1558 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001559
Thomas Graf35a7aa02007-08-22 14:00:40 -07001560 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001561 if (err)
1562 goto error;
1563
Thomas Graf35a7aa02007-08-22 14:00:40 -07001564 if (!(err = copy_from_user_tmpl(xp, attrs)))
1565 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001566 if (err)
1567 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001569 xfrm_mark_get(attrs, &xp->mark);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001572 error:
1573 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001574 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001575 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001576 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
Christoph Hellwig22e70052007-01-02 15:22:30 -08001579static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001580 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001582 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001583 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001585 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 int err;
1587 int excl;
1588
1589 err = verify_newpolicy_info(p);
1590 if (err)
1591 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001592 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001593 if (err)
1594 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001596 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (!xp)
1598 return err;
1599
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001600 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001601 * Aha! this is anti-netlink really i.e more pfkey derived
1602 * in netlink excl is a flag and you wouldnt need
1603 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1605 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001606 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001609 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 kfree(xp);
1611 return err;
1612 }
1613
Herbert Xuf60f6b82005-06-18 22:44:37 -07001614 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001615 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001616 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001617 km_policy_notify(xp, p->dir, &c);
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 xfrm_pol_put(xp);
1620
1621 return 0;
1622}
1623
1624static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1625{
1626 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1627 int i;
1628
1629 if (xp->xfrm_nr == 0)
1630 return 0;
1631
1632 for (i = 0; i < xp->xfrm_nr; i++) {
1633 struct xfrm_user_tmpl *up = &vec[i];
1634 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1635
Mathias Krause1f868402012-09-19 11:33:41 +00001636 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001638 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1640 up->reqid = kp->reqid;
1641 up->mode = kp->mode;
1642 up->share = kp->share;
1643 up->optional = kp->optional;
1644 up->aalgos = kp->aalgos;
1645 up->ealgos = kp->ealgos;
1646 up->calgos = kp->calgos;
1647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Thomas Grafc0144be2007-08-22 13:55:43 -07001649 return nla_put(skb, XFRMA_TMPL,
1650 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001651}
1652
Serge Hallyn0d681622006-07-24 23:30:44 -07001653static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1654{
1655 if (x->security) {
1656 return copy_sec_ctx(x->security, skb);
1657 }
1658 return 0;
1659}
1660
1661static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1662{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001663 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001664 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001665 return 0;
1666}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001667static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001668{
1669#ifdef CONFIG_XFRM_SUB_POLICY
1670 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1671#else
1672 return 0;
1673#endif
1674}
Serge Hallyn0d681622006-07-24 23:30:44 -07001675
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001676#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001677static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001678{
Thomas Grafc0144be2007-08-22 13:55:43 -07001679 struct xfrm_userpolicy_type upt = {
1680 .type = type,
1681 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001682
Thomas Grafc0144be2007-08-22 13:55:43 -07001683 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001684}
1685
1686#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001687static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001688{
1689 return 0;
1690}
1691#endif
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1694{
1695 struct xfrm_dump_info *sp = ptr;
1696 struct xfrm_userpolicy_info *p;
1697 struct sk_buff *in_skb = sp->in_skb;
1698 struct sk_buff *skb = sp->out_skb;
1699 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001700 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Eric W. Biederman15e47302012-09-07 20:12:54 +00001702 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001703 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1704 if (nlh == NULL)
1705 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Thomas Graf7b67c852007-08-22 13:53:52 -07001707 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001709 err = copy_to_user_tmpl(xp, skb);
1710 if (!err)
1711 err = copy_to_user_sec_ctx(xp, skb);
1712 if (!err)
1713 err = copy_to_user_policy_type(xp->type, skb);
1714 if (!err)
1715 err = xfrm_mark_put(skb, &xp->mark);
1716 if (err) {
1717 nlmsg_cancel(skb, nlh);
1718 return err;
1719 }
Thomas Graf98250692007-08-22 12:47:26 -07001720 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
Timo Teras4c563f72008-02-28 21:31:08 -08001724static int xfrm_dump_policy_done(struct netlink_callback *cb)
1725{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001726 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001727 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001728
Fan Du283bc9f2013-11-07 17:47:50 +08001729 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001730 return 0;
1731}
1732
Herbert Xu1137b5e2017-10-19 20:51:10 +08001733static int xfrm_dump_policy_start(struct netlink_callback *cb)
1734{
1735 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1736
1737 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1738
1739 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1740 return 0;
1741}
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1744{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001745 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001746 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 struct xfrm_dump_info info;
1748
1749 info.in_skb = cb->skb;
1750 info.out_skb = skb;
1751 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1752 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001753
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001754 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 return skb->len;
1757}
1758
1759static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1760 struct xfrm_policy *xp,
1761 int dir, u32 seq)
1762{
1763 struct xfrm_dump_info info;
1764 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001765 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Thomas Graf7deb2262007-08-22 13:57:39 -07001767 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (!skb)
1769 return ERR_PTR(-ENOMEM);
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 info.in_skb = in_skb;
1772 info.out_skb = skb;
1773 info.nlmsg_seq = seq;
1774 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Mathias Krausec2546372012-09-14 09:58:32 +00001776 err = dump_one_policy(xp, dir, 0, &info);
1777 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001779 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
1782 return skb;
1783}
1784
Christoph Hellwig22e70052007-01-02 15:22:30 -08001785static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001786 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001788 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 struct xfrm_policy *xp;
1790 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001791 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001793 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001795 struct xfrm_mark m;
1796 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Thomas Graf7b67c852007-08-22 13:53:52 -07001798 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1800
Thomas Graf35a7aa02007-08-22 14:00:40 -07001801 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001802 if (err)
1803 return err;
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 err = verify_policy_dir(p->dir);
1806 if (err)
1807 return err;
1808
1809 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001810 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001811 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001812 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001813 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001814
Thomas Graf35a7aa02007-08-22 14:00:40 -07001815 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001816 if (err)
1817 return err;
1818
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001819 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001820 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001821 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001822
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001823 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001824 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001825 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001826 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001827 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001828 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001829 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (xp == NULL)
1832 return -ENOENT;
1833
1834 if (!delete) {
1835 struct sk_buff *resp_skb;
1836
1837 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1838 if (IS_ERR(resp_skb)) {
1839 err = PTR_ERR(resp_skb);
1840 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001841 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001842 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001844 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001845 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001846
1847 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001848 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001849
Herbert Xue7443892005-06-18 22:44:18 -07001850 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001851 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001852 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001853 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001854 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001857out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001858 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 return err;
1860}
1861
Christoph Hellwig22e70052007-01-02 15:22:30 -08001862static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001863 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001865 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001866 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001867 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001868 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Tetsuo Handa2e710292014-04-22 21:48:30 +09001870 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001871 if (err) {
1872 if (err == -ESRCH) /* empty table */
1873 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001874 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001875 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001876 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001877 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001878 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001879 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001880 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001881 km_state_notify(NULL, &c);
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return 0;
1884}
1885
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001886static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001887{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001888 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001889 xfrm_replay_state_esn_len(x->replay_esn) :
1890 sizeof(struct xfrm_replay_state);
1891
Thomas Graf7deb2262007-08-22 13:57:39 -07001892 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001893 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001894 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001895 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001896 + nla_total_size(4) /* XFRM_AE_RTHR */
1897 + nla_total_size(4); /* XFRM_AE_ETHR */
1898}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001899
David S. Miller214e0052011-02-24 00:02:38 -05001900static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001901{
1902 struct xfrm_aevent_id *id;
1903 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001904 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001905
Eric W. Biederman15e47302012-09-07 20:12:54 +00001906 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001907 if (nlh == NULL)
1908 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001909
Thomas Graf7b67c852007-08-22 13:53:52 -07001910 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001911 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001912 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001913 id->sa_id.spi = x->id.spi;
1914 id->sa_id.family = x->props.family;
1915 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001916 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001917 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001918 id->flags = c->data.aevent;
1919
David S. Millerd0fde792012-03-29 04:02:26 -04001920 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001921 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1922 xfrm_replay_state_esn_len(x->replay_esn),
1923 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001924 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001925 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1926 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001927 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001928 if (err)
1929 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001930 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1931 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001932 if (err)
1933 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001934
David S. Miller1d1e34d2012-06-27 21:57:03 -07001935 if (id->flags & XFRM_AE_RTHR) {
1936 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1937 if (err)
1938 goto out_cancel;
1939 }
1940 if (id->flags & XFRM_AE_ETHR) {
1941 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1942 x->replay_maxage * 10 / HZ);
1943 if (err)
1944 goto out_cancel;
1945 }
1946 err = xfrm_mark_put(skb, &x->mark);
1947 if (err)
1948 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001949
Johannes Berg053c0952015-01-16 22:09:00 +01001950 nlmsg_end(skb, nlh);
1951 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952
David S. Miller1d1e34d2012-06-27 21:57:03 -07001953out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001954 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001955 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001956}
1957
Christoph Hellwig22e70052007-01-02 15:22:30 -08001958static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001959 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001960{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001961 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001962 struct xfrm_state *x;
1963 struct sk_buff *r_skb;
1964 int err;
1965 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001966 u32 mark;
1967 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001968 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001969 struct xfrm_usersa_id *id = &p->sa_id;
1970
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001971 mark = xfrm_mark_get(attrs, &m);
1972
1973 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001974 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001975 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001976
1977 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1978 if (r_skb == NULL) {
1979 xfrm_state_put(x);
1980 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001981 }
1982
1983 /*
1984 * XXX: is this lock really needed - none of the other
1985 * gets lock (the concern is things getting updated
1986 * while we are still reading) - jhs
1987 */
1988 spin_lock_bh(&x->lock);
1989 c.data.aevent = p->flags;
1990 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001991 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001992
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001993 err = build_aevent(r_skb, x, &c);
1994 BUG_ON(err < 0);
1995
Eric W. Biederman15e47302012-09-07 20:12:54 +00001996 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001997 spin_unlock_bh(&x->lock);
1998 xfrm_state_put(x);
1999 return err;
2000}
2001
Christoph Hellwig22e70052007-01-02 15:22:30 -08002002static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002003 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002004{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002005 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002006 struct xfrm_state *x;
2007 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002008 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002009 u32 mark = 0;
2010 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002011 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002012 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002013 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002014 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002015 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2016 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002017
Michael Rossberg4e077232015-09-29 11:25:08 +02002018 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002019 return err;
2020
2021 /* pedantic mode - thou shalt sayeth replaceth */
2022 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2023 return err;
2024
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002025 mark = xfrm_mark_get(attrs, &m);
2026
2027 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 -08002028 if (x == NULL)
2029 return -ESRCH;
2030
2031 if (x->km.state != XFRM_STATE_VALID)
2032 goto out;
2033
Steffen Klassert4479ff72013-09-09 09:39:01 +02002034 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002035 if (err)
2036 goto out;
2037
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002038 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002039 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002040 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002041
2042 c.event = nlh->nlmsg_type;
2043 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002044 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002045 c.data.aevent = XFRM_AE_CU;
2046 km_state_notify(x, &c);
2047 err = 0;
2048out:
2049 xfrm_state_put(x);
2050 return err;
2051}
2052
Christoph Hellwig22e70052007-01-02 15:22:30 -08002053static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002054 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002056 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002057 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002058 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002059 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002060
Thomas Graf35a7aa02007-08-22 14:00:40 -07002061 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002062 if (err)
2063 return err;
2064
Tetsuo Handa2e710292014-04-22 21:48:30 +09002065 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002066 if (err) {
2067 if (err == -ESRCH) /* empty table */
2068 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002069 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002070 }
2071
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002072 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002073 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002074 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002075 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002076 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002077 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return 0;
2079}
2080
Christoph Hellwig22e70052007-01-02 15:22:30 -08002081static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002082 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002083{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002084 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002085 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002086 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002087 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002088 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002089 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002090 struct xfrm_mark m;
2091 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002092
Thomas Graf35a7aa02007-08-22 14:00:40 -07002093 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002094 if (err)
2095 return err;
2096
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002097 err = verify_policy_dir(p->dir);
2098 if (err)
2099 return err;
2100
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002101 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002102 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002103 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002104 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002105 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002106
Thomas Graf35a7aa02007-08-22 14:00:40 -07002107 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002108 if (err)
2109 return err;
2110
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002111 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002112 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002113 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002114
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002115 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002116 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002117 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002118 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002119 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002120 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002121 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002122 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002123 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002124 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002125
Timo Teräsea2dea92010-03-31 00:17:05 +00002126 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002127 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002128
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002129 err = 0;
2130 if (up->hard) {
2131 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002132 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002133 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002134 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002135
2136out:
2137 xfrm_pol_put(xp);
2138 return err;
2139}
2140
Christoph Hellwig22e70052007-01-02 15:22:30 -08002141static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002142 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002143{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002144 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002145 struct xfrm_state *x;
2146 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002147 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002148 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002149 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002150 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002151
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002152 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 -08002153
David S. Miller3a765aa2007-02-26 14:52:21 -08002154 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002155 if (x == NULL)
2156 return err;
2157
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002158 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002159 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002160 if (x->km.state != XFRM_STATE_VALID)
2161 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002162 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002163
Joy Latten161a09e2006-11-27 13:11:54 -06002164 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002165 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002166 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002167 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002168 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002169out:
2170 spin_unlock_bh(&x->lock);
2171 xfrm_state_put(x);
2172 return err;
2173}
2174
Christoph Hellwig22e70052007-01-02 15:22:30 -08002175static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002176 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002177{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002178 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002179 struct xfrm_policy *xp;
2180 struct xfrm_user_tmpl *ut;
2181 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002182 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002183 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002184
Thomas Graf7b67c852007-08-22 13:53:52 -07002185 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002186 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002187 int err = -ENOMEM;
2188
2189 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002190 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002191
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002192 xfrm_mark_get(attrs, &mark);
2193
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002194 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002195 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002196 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002197
2198 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002199 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002200 if (!xp)
2201 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002202
2203 memcpy(&x->id, &ua->id, sizeof(ua->id));
2204 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2205 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002206 xp->mark.m = x->mark.m = mark.m;
2207 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002208 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002209 /* extract the templates and for each call km_key */
2210 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2211 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2212 memcpy(&x->id, &t->id, sizeof(x->id));
2213 x->props.mode = t->mode;
2214 x->props.reqid = t->reqid;
2215 x->props.family = ut->family;
2216 t->aalgos = ua->aalgos;
2217 t->ealgos = ua->ealgos;
2218 t->calgos = ua->calgos;
2219 err = km_query(x, t, xp);
2220
2221 }
2222
2223 kfree(x);
2224 kfree(xp);
2225
2226 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002227
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002228free_state:
2229 kfree(x);
2230nomem:
2231 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002232}
2233
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002234#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002235static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002236 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002237 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002238{
Thomas Graf5424f322007-08-22 14:01:33 -07002239 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002240 struct xfrm_user_migrate *um;
2241 int i, num_migrate;
2242
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002243 if (k != NULL) {
2244 struct xfrm_user_kmaddress *uk;
2245
2246 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2247 memcpy(&k->local, &uk->local, sizeof(k->local));
2248 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2249 k->family = uk->family;
2250 k->reserved = uk->reserved;
2251 }
2252
Thomas Graf5424f322007-08-22 14:01:33 -07002253 um = nla_data(rt);
2254 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002255
2256 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2257 return -EINVAL;
2258
2259 for (i = 0; i < num_migrate; i++, um++, ma++) {
2260 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2261 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2262 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2263 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2264
2265 ma->proto = um->proto;
2266 ma->mode = um->mode;
2267 ma->reqid = um->reqid;
2268
2269 ma->old_family = um->old_family;
2270 ma->new_family = um->new_family;
2271 }
2272
2273 *num = i;
2274 return 0;
2275}
2276
2277static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002278 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002279{
Thomas Graf7b67c852007-08-22 13:53:52 -07002280 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002281 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002282 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283 u8 type;
2284 int err;
2285 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002286 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002287 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002288
Thomas Graf35a7aa02007-08-22 14:00:40 -07002289 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002290 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002291
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002292 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2293
Thomas Graf5424f322007-08-22 14:01:33 -07002294 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002295 if (err)
2296 return err;
2297
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002298 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002299 if (err)
2300 return err;
2301
2302 if (!n)
2303 return 0;
2304
Antony Antony4ab47d42017-06-06 12:12:13 +02002305 if (attrs[XFRMA_ENCAP]) {
2306 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2307 sizeof(*encap), GFP_KERNEL);
2308 if (!encap)
2309 return 0;
2310 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002311
Antony Antony4ab47d42017-06-06 12:12:13 +02002312 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2313
2314 kfree(encap);
2315
2316 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002317}
2318#else
2319static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002320 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002321{
2322 return -ENOPROTOOPT;
2323}
2324#endif
2325
2326#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002327static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328{
2329 struct xfrm_user_migrate um;
2330
2331 memset(&um, 0, sizeof(um));
2332 um.proto = m->proto;
2333 um.mode = m->mode;
2334 um.reqid = m->reqid;
2335 um.old_family = m->old_family;
2336 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2337 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2338 um.new_family = m->new_family;
2339 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2340 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2341
Thomas Grafc0144be2007-08-22 13:55:43 -07002342 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343}
2344
David S. Miller183cad12011-02-24 00:28:01 -05002345static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002346{
2347 struct xfrm_user_kmaddress uk;
2348
2349 memset(&uk, 0, sizeof(uk));
2350 uk.family = k->family;
2351 uk.reserved = k->reserved;
2352 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002353 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002354
2355 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2356}
2357
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002358static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2359 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002360{
2361 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002362 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002363 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002364 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2365 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002366}
2367
David S. Miller183cad12011-02-24 00:28:01 -05002368static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2369 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002370 const struct xfrm_selector *sel,
2371 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002372{
David S. Miller183cad12011-02-24 00:28:01 -05002373 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002374 struct xfrm_userpolicy_id *pol_id;
2375 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002376 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002377
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002378 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2379 if (nlh == NULL)
2380 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002381
Thomas Graf7b67c852007-08-22 13:53:52 -07002382 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002383 /* copy data from selector, dir, and type to the pol_id */
2384 memset(pol_id, 0, sizeof(*pol_id));
2385 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2386 pol_id->dir = dir;
2387
David S. Miller1d1e34d2012-06-27 21:57:03 -07002388 if (k != NULL) {
2389 err = copy_to_user_kmaddress(k, skb);
2390 if (err)
2391 goto out_cancel;
2392 }
Antony Antony8bafd732017-06-06 12:12:14 +02002393 if (encap) {
2394 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2395 if (err)
2396 goto out_cancel;
2397 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002398 err = copy_to_user_policy_type(type, skb);
2399 if (err)
2400 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002401 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002402 err = copy_to_user_migrate(mp, skb);
2403 if (err)
2404 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002405 }
2406
Johannes Berg053c0952015-01-16 22:09:00 +01002407 nlmsg_end(skb, nlh);
2408 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002409
2410out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002411 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002412 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002413}
2414
David S. Miller183cad12011-02-24 00:28:01 -05002415static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2416 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002417 const struct xfrm_kmaddress *k,
2418 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002419{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002420 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002421 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002422 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002423
Antony Antony8bafd732017-06-06 12:12:14 +02002424 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2425 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002426 if (skb == NULL)
2427 return -ENOMEM;
2428
2429 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002430 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2431 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002432
Michal Kubecek21ee5432014-06-03 10:26:06 +02002433 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002434}
2435#else
David S. Miller183cad12011-02-24 00:28:01 -05002436static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2437 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002438 const struct xfrm_kmaddress *k,
2439 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002440{
2441 return -ENOPROTOOPT;
2442}
2443#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002444
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002445#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002446
2447static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002448 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002449 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2450 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2451 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2452 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2453 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2454 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002455 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002456 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002457 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002458 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002459 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002460 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002461 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002462 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2463 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002464 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002465 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002466 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002467 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002468 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469};
2470
Thomas Graf492b5582005-05-03 14:26:40 -07002471#undef XMSGSIZE
2472
Thomas Grafcf5cb792007-08-22 13:59:04 -07002473static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002474 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2475 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2476 [XFRMA_LASTUSED] = { .type = NLA_U64},
2477 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002478 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002479 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2480 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2481 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2482 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2483 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2484 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2485 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2486 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2487 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2488 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2489 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2490 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2491 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2492 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002493 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002494 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002495 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002496 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002497 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002498 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002499 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002500 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Michal Kubeceke7191352017-11-29 18:23:56 +01002501 [XFRMA_OUTPUT_MARK] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002502};
2503
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002504static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2505 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2506 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2507};
2508
Mathias Krause05600a72013-02-24 14:10:27 +01002509static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002510 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002511 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002513 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002514 const struct nla_policy *nla_pol;
2515 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002516} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2517 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2518 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2519 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002520 .dump = xfrm_dump_sa,
2521 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002522 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2523 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2524 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002525 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002526 .dump = xfrm_dump_policy,
2527 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002528 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002529 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002530 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002531 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2532 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002533 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002534 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2535 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002536 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2537 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002538 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002539 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002540 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2541 .nla_pol = xfrma_spd_policy,
2542 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002543 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544};
2545
Johannes Berg2d4bc932017-04-12 14:34:04 +02002546static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2547 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002549 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002550 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002551 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002552 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Fan Du74005992015-01-27 17:00:29 +08002554#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002555 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002556 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002557#endif
2558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002561 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563 type -= XFRM_MSG_BASE;
2564 link = &xfrm_dispatch[type];
2565
2566 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002567 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002568 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Thomas Graf492b5582005-05-03 14:26:40 -07002570 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2571 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002572 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002574 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002576 {
2577 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002578 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002579 .dump = link->dump,
2580 .done = link->done,
2581 };
2582 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 }
2585
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002586 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2587 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002588 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002589 if (err < 0)
2590 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002593 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Thomas Graf5424f322007-08-22 14:01:33 -07002595 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596}
2597
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002598static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Fan Du283bc9f2013-11-07 17:47:50 +08002600 struct net *net = sock_net(skb->sk);
2601
2602 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002603 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002604 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002607static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002608{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002609 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2610 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002611}
2612
David S. Miller214e0052011-02-24 00:02:38 -05002613static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
2615 struct xfrm_user_expire *ue;
2616 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002617 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Eric W. Biederman15e47302012-09-07 20:12:54 +00002619 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002620 if (nlh == NULL)
2621 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Thomas Graf7b67c852007-08-22 13:53:52 -07002623 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002625 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002626 /* clear the padding bytes */
2627 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
David S. Miller1d1e34d2012-06-27 21:57:03 -07002629 err = xfrm_mark_put(skb, &x->mark);
2630 if (err)
2631 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002632
Johannes Berg053c0952015-01-16 22:09:00 +01002633 nlmsg_end(skb, nlh);
2634 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
David S. Miller214e0052011-02-24 00:02:38 -05002637static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002639 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 struct sk_buff *skb;
2641
Thomas Graf7deb2262007-08-22 13:57:39 -07002642 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 if (skb == NULL)
2644 return -ENOMEM;
2645
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002646 if (build_expire(skb, x, c) < 0) {
2647 kfree_skb(skb);
2648 return -EMSGSIZE;
2649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Michal Kubecek21ee5432014-06-03 10:26:06 +02002651 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
2653
David S. Miller214e0052011-02-24 00:02:38 -05002654static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002655{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002656 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002657 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002658 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002659
Steffen Klassertd8647b72011-03-08 00:10:27 +00002660 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002661 if (skb == NULL)
2662 return -ENOMEM;
2663
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002664 err = build_aevent(skb, x, c);
2665 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002666
Michal Kubecek21ee5432014-06-03 10:26:06 +02002667 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002668}
2669
David S. Miller214e0052011-02-24 00:02:38 -05002670static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002671{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002672 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002673 struct xfrm_usersa_flush *p;
2674 struct nlmsghdr *nlh;
2675 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002676 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002677
Thomas Graf7deb2262007-08-22 13:57:39 -07002678 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002679 if (skb == NULL)
2680 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002681
Eric W. Biederman15e47302012-09-07 20:12:54 +00002682 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002683 if (nlh == NULL) {
2684 kfree_skb(skb);
2685 return -EMSGSIZE;
2686 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002687
Thomas Graf7b67c852007-08-22 13:53:52 -07002688 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002689 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002690
Thomas Graf98250692007-08-22 12:47:26 -07002691 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692
Michal Kubecek21ee5432014-06-03 10:26:06 +02002693 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002694}
2695
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002696static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002697{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002698 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002699 if (x->aead)
2700 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002701 if (x->aalg) {
2702 l += nla_total_size(sizeof(struct xfrm_algo) +
2703 (x->aalg->alg_key_len + 7) / 8);
2704 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2705 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002706 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002707 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002708 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002709 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002710 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002711 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002712 if (x->tfcpad)
2713 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002714 if (x->replay_esn)
2715 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002716 else
2717 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002718 if (x->security)
2719 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2720 x->security->ctx_len);
2721 if (x->coaddr)
2722 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002723 if (x->props.extra_flags)
2724 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002725 if (x->xso.dev)
2726 l += nla_total_size(sizeof(x->xso));
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002727 if (x->props.output_mark)
2728 l += nla_total_size(sizeof(x->props.output_mark));
Herbert Xu68325d32007-10-09 13:30:57 -07002729
Herbert Xud26f3982007-11-13 21:47:08 -08002730 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002731 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002732
2733 return l;
2734}
2735
David S. Miller214e0052011-02-24 00:02:38 -05002736static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002737{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002738 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002739 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002740 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002741 struct nlmsghdr *nlh;
2742 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002743 unsigned int len = xfrm_sa_len(x);
2744 unsigned int headlen;
2745 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002746
2747 headlen = sizeof(*p);
2748 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002749 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002750 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002751 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002752 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002753 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002754
Thomas Graf7deb2262007-08-22 13:57:39 -07002755 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756 if (skb == NULL)
2757 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002758
Eric W. Biederman15e47302012-09-07 20:12:54 +00002759 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002760 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002761 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002762 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002763
Thomas Graf7b67c852007-08-22 13:53:52 -07002764 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002765 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002766 struct nlattr *attr;
2767
Thomas Graf7b67c852007-08-22 13:53:52 -07002768 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002769 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002770 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2771 id->spi = x->id.spi;
2772 id->family = x->props.family;
2773 id->proto = x->id.proto;
2774
Thomas Grafc0144be2007-08-22 13:55:43 -07002775 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002776 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002777 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002778 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002779
2780 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002781 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002782 err = copy_to_user_state_extra(x, p, skb);
2783 if (err)
2784 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002785
Thomas Graf98250692007-08-22 12:47:26 -07002786 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002787
Michal Kubecek21ee5432014-06-03 10:26:06 +02002788 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002789
David S. Miller1d1e34d2012-06-27 21:57:03 -07002790out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002792 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002793}
2794
David S. Miller214e0052011-02-24 00:02:38 -05002795static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002796{
2797
2798 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002799 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002801 case XFRM_MSG_NEWAE:
2802 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002803 case XFRM_MSG_DELSA:
2804 case XFRM_MSG_UPDSA:
2805 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002807 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808 return xfrm_notify_sa_flush(c);
2809 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002810 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2811 c->event);
2812 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002813 }
2814
2815 return 0;
2816
2817}
2818
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002819static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2820 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002821{
2822 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2823 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002824 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002825 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2826 + userpolicy_type_attrsize();
2827}
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002830 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002832 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 struct xfrm_user_acquire *ua;
2834 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002837 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2838 if (nlh == NULL)
2839 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Thomas Graf7b67c852007-08-22 13:53:52 -07002841 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 memcpy(&ua->id, &x->id, sizeof(ua->id));
2843 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2844 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002845 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 ua->aalgos = xt->aalgos;
2847 ua->ealgos = xt->ealgos;
2848 ua->calgos = xt->calgos;
2849 ua->seq = x->km.seq = seq;
2850
David S. Miller1d1e34d2012-06-27 21:57:03 -07002851 err = copy_to_user_tmpl(xp, skb);
2852 if (!err)
2853 err = copy_to_user_state_sec_ctx(x, skb);
2854 if (!err)
2855 err = copy_to_user_policy_type(xp->type, skb);
2856 if (!err)
2857 err = xfrm_mark_put(skb, &xp->mark);
2858 if (err) {
2859 nlmsg_cancel(skb, nlh);
2860 return err;
2861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Johannes Berg053c0952015-01-16 22:09:00 +01002863 nlmsg_end(skb, nlh);
2864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865}
2866
2867static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002868 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002870 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002872 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Thomas Graf7deb2262007-08-22 13:57:39 -07002874 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (skb == NULL)
2876 return -ENOMEM;
2877
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002878 err = build_acquire(skb, x, xt, xp);
2879 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Michal Kubecek21ee5432014-06-03 10:26:06 +02002881 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
2883
2884/* User gives us xfrm_user_policy_info followed by an array of 0
2885 * or more templates.
2886 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002887static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 u8 *data, int len, int *dir)
2889{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002890 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2892 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2893 struct xfrm_policy *xp;
2894 int nr;
2895
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002896 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 case AF_INET:
2898 if (opt != IP_XFRM_POLICY) {
2899 *dir = -EOPNOTSUPP;
2900 return NULL;
2901 }
2902 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002903#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 case AF_INET6:
2905 if (opt != IPV6_XFRM_POLICY) {
2906 *dir = -EOPNOTSUPP;
2907 return NULL;
2908 }
2909 break;
2910#endif
2911 default:
2912 *dir = -EINVAL;
2913 return NULL;
2914 }
2915
2916 *dir = -EINVAL;
2917
2918 if (len < sizeof(*p) ||
2919 verify_newpolicy_info(p))
2920 return NULL;
2921
2922 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002923 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 return NULL;
2925
Herbert Xua4f1bac2005-07-26 15:43:17 -07002926 if (p->dir > XFRM_POLICY_OUT)
2927 return NULL;
2928
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002929 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (xp == NULL) {
2931 *dir = -ENOBUFS;
2932 return NULL;
2933 }
2934
2935 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002936 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 copy_templates(xp, ut, nr);
2938
2939 *dir = p->dir;
2940
2941 return xp;
2942}
2943
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002944static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002945{
2946 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2947 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2948 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002949 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002950 + userpolicy_type_attrsize();
2951}
2952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002954 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
2956 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002957 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002958 struct nlmsghdr *nlh;
2959 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Eric W. Biederman15e47302012-09-07 20:12:54 +00002961 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002962 if (nlh == NULL)
2963 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Thomas Graf7b67c852007-08-22 13:53:52 -07002965 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002967 err = copy_to_user_tmpl(xp, skb);
2968 if (!err)
2969 err = copy_to_user_sec_ctx(xp, skb);
2970 if (!err)
2971 err = copy_to_user_policy_type(xp->type, skb);
2972 if (!err)
2973 err = xfrm_mark_put(skb, &xp->mark);
2974 if (err) {
2975 nlmsg_cancel(skb, nlh);
2976 return err;
2977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 upe->hard = !!hard;
2979
Johannes Berg053c0952015-01-16 22:09:00 +01002980 nlmsg_end(skb, nlh);
2981 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982}
2983
David S. Miller214e0052011-02-24 00:02:38 -05002984static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002986 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002988 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Thomas Graf7deb2262007-08-22 13:57:39 -07002990 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (skb == NULL)
2992 return -ENOMEM;
2993
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002994 err = build_polexpire(skb, xp, dir, c);
2995 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Michal Kubecek21ee5432014-06-03 10:26:06 +02002997 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
David S. Miller214e0052011-02-24 00:02:38 -05003000static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003001{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003002 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003003 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003004 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003005 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003006 struct nlmsghdr *nlh;
3007 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003008 unsigned int headlen;
3009 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003010
3011 headlen = sizeof(*p);
3012 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003013 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003014 headlen = sizeof(*id);
3015 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003016 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003017 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003018 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003019
Thomas Graf7deb2262007-08-22 13:57:39 -07003020 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003021 if (skb == NULL)
3022 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003023
Eric W. Biederman15e47302012-09-07 20:12:54 +00003024 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003025 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003026 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003027 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003028
Thomas Graf7b67c852007-08-22 13:53:52 -07003029 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003030 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003031 struct nlattr *attr;
3032
Thomas Graf7b67c852007-08-22 13:53:52 -07003033 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003034 memset(id, 0, sizeof(*id));
3035 id->dir = dir;
3036 if (c->data.byid)
3037 id->index = xp->index;
3038 else
3039 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3040
Thomas Grafc0144be2007-08-22 13:55:43 -07003041 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003042 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003043 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003044 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003045
3046 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003047 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003048
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003049 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003050 err = copy_to_user_tmpl(xp, skb);
3051 if (!err)
3052 err = copy_to_user_policy_type(xp->type, skb);
3053 if (!err)
3054 err = xfrm_mark_put(skb, &xp->mark);
3055 if (err)
3056 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003057
Thomas Graf98250692007-08-22 12:47:26 -07003058 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003059
Michal Kubecek21ee5432014-06-03 10:26:06 +02003060 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003061
David S. Miller1d1e34d2012-06-27 21:57:03 -07003062out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003063 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003064 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003065}
3066
David S. Miller214e0052011-02-24 00:02:38 -05003067static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003068{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003069 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003070 struct nlmsghdr *nlh;
3071 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003072 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003073
Thomas Graf7deb2262007-08-22 13:57:39 -07003074 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003075 if (skb == NULL)
3076 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003077
Eric W. Biederman15e47302012-09-07 20:12:54 +00003078 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003079 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003080 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003081 goto out_free_skb;
3082 err = copy_to_user_policy_type(c->data.type, skb);
3083 if (err)
3084 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003085
Thomas Graf98250692007-08-22 12:47:26 -07003086 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003087
Michal Kubecek21ee5432014-06-03 10:26:06 +02003088 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003089
David S. Miller1d1e34d2012-06-27 21:57:03 -07003090out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003091 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003092 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003093}
3094
David S. Miller214e0052011-02-24 00:02:38 -05003095static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003096{
3097
3098 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003099 case XFRM_MSG_NEWPOLICY:
3100 case XFRM_MSG_UPDPOLICY:
3101 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003102 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003103 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003104 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003105 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003106 return xfrm_exp_policy_notify(xp, dir, c);
3107 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003108 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3109 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003110 }
3111
3112 return 0;
3113
3114}
3115
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003116static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003117{
3118 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3119}
3120
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003121static int build_report(struct sk_buff *skb, u8 proto,
3122 struct xfrm_selector *sel, xfrm_address_t *addr)
3123{
3124 struct xfrm_user_report *ur;
3125 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003126
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003127 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3128 if (nlh == NULL)
3129 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003130
Thomas Graf7b67c852007-08-22 13:53:52 -07003131 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003132 ur->proto = proto;
3133 memcpy(&ur->sel, sel, sizeof(ur->sel));
3134
David S. Miller1d1e34d2012-06-27 21:57:03 -07003135 if (addr) {
3136 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3137 if (err) {
3138 nlmsg_cancel(skb, nlh);
3139 return err;
3140 }
3141 }
Johannes Berg053c0952015-01-16 22:09:00 +01003142 nlmsg_end(skb, nlh);
3143 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003144}
3145
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003146static int xfrm_send_report(struct net *net, u8 proto,
3147 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003148{
3149 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003150 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003151
Thomas Graf7deb2262007-08-22 13:57:39 -07003152 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003153 if (skb == NULL)
3154 return -ENOMEM;
3155
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003156 err = build_report(skb, proto, sel, addr);
3157 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003158
Michal Kubecek21ee5432014-06-03 10:26:06 +02003159 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003160}
3161
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003162static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003163{
3164 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3165}
3166
3167static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3168 xfrm_address_t *new_saddr, __be16 new_sport)
3169{
3170 struct xfrm_user_mapping *um;
3171 struct nlmsghdr *nlh;
3172
3173 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3174 if (nlh == NULL)
3175 return -EMSGSIZE;
3176
3177 um = nlmsg_data(nlh);
3178
3179 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3180 um->id.spi = x->id.spi;
3181 um->id.family = x->props.family;
3182 um->id.proto = x->id.proto;
3183 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3184 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3185 um->new_sport = new_sport;
3186 um->old_sport = x->encap->encap_sport;
3187 um->reqid = x->props.reqid;
3188
Johannes Berg053c0952015-01-16 22:09:00 +01003189 nlmsg_end(skb, nlh);
3190 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003191}
3192
3193static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3194 __be16 sport)
3195{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003196 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003197 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003198 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003199
3200 if (x->id.proto != IPPROTO_ESP)
3201 return -EINVAL;
3202
3203 if (!x->encap)
3204 return -EINVAL;
3205
3206 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3207 if (skb == NULL)
3208 return -ENOMEM;
3209
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003210 err = build_mapping(skb, x, ipaddr, sport);
3211 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003212
Michal Kubecek21ee5432014-06-03 10:26:06 +02003213 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003214}
3215
Horia Geanta0f245582014-02-12 16:20:06 +02003216static bool xfrm_is_alive(const struct km_event *c)
3217{
3218 return (bool)xfrm_acquire_is_on(c->net);
3219}
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 .notify = xfrm_send_state_notify,
3223 .acquire = xfrm_send_acquire,
3224 .compile_policy = xfrm_compile_policy,
3225 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003226 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003227 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003228 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003229 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230};
3231
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003232static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233{
Patrick McHardybe336902006-03-20 22:40:54 -08003234 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003235 struct netlink_kernel_cfg cfg = {
3236 .groups = XFRMNLGRP_MAX,
3237 .input = xfrm_netlink_rcv,
3238 };
Patrick McHardybe336902006-03-20 22:40:54 -08003239
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003240 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003241 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003243 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003244 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 return 0;
3246}
3247
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003248static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003249{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003250 struct net *net;
3251 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003252 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003253 synchronize_net();
3254 list_for_each_entry(net, net_exit_list, exit_list)
3255 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003256}
3257
3258static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003259 .init = xfrm_user_net_init,
3260 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003261};
3262
3263static int __init xfrm_user_init(void)
3264{
3265 int rv;
3266
3267 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3268
3269 rv = register_pernet_subsys(&xfrm_user_net_ops);
3270 if (rv < 0)
3271 return rv;
3272 rv = xfrm_register_km(&netlink_mgr);
3273 if (rv < 0)
3274 unregister_pernet_subsys(&xfrm_user_net_ops);
3275 return rv;
3276}
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278static void __exit xfrm_user_exit(void)
3279{
3280 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003281 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282}
3283
3284module_init(xfrm_user_init);
3285module_exit(xfrm_user_exit);
3286MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003287MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003288