blob: 983b0233767bec16ba55b763ef82ce781ca5046a [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
Ilan Tayari152afb92017-04-30 16:51:19 +0300601 if (attrs[XFRMA_OFFLOAD_DEV]) {
602 err = xfrm_dev_state_add(net, x,
603 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
604 if (err)
605 goto error;
606 }
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200607
Steffen Klassertd8647b72011-03-08 00:10:27 +0000608 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
609 attrs[XFRMA_REPLAY_ESN_VAL])))
610 goto error;
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800613 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800614 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800615 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800616
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000617 if ((err = xfrm_init_replay(x)))
618 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800619
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000620 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000621 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 return x;
624
625error:
626 x->km.state = XFRM_STATE_DEAD;
627 xfrm_state_put(x);
628error_no_put:
629 *errp = err;
630 return NULL;
631}
632
Christoph Hellwig22e70052007-01-02 15:22:30 -0800633static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700634 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800636 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700637 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct xfrm_state *x;
639 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700640 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Thomas Graf35a7aa02007-08-22 14:00:40 -0700642 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (err)
644 return err;
645
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800646 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!x)
648 return err;
649
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700650 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
652 err = xfrm_state_add(x);
653 else
654 err = xfrm_state_update(x);
655
Tetsuo Handa2e710292014-04-22 21:48:30 +0900656 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (err < 0) {
659 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200660 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800661 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700662 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700665 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000666 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700667 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700668
669 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700670out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700671 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return err;
673}
674
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800675static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
676 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700677 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700678 int *errp)
679{
680 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000681 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700682 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000683 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700684
685 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
686 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000687 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700688 } else {
689 xfrm_address_t *saddr = NULL;
690
Thomas Graf35a7aa02007-08-22 14:00:40 -0700691 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700692 if (!saddr) {
693 err = -EINVAL;
694 goto out;
695 }
696
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800697 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000698 x = xfrm_state_lookup_byaddr(net, mark,
699 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800700 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700701 }
702
703 out:
704 if (!x && errp)
705 *errp = err;
706 return x;
707}
708
Christoph Hellwig22e70052007-01-02 15:22:30 -0800709static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700710 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800712 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700714 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700715 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700716 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800718 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700720 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
David S. Miller6f68dc32006-06-08 23:58:52 -0700722 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700723 goto out;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700726 err = -EPERM;
727 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700730 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600731
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700732 if (err < 0)
733 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700734
735 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000736 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700737 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700738 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700740out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900741 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700742 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700743 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
747{
Mathias Krausef778a632012-09-19 11:33:39 +0000748 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 memcpy(&p->id, &x->id, sizeof(p->id));
750 memcpy(&p->sel, &x->sel, sizeof(p->sel));
751 memcpy(&p->lft, &x->lft, sizeof(p->lft));
752 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400753 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
754 put_unaligned(x->stats.replay, &p->stats.replay);
755 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700756 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 p->mode = x->props.mode;
758 p->replay_window = x->props.replay_window;
759 p->reqid = x->props.reqid;
760 p->family = x->props.family;
761 p->flags = x->props.flags;
762 p->seq = x->km.seq;
763}
764
765struct xfrm_dump_info {
766 struct sk_buff *in_skb;
767 struct sk_buff *out_skb;
768 u32 nlmsg_seq;
769 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770};
771
Thomas Grafc0144be2007-08-22 13:55:43 -0700772static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
773{
Thomas Grafc0144be2007-08-22 13:55:43 -0700774 struct xfrm_user_sec_ctx *uctx;
775 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700776 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700777
778 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
779 if (attr == NULL)
780 return -EMSGSIZE;
781
782 uctx = nla_data(attr);
783 uctx->exttype = XFRMA_SEC_CTX;
784 uctx->len = ctx_size;
785 uctx->ctx_doi = s->ctx_doi;
786 uctx->ctx_alg = s->ctx_alg;
787 uctx->ctx_len = s->ctx_len;
788 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
789
790 return 0;
791}
792
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200793static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
794{
795 struct xfrm_user_offload *xuo;
796 struct nlattr *attr;
797
798 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
799 if (attr == NULL)
800 return -EMSGSIZE;
801
802 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200803 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200804 xuo->ifindex = xso->dev->ifindex;
805 xuo->flags = xso->flags;
806
807 return 0;
808}
809
Martin Willi4447bb32009-11-25 00:29:52 +0000810static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
811{
812 struct xfrm_algo *algo;
813 struct nlattr *nla;
814
815 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
816 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
817 if (!nla)
818 return -EMSGSIZE;
819
820 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000821 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000822 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
823 algo->alg_key_len = auth->alg_key_len;
824
825 return 0;
826}
827
Herbert Xu68325d32007-10-09 13:30:57 -0700828/* Don't change this without updating xfrm_sa_len! */
829static int copy_to_user_state_extra(struct xfrm_state *x,
830 struct xfrm_usersa_info *p,
831 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700833 int ret = 0;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 copy_to_user_state(x, p);
836
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100837 if (x->props.extra_flags) {
838 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
839 x->props.extra_flags);
840 if (ret)
841 goto out;
842 }
843
David S. Miller1d1e34d2012-06-27 21:57:03 -0700844 if (x->coaddr) {
845 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
846 if (ret)
847 goto out;
848 }
849 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200850 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
851 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700852 if (ret)
853 goto out;
854 }
855 if (x->aead) {
856 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
857 if (ret)
858 goto out;
859 }
860 if (x->aalg) {
861 ret = copy_to_user_auth(x->aalg, skb);
862 if (!ret)
863 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
864 xfrm_alg_auth_len(x->aalg), x->aalg);
865 if (ret)
866 goto out;
867 }
868 if (x->ealg) {
869 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
870 if (ret)
871 goto out;
872 }
873 if (x->calg) {
874 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
875 if (ret)
876 goto out;
877 }
878 if (x->encap) {
879 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
880 if (ret)
881 goto out;
882 }
883 if (x->tfcpad) {
884 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
885 if (ret)
886 goto out;
887 }
888 ret = xfrm_mark_put(skb, &x->mark);
889 if (ret)
890 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100891 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700892 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
893 xfrm_replay_state_esn_len(x->replay_esn),
894 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100895 else
896 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
897 &x->replay);
898 if (ret)
899 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200900 if(x->xso.dev)
901 ret = copy_user_offload(&x->xso, skb);
902 if (ret)
903 goto out;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900904 if (x->props.output_mark) {
905 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
906 if (ret)
907 goto out;
908 }
Steffen Klassert85981122017-08-31 10:37:00 +0200909 if (x->security)
910 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700911out:
912 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700913}
914
915static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
916{
917 struct xfrm_dump_info *sp = ptr;
918 struct sk_buff *in_skb = sp->in_skb;
919 struct sk_buff *skb = sp->out_skb;
920 struct xfrm_usersa_info *p;
921 struct nlmsghdr *nlh;
922 int err;
923
Eric W. Biederman15e47302012-09-07 20:12:54 +0000924 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700925 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
926 if (nlh == NULL)
927 return -EMSGSIZE;
928
929 p = nlmsg_data(nlh);
930
931 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700932 if (err) {
933 nlmsg_cancel(skb, nlh);
934 return err;
935 }
Thomas Graf98250692007-08-22 12:47:26 -0700936 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Timo Teras4c563f72008-02-28 21:31:08 -0800940static int xfrm_dump_sa_done(struct netlink_callback *cb)
941{
942 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800943 struct sock *sk = cb->skb->sk;
944 struct net *net = sock_net(sk);
945
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200946 if (cb->args[0])
947 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800948 return 0;
949}
950
Nicolas Dichteld3623092014-02-14 15:30:36 +0100951static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
953{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800954 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800955 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 struct xfrm_dump_info info;
957
Timo Teras4c563f72008-02-28 21:31:08 -0800958 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
959 sizeof(cb->args) - sizeof(cb->args[0]));
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 info.in_skb = cb->skb;
962 info.out_skb = skb;
963 info.nlmsg_seq = cb->nlh->nlmsg_seq;
964 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800965
966 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100967 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100968 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100969 u8 proto = 0;
970 int err;
971
Johannes Bergfceb6432017-04-12 14:34:07 +0200972 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
973 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100974 if (err < 0)
975 return err;
976
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100977 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200978 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
979 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100980 if (filter == NULL)
981 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100982 }
983
984 if (attrs[XFRMA_PROTO])
985 proto = nla_get_u8(attrs[XFRMA_PROTO]);
986
987 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200988 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800989 }
990
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800991 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 return skb->len;
994}
995
996static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
997 struct xfrm_state *x, u32 seq)
998{
999 struct xfrm_dump_info info;
1000 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001001 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Thomas Graf7deb2262007-08-22 13:57:39 -07001003 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (!skb)
1005 return ERR_PTR(-ENOMEM);
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 info.in_skb = in_skb;
1008 info.out_skb = skb;
1009 info.nlmsg_seq = seq;
1010 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Mathias Krause864745d2012-09-13 11:41:26 +00001012 err = dump_one_state(x, 0, &info);
1013 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001015 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017
1018 return skb;
1019}
1020
Michal Kubecek21ee5432014-06-03 10:26:06 +02001021/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1022 * Must be called with RCU read lock.
1023 */
1024static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1025 u32 pid, unsigned int group)
1026{
1027 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1028
1029 if (nlsk)
1030 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1031 else
1032 return -1;
1033}
1034
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001035static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001036{
1037 return NLMSG_ALIGN(4)
1038 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001039 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1040 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1041 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001042}
1043
Alexey Dobriyane0710412010-01-23 13:37:10 +00001044static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001045 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001046{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001047 struct xfrmk_spdinfo si;
1048 struct xfrmu_spdinfo spc;
1049 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001050 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001051 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001052 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001053 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001054 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001055
Eric W. Biederman15e47302012-09-07 20:12:54 +00001056 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001057 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001058 return -EMSGSIZE;
1059
1060 f = nlmsg_data(nlh);
1061 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001062 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001063 spc.incnt = si.incnt;
1064 spc.outcnt = si.outcnt;
1065 spc.fwdcnt = si.fwdcnt;
1066 spc.inscnt = si.inscnt;
1067 spc.outscnt = si.outscnt;
1068 spc.fwdscnt = si.fwdscnt;
1069 sph.spdhcnt = si.spdhcnt;
1070 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001071
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001072 do {
1073 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1074
1075 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1076 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1077 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1078 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1079 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1080
David S. Miller1d1e34d2012-06-27 21:57:03 -07001081 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1082 if (!err)
1083 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001084 if (!err)
1085 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1086 if (!err)
1087 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001088 if (err) {
1089 nlmsg_cancel(skb, nlh);
1090 return err;
1091 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001092
Johannes Berg053c0952015-01-16 22:09:00 +01001093 nlmsg_end(skb, nlh);
1094 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001095}
1096
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001097static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1098 struct nlattr **attrs)
1099{
1100 struct net *net = sock_net(skb->sk);
1101 struct xfrmu_spdhthresh *thresh4 = NULL;
1102 struct xfrmu_spdhthresh *thresh6 = NULL;
1103
1104 /* selector prefixlen thresholds to hash policies */
1105 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1106 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1107
1108 if (nla_len(rta) < sizeof(*thresh4))
1109 return -EINVAL;
1110 thresh4 = nla_data(rta);
1111 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1112 return -EINVAL;
1113 }
1114 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1115 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1116
1117 if (nla_len(rta) < sizeof(*thresh6))
1118 return -EINVAL;
1119 thresh6 = nla_data(rta);
1120 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1121 return -EINVAL;
1122 }
1123
1124 if (thresh4 || thresh6) {
1125 write_seqlock(&net->xfrm.policy_hthresh.lock);
1126 if (thresh4) {
1127 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1128 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1129 }
1130 if (thresh6) {
1131 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1132 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1133 }
1134 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1135
1136 xfrm_policy_hash_rebuild(net);
1137 }
1138
1139 return 0;
1140}
1141
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001142static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001143 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001144{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001145 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001146 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001147 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001148 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001149 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001150 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001151
Thomas Graf7deb2262007-08-22 13:57:39 -07001152 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001153 if (r_skb == NULL)
1154 return -ENOMEM;
1155
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001156 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1157 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001158
Eric W. Biederman15e47302012-09-07 20:12:54 +00001159 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001160}
1161
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001162static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001163{
1164 return NLMSG_ALIGN(4)
1165 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1166 + nla_total_size(4); /* XFRMA_SAD_CNT */
1167}
1168
Alexey Dobriyane0710412010-01-23 13:37:10 +00001169static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001170 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001171{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001172 struct xfrmk_sadinfo si;
1173 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001174 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001175 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001176 u32 *f;
1177
Eric W. Biederman15e47302012-09-07 20:12:54 +00001178 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001179 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001180 return -EMSGSIZE;
1181
1182 f = nlmsg_data(nlh);
1183 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001184 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001185
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001186 sh.sadhmcnt = si.sadhmcnt;
1187 sh.sadhcnt = si.sadhcnt;
1188
David S. Miller1d1e34d2012-06-27 21:57:03 -07001189 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1190 if (!err)
1191 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1192 if (err) {
1193 nlmsg_cancel(skb, nlh);
1194 return err;
1195 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001196
Johannes Berg053c0952015-01-16 22:09:00 +01001197 nlmsg_end(skb, nlh);
1198 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001199}
1200
1201static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001202 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001203{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001204 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001205 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001206 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001207 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001208 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001209 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001210
Thomas Graf7deb2262007-08-22 13:57:39 -07001211 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001212 if (r_skb == NULL)
1213 return -ENOMEM;
1214
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001215 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1216 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001217
Eric W. Biederman15e47302012-09-07 20:12:54 +00001218 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001219}
1220
Christoph Hellwig22e70052007-01-02 15:22:30 -08001221static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001222 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001224 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001225 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 struct xfrm_state *x;
1227 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001228 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001230 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (x == NULL)
1232 goto out_noput;
1233
1234 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1235 if (IS_ERR(resp_skb)) {
1236 err = PTR_ERR(resp_skb);
1237 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001238 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240 xfrm_state_put(x);
1241out_noput:
1242 return err;
1243}
1244
Christoph Hellwig22e70052007-01-02 15:22:30 -08001245static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001246 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001248 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 struct xfrm_state *x;
1250 struct xfrm_userspi_info *p;
1251 struct sk_buff *resp_skb;
1252 xfrm_address_t *daddr;
1253 int family;
1254 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001255 u32 mark;
1256 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Thomas Graf7b67c852007-08-22 13:53:52 -07001258 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001259 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (err)
1261 goto out_noput;
1262
1263 family = p->info.family;
1264 daddr = &p->info.id.daddr;
1265
1266 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001267
1268 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001270 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001271 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 xfrm_state_put(x);
1273 x = NULL;
1274 }
1275 }
1276
1277 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001278 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 p->info.id.proto, daddr,
1280 &p->info.saddr, 1,
1281 family);
1282 err = -ENOENT;
1283 if (x == NULL)
1284 goto out_noput;
1285
Herbert Xu658b2192007-10-09 13:29:52 -07001286 err = xfrm_alloc_spi(x, p->min, p->max);
1287 if (err)
1288 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Herbert Xu658b2192007-10-09 13:29:52 -07001290 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (IS_ERR(resp_skb)) {
1292 err = PTR_ERR(resp_skb);
1293 goto out;
1294 }
1295
Eric W. Biederman15e47302012-09-07 20:12:54 +00001296 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298out:
1299 xfrm_state_put(x);
1300out_noput:
1301 return err;
1302}
1303
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001304static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 switch (dir) {
1307 case XFRM_POLICY_IN:
1308 case XFRM_POLICY_OUT:
1309 case XFRM_POLICY_FWD:
1310 break;
1311
1312 default:
1313 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 return 0;
1317}
1318
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001319static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001320{
1321 switch (type) {
1322 case XFRM_POLICY_TYPE_MAIN:
1323#ifdef CONFIG_XFRM_SUB_POLICY
1324 case XFRM_POLICY_TYPE_SUB:
1325#endif
1326 break;
1327
1328 default:
1329 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001330 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001331
1332 return 0;
1333}
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1336{
Fan Due682adf02013-11-07 17:47:48 +08001337 int ret;
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 switch (p->share) {
1340 case XFRM_SHARE_ANY:
1341 case XFRM_SHARE_SESSION:
1342 case XFRM_SHARE_USER:
1343 case XFRM_SHARE_UNIQUE:
1344 break;
1345
1346 default:
1347 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 switch (p->action) {
1351 case XFRM_POLICY_ALLOW:
1352 case XFRM_POLICY_BLOCK:
1353 break;
1354
1355 default:
1356 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 switch (p->sel.family) {
1360 case AF_INET:
1361 break;
1362
1363 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001364#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 break;
1366#else
1367 return -EAFNOSUPPORT;
1368#endif
1369
1370 default:
1371 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Fan Due682adf02013-11-07 17:47:48 +08001374 ret = verify_policy_dir(p->dir);
1375 if (ret)
1376 return ret;
1377 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1378 return -EINVAL;
1379
1380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Thomas Graf5424f322007-08-22 14:01:33 -07001383static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001384{
Thomas Graf5424f322007-08-22 14:01:33 -07001385 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001386 struct xfrm_user_sec_ctx *uctx;
1387
1388 if (!rt)
1389 return 0;
1390
Thomas Graf5424f322007-08-22 14:01:33 -07001391 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001392 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001393}
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1396 int nr)
1397{
1398 int i;
1399
1400 xp->xfrm_nr = nr;
1401 for (i = 0; i < nr; i++, ut++) {
1402 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1403
1404 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1405 memcpy(&t->saddr, &ut->saddr,
1406 sizeof(xfrm_address_t));
1407 t->reqid = ut->reqid;
1408 t->mode = ut->mode;
1409 t->share = ut->share;
1410 t->optional = ut->optional;
1411 t->aalgos = ut->aalgos;
1412 t->ealgos = ut->ealgos;
1413 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001414 /* If all masks are ~0, then we allow all algorithms. */
1415 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001416 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418}
1419
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001420static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1421{
1422 int i;
1423
1424 if (nr > XFRM_MAX_DEPTH)
1425 return -EINVAL;
1426
1427 for (i = 0; i < nr; i++) {
1428 /* We never validated the ut->family value, so many
1429 * applications simply leave it at zero. The check was
1430 * never made and ut->family was ignored because all
1431 * templates could be assumed to have the same family as
1432 * the policy itself. Now that we will have ipv4-in-ipv6
1433 * and ipv6-in-ipv4 tunnels, this is no longer true.
1434 */
1435 if (!ut[i].family)
1436 ut[i].family = family;
1437
1438 switch (ut[i].family) {
1439 case AF_INET:
1440 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001441#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001442 case AF_INET6:
1443 break;
1444#endif
1445 default:
1446 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001447 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001448 }
1449
1450 return 0;
1451}
1452
Thomas Graf5424f322007-08-22 14:01:33 -07001453static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Thomas Graf5424f322007-08-22 14:01:33 -07001455 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 if (!rt) {
1458 pol->xfrm_nr = 0;
1459 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001460 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1461 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001462 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001464 err = validate_tmpl(nr, utmpl, pol->family);
1465 if (err)
1466 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Thomas Graf5424f322007-08-22 14:01:33 -07001468 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470 return 0;
1471}
1472
Thomas Graf5424f322007-08-22 14:01:33 -07001473static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001474{
Thomas Graf5424f322007-08-22 14:01:33 -07001475 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001476 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001477 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001478 int err;
1479
1480 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001481 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001482 type = upt->type;
1483 }
1484
1485 err = verify_policy_type(type);
1486 if (err)
1487 return err;
1488
1489 *tp = type;
1490 return 0;
1491}
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1494{
1495 xp->priority = p->priority;
1496 xp->index = p->index;
1497 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1498 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1499 xp->action = p->action;
1500 xp->flags = p->flags;
1501 xp->family = p->sel.family;
1502 /* XXX xp->share = p->share; */
1503}
1504
1505static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1506{
Mathias Krause7b789832012-09-19 11:33:40 +00001507 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1509 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1510 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1511 p->priority = xp->priority;
1512 p->index = xp->index;
1513 p->sel.family = xp->family;
1514 p->dir = dir;
1515 p->action = xp->action;
1516 p->flags = xp->flags;
1517 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1518}
1519
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001520static 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 -07001521{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001522 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 int err;
1524
1525 if (!xp) {
1526 *errp = -ENOMEM;
1527 return NULL;
1528 }
1529
1530 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001531
Thomas Graf35a7aa02007-08-22 14:00:40 -07001532 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001533 if (err)
1534 goto error;
1535
Thomas Graf35a7aa02007-08-22 14:00:40 -07001536 if (!(err = copy_from_user_tmpl(xp, attrs)))
1537 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001538 if (err)
1539 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001541 xfrm_mark_get(attrs, &xp->mark);
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001544 error:
1545 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001546 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001547 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001548 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
Christoph Hellwig22e70052007-01-02 15:22:30 -08001551static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001552 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001554 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001555 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001557 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 int err;
1559 int excl;
1560
1561 err = verify_newpolicy_info(p);
1562 if (err)
1563 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001564 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001565 if (err)
1566 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001568 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (!xp)
1570 return err;
1571
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001572 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001573 * Aha! this is anti-netlink really i.e more pfkey derived
1574 * in netlink excl is a flag and you wouldnt need
1575 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1577 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001578 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001581 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 kfree(xp);
1583 return err;
1584 }
1585
Herbert Xuf60f6b82005-06-18 22:44:37 -07001586 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001587 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001588 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001589 km_policy_notify(xp, p->dir, &c);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 xfrm_pol_put(xp);
1592
1593 return 0;
1594}
1595
1596static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1597{
1598 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1599 int i;
1600
1601 if (xp->xfrm_nr == 0)
1602 return 0;
1603
1604 for (i = 0; i < xp->xfrm_nr; i++) {
1605 struct xfrm_user_tmpl *up = &vec[i];
1606 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1607
Mathias Krause1f868402012-09-19 11:33:41 +00001608 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001610 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1612 up->reqid = kp->reqid;
1613 up->mode = kp->mode;
1614 up->share = kp->share;
1615 up->optional = kp->optional;
1616 up->aalgos = kp->aalgos;
1617 up->ealgos = kp->ealgos;
1618 up->calgos = kp->calgos;
1619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Thomas Grafc0144be2007-08-22 13:55:43 -07001621 return nla_put(skb, XFRMA_TMPL,
1622 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001623}
1624
Serge Hallyn0d681622006-07-24 23:30:44 -07001625static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1626{
1627 if (x->security) {
1628 return copy_sec_ctx(x->security, skb);
1629 }
1630 return 0;
1631}
1632
1633static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1634{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001635 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001636 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001637 return 0;
1638}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001639static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001640{
1641#ifdef CONFIG_XFRM_SUB_POLICY
1642 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1643#else
1644 return 0;
1645#endif
1646}
Serge Hallyn0d681622006-07-24 23:30:44 -07001647
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001648#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001649static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001650{
Thomas Grafc0144be2007-08-22 13:55:43 -07001651 struct xfrm_userpolicy_type upt = {
1652 .type = type,
1653 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001654
Thomas Grafc0144be2007-08-22 13:55:43 -07001655 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001656}
1657
1658#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001659static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001660{
1661 return 0;
1662}
1663#endif
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1666{
1667 struct xfrm_dump_info *sp = ptr;
1668 struct xfrm_userpolicy_info *p;
1669 struct sk_buff *in_skb = sp->in_skb;
1670 struct sk_buff *skb = sp->out_skb;
1671 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001672 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Eric W. Biederman15e47302012-09-07 20:12:54 +00001674 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001675 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1676 if (nlh == NULL)
1677 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Thomas Graf7b67c852007-08-22 13:53:52 -07001679 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001681 err = copy_to_user_tmpl(xp, skb);
1682 if (!err)
1683 err = copy_to_user_sec_ctx(xp, skb);
1684 if (!err)
1685 err = copy_to_user_policy_type(xp->type, skb);
1686 if (!err)
1687 err = xfrm_mark_put(skb, &xp->mark);
1688 if (err) {
1689 nlmsg_cancel(skb, nlh);
1690 return err;
1691 }
Thomas Graf98250692007-08-22 12:47:26 -07001692 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Timo Teras4c563f72008-02-28 21:31:08 -08001696static int xfrm_dump_policy_done(struct netlink_callback *cb)
1697{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001698 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001699 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001700
Fan Du283bc9f2013-11-07 17:47:50 +08001701 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001702 return 0;
1703}
1704
Herbert Xu1137b5e2017-10-19 20:51:10 +08001705static int xfrm_dump_policy_start(struct netlink_callback *cb)
1706{
1707 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1708
1709 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1710
1711 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1712 return 0;
1713}
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1716{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001717 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001718 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct xfrm_dump_info info;
1720
1721 info.in_skb = cb->skb;
1722 info.out_skb = skb;
1723 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1724 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001725
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001726 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 return skb->len;
1729}
1730
1731static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1732 struct xfrm_policy *xp,
1733 int dir, u32 seq)
1734{
1735 struct xfrm_dump_info info;
1736 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001737 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Thomas Graf7deb2262007-08-22 13:57:39 -07001739 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (!skb)
1741 return ERR_PTR(-ENOMEM);
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 info.in_skb = in_skb;
1744 info.out_skb = skb;
1745 info.nlmsg_seq = seq;
1746 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Mathias Krausec2546372012-09-14 09:58:32 +00001748 err = dump_one_policy(xp, dir, 0, &info);
1749 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001751 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753
1754 return skb;
1755}
1756
Christoph Hellwig22e70052007-01-02 15:22:30 -08001757static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001758 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001760 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 struct xfrm_policy *xp;
1762 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001763 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001765 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001767 struct xfrm_mark m;
1768 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Thomas Graf7b67c852007-08-22 13:53:52 -07001770 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1772
Thomas Graf35a7aa02007-08-22 14:00:40 -07001773 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001774 if (err)
1775 return err;
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 err = verify_policy_dir(p->dir);
1778 if (err)
1779 return err;
1780
1781 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001782 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001783 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001784 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001785 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001786
Thomas Graf35a7aa02007-08-22 14:00:40 -07001787 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001788 if (err)
1789 return err;
1790
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001791 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001792 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001793 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001794
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001795 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001796 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001797 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001798 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001799 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001800 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001801 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (xp == NULL)
1804 return -ENOENT;
1805
1806 if (!delete) {
1807 struct sk_buff *resp_skb;
1808
1809 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1810 if (IS_ERR(resp_skb)) {
1811 err = PTR_ERR(resp_skb);
1812 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001813 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001814 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001816 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001817 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001818
1819 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001820 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001821
Herbert Xue7443892005-06-18 22:44:18 -07001822 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001823 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001824 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001825 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001826 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001829out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001830 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return err;
1832}
1833
Christoph Hellwig22e70052007-01-02 15:22:30 -08001834static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001835 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001837 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001838 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001839 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001840 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Tetsuo Handa2e710292014-04-22 21:48:30 +09001842 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001843 if (err) {
1844 if (err == -ESRCH) /* empty table */
1845 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001846 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001847 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001848 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001849 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001850 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001851 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001852 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001853 km_state_notify(NULL, &c);
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return 0;
1856}
1857
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001858static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001859{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001860 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001861 xfrm_replay_state_esn_len(x->replay_esn) :
1862 sizeof(struct xfrm_replay_state);
1863
Thomas Graf7deb2262007-08-22 13:57:39 -07001864 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001865 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001866 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001867 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001868 + nla_total_size(4) /* XFRM_AE_RTHR */
1869 + nla_total_size(4); /* XFRM_AE_ETHR */
1870}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001871
David S. Miller214e0052011-02-24 00:02:38 -05001872static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001873{
1874 struct xfrm_aevent_id *id;
1875 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001876 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001877
Eric W. Biederman15e47302012-09-07 20:12:54 +00001878 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001879 if (nlh == NULL)
1880 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001881
Thomas Graf7b67c852007-08-22 13:53:52 -07001882 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001883 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001884 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001885 id->sa_id.spi = x->id.spi;
1886 id->sa_id.family = x->props.family;
1887 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001888 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001889 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001890 id->flags = c->data.aevent;
1891
David S. Millerd0fde792012-03-29 04:02:26 -04001892 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001893 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1894 xfrm_replay_state_esn_len(x->replay_esn),
1895 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001896 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001897 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1898 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001899 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001900 if (err)
1901 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001902 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1903 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001904 if (err)
1905 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001906
David S. Miller1d1e34d2012-06-27 21:57:03 -07001907 if (id->flags & XFRM_AE_RTHR) {
1908 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1909 if (err)
1910 goto out_cancel;
1911 }
1912 if (id->flags & XFRM_AE_ETHR) {
1913 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1914 x->replay_maxage * 10 / HZ);
1915 if (err)
1916 goto out_cancel;
1917 }
1918 err = xfrm_mark_put(skb, &x->mark);
1919 if (err)
1920 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001921
Johannes Berg053c0952015-01-16 22:09:00 +01001922 nlmsg_end(skb, nlh);
1923 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001924
David S. Miller1d1e34d2012-06-27 21:57:03 -07001925out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001926 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001927 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001928}
1929
Christoph Hellwig22e70052007-01-02 15:22:30 -08001930static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001931 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001932{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001933 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001934 struct xfrm_state *x;
1935 struct sk_buff *r_skb;
1936 int err;
1937 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001938 u32 mark;
1939 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001940 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001941 struct xfrm_usersa_id *id = &p->sa_id;
1942
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001943 mark = xfrm_mark_get(attrs, &m);
1944
1945 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001946 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001947 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001948
1949 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1950 if (r_skb == NULL) {
1951 xfrm_state_put(x);
1952 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001953 }
1954
1955 /*
1956 * XXX: is this lock really needed - none of the other
1957 * gets lock (the concern is things getting updated
1958 * while we are still reading) - jhs
1959 */
1960 spin_lock_bh(&x->lock);
1961 c.data.aevent = p->flags;
1962 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001963 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001965 err = build_aevent(r_skb, x, &c);
1966 BUG_ON(err < 0);
1967
Eric W. Biederman15e47302012-09-07 20:12:54 +00001968 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001969 spin_unlock_bh(&x->lock);
1970 xfrm_state_put(x);
1971 return err;
1972}
1973
Christoph Hellwig22e70052007-01-02 15:22:30 -08001974static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001975 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001976{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001977 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978 struct xfrm_state *x;
1979 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001980 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001981 u32 mark = 0;
1982 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001983 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001984 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001985 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001986 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001987 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1988 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001989
Michael Rossberg4e077232015-09-29 11:25:08 +02001990 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001991 return err;
1992
1993 /* pedantic mode - thou shalt sayeth replaceth */
1994 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1995 return err;
1996
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001997 mark = xfrm_mark_get(attrs, &m);
1998
1999 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 -08002000 if (x == NULL)
2001 return -ESRCH;
2002
2003 if (x->km.state != XFRM_STATE_VALID)
2004 goto out;
2005
Steffen Klassert4479ff72013-09-09 09:39:01 +02002006 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002007 if (err)
2008 goto out;
2009
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002010 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002011 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002012 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002013
2014 c.event = nlh->nlmsg_type;
2015 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002016 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002017 c.data.aevent = XFRM_AE_CU;
2018 km_state_notify(x, &c);
2019 err = 0;
2020out:
2021 xfrm_state_put(x);
2022 return err;
2023}
2024
Christoph Hellwig22e70052007-01-02 15:22:30 -08002025static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002026 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002028 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002029 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002030 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002031 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002032
Thomas Graf35a7aa02007-08-22 14:00:40 -07002033 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002034 if (err)
2035 return err;
2036
Tetsuo Handa2e710292014-04-22 21:48:30 +09002037 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002038 if (err) {
2039 if (err == -ESRCH) /* empty table */
2040 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002041 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002042 }
2043
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002044 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002045 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002046 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002047 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002048 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002049 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return 0;
2051}
2052
Christoph Hellwig22e70052007-01-02 15:22:30 -08002053static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002054 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002055{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002056 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002057 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002058 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002059 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002060 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002061 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002062 struct xfrm_mark m;
2063 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002064
Thomas Graf35a7aa02007-08-22 14:00:40 -07002065 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002066 if (err)
2067 return err;
2068
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002069 err = verify_policy_dir(p->dir);
2070 if (err)
2071 return err;
2072
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002073 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002074 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002075 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002076 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002077 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002078
Thomas Graf35a7aa02007-08-22 14:00:40 -07002079 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002080 if (err)
2081 return err;
2082
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002083 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002084 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002085 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002086
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002087 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002088 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002089 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002090 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002091 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002092 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002093 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002094 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002095 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002096 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002097
Timo Teräsea2dea92010-03-31 00:17:05 +00002098 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002099 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002100
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002101 err = 0;
2102 if (up->hard) {
2103 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002104 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002105 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002106 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002107
2108out:
2109 xfrm_pol_put(xp);
2110 return err;
2111}
2112
Christoph Hellwig22e70052007-01-02 15:22:30 -08002113static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002114 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002115{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002116 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002117 struct xfrm_state *x;
2118 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002119 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002120 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002121 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002122 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002123
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002124 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 -08002125
David S. Miller3a765aa2007-02-26 14:52:21 -08002126 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002127 if (x == NULL)
2128 return err;
2129
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002130 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002131 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002132 if (x->km.state != XFRM_STATE_VALID)
2133 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002134 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002135
Joy Latten161a09e2006-11-27 13:11:54 -06002136 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002137 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002138 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002139 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002140 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002141out:
2142 spin_unlock_bh(&x->lock);
2143 xfrm_state_put(x);
2144 return err;
2145}
2146
Christoph Hellwig22e70052007-01-02 15:22:30 -08002147static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002148 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002149{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002150 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002151 struct xfrm_policy *xp;
2152 struct xfrm_user_tmpl *ut;
2153 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002154 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002155 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002156
Thomas Graf7b67c852007-08-22 13:53:52 -07002157 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002158 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002159 int err = -ENOMEM;
2160
2161 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002162 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002163
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002164 xfrm_mark_get(attrs, &mark);
2165
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002166 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002167 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002168 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002169
2170 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002171 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002172 if (!xp)
2173 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002174
2175 memcpy(&x->id, &ua->id, sizeof(ua->id));
2176 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2177 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002178 xp->mark.m = x->mark.m = mark.m;
2179 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002180 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002181 /* extract the templates and for each call km_key */
2182 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2183 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2184 memcpy(&x->id, &t->id, sizeof(x->id));
2185 x->props.mode = t->mode;
2186 x->props.reqid = t->reqid;
2187 x->props.family = ut->family;
2188 t->aalgos = ua->aalgos;
2189 t->ealgos = ua->ealgos;
2190 t->calgos = ua->calgos;
2191 err = km_query(x, t, xp);
2192
2193 }
2194
2195 kfree(x);
2196 kfree(xp);
2197
2198 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002199
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002200free_state:
2201 kfree(x);
2202nomem:
2203 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002204}
2205
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002207static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002208 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002209 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002210{
Thomas Graf5424f322007-08-22 14:01:33 -07002211 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002212 struct xfrm_user_migrate *um;
2213 int i, num_migrate;
2214
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002215 if (k != NULL) {
2216 struct xfrm_user_kmaddress *uk;
2217
2218 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2219 memcpy(&k->local, &uk->local, sizeof(k->local));
2220 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2221 k->family = uk->family;
2222 k->reserved = uk->reserved;
2223 }
2224
Thomas Graf5424f322007-08-22 14:01:33 -07002225 um = nla_data(rt);
2226 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002227
2228 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2229 return -EINVAL;
2230
2231 for (i = 0; i < num_migrate; i++, um++, ma++) {
2232 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2233 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2234 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2235 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2236
2237 ma->proto = um->proto;
2238 ma->mode = um->mode;
2239 ma->reqid = um->reqid;
2240
2241 ma->old_family = um->old_family;
2242 ma->new_family = um->new_family;
2243 }
2244
2245 *num = i;
2246 return 0;
2247}
2248
2249static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002250 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002251{
Thomas Graf7b67c852007-08-22 13:53:52 -07002252 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002253 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002254 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002255 u8 type;
2256 int err;
2257 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002258 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002259 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002260
Thomas Graf35a7aa02007-08-22 14:00:40 -07002261 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002262 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002263
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002264 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2265
Thomas Graf5424f322007-08-22 14:01:33 -07002266 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002267 if (err)
2268 return err;
2269
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002270 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002271 if (err)
2272 return err;
2273
2274 if (!n)
2275 return 0;
2276
Antony Antony4ab47d42017-06-06 12:12:13 +02002277 if (attrs[XFRMA_ENCAP]) {
2278 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2279 sizeof(*encap), GFP_KERNEL);
2280 if (!encap)
2281 return 0;
2282 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283
Antony Antony4ab47d42017-06-06 12:12:13 +02002284 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2285
2286 kfree(encap);
2287
2288 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002289}
2290#else
2291static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002292 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002293{
2294 return -ENOPROTOOPT;
2295}
2296#endif
2297
2298#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002299static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002300{
2301 struct xfrm_user_migrate um;
2302
2303 memset(&um, 0, sizeof(um));
2304 um.proto = m->proto;
2305 um.mode = m->mode;
2306 um.reqid = m->reqid;
2307 um.old_family = m->old_family;
2308 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2309 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2310 um.new_family = m->new_family;
2311 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2312 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2313
Thomas Grafc0144be2007-08-22 13:55:43 -07002314 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002315}
2316
David S. Miller183cad12011-02-24 00:28:01 -05002317static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002318{
2319 struct xfrm_user_kmaddress uk;
2320
2321 memset(&uk, 0, sizeof(uk));
2322 uk.family = k->family;
2323 uk.reserved = k->reserved;
2324 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002325 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002326
2327 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2328}
2329
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002330static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2331 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002332{
2333 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002334 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002335 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002336 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2337 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002338}
2339
David S. Miller183cad12011-02-24 00:28:01 -05002340static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2341 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002342 const struct xfrm_selector *sel,
2343 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002344{
David S. Miller183cad12011-02-24 00:28:01 -05002345 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002346 struct xfrm_userpolicy_id *pol_id;
2347 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002348 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002349
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002350 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2351 if (nlh == NULL)
2352 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002353
Thomas Graf7b67c852007-08-22 13:53:52 -07002354 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002355 /* copy data from selector, dir, and type to the pol_id */
2356 memset(pol_id, 0, sizeof(*pol_id));
2357 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2358 pol_id->dir = dir;
2359
David S. Miller1d1e34d2012-06-27 21:57:03 -07002360 if (k != NULL) {
2361 err = copy_to_user_kmaddress(k, skb);
2362 if (err)
2363 goto out_cancel;
2364 }
Antony Antony8bafd732017-06-06 12:12:14 +02002365 if (encap) {
2366 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2367 if (err)
2368 goto out_cancel;
2369 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002370 err = copy_to_user_policy_type(type, skb);
2371 if (err)
2372 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002373 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002374 err = copy_to_user_migrate(mp, skb);
2375 if (err)
2376 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002377 }
2378
Johannes Berg053c0952015-01-16 22:09:00 +01002379 nlmsg_end(skb, nlh);
2380 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002381
2382out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002383 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002384 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002385}
2386
David S. Miller183cad12011-02-24 00:28:01 -05002387static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2388 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002389 const struct xfrm_kmaddress *k,
2390 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002391{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002392 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002393 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002394 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002395
Antony Antony8bafd732017-06-06 12:12:14 +02002396 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2397 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002398 if (skb == NULL)
2399 return -ENOMEM;
2400
2401 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002402 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2403 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002404
Michal Kubecek21ee5432014-06-03 10:26:06 +02002405 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002406}
2407#else
David S. Miller183cad12011-02-24 00:28:01 -05002408static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2409 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002410 const struct xfrm_kmaddress *k,
2411 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002412{
2413 return -ENOPROTOOPT;
2414}
2415#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002416
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002417#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002418
2419static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002420 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002421 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2422 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2423 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2424 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2425 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2426 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002427 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002428 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002429 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002430 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002431 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002432 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002433 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002434 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2435 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002436 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002437 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002438 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002439 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002440 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441};
2442
Thomas Graf492b5582005-05-03 14:26:40 -07002443#undef XMSGSIZE
2444
Thomas Grafcf5cb792007-08-22 13:59:04 -07002445static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002446 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2447 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2448 [XFRMA_LASTUSED] = { .type = NLA_U64},
2449 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002450 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002451 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2452 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2453 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2454 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2455 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2456 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2457 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2458 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2459 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2460 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2461 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2462 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2463 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2464 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002465 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002466 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002467 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002468 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002469 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002470 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002471 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002472 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002473 [XFRMA_OUTPUT_MARK] = { .len = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002474};
2475
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002476static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2477 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2478 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2479};
2480
Mathias Krause05600a72013-02-24 14:10:27 +01002481static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002482 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002483 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002485 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002486 const struct nla_policy *nla_pol;
2487 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002488} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2489 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2490 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2491 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002492 .dump = xfrm_dump_sa,
2493 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002494 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2495 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2496 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002497 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002498 .dump = xfrm_dump_policy,
2499 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002500 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002501 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002502 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002503 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2504 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002505 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002506 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2507 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002508 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2509 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002510 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002511 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002512 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2513 .nla_pol = xfrma_spd_policy,
2514 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002515 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516};
2517
Johannes Berg2d4bc932017-04-12 14:34:04 +02002518static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2519 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002521 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002522 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002523 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002524 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Fan Du74005992015-01-27 17:00:29 +08002526#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002527 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002528 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002529#endif
2530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002533 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 type -= XFRM_MSG_BASE;
2536 link = &xfrm_dispatch[type];
2537
2538 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002539 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002540 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Thomas Graf492b5582005-05-03 14:26:40 -07002542 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2543 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002544 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002546 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002548 {
2549 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002550 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002551 .dump = link->dump,
2552 .done = link->done,
2553 };
2554 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 }
2557
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002558 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2559 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002560 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002561 if (err < 0)
2562 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002565 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Thomas Graf5424f322007-08-22 14:01:33 -07002567 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568}
2569
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002570static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571{
Fan Du283bc9f2013-11-07 17:47:50 +08002572 struct net *net = sock_net(skb->sk);
2573
2574 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002575 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002576 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002579static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002580{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002581 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2582 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002583}
2584
David S. Miller214e0052011-02-24 00:02:38 -05002585static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
2587 struct xfrm_user_expire *ue;
2588 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002589 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Eric W. Biederman15e47302012-09-07 20:12:54 +00002591 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002592 if (nlh == NULL)
2593 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Thomas Graf7b67c852007-08-22 13:53:52 -07002595 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002597 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002598 /* clear the padding bytes */
2599 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
David S. Miller1d1e34d2012-06-27 21:57:03 -07002601 err = xfrm_mark_put(skb, &x->mark);
2602 if (err)
2603 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002604
Johannes Berg053c0952015-01-16 22:09:00 +01002605 nlmsg_end(skb, nlh);
2606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
David S. Miller214e0052011-02-24 00:02:38 -05002609static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002611 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 struct sk_buff *skb;
2613
Thomas Graf7deb2262007-08-22 13:57:39 -07002614 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (skb == NULL)
2616 return -ENOMEM;
2617
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002618 if (build_expire(skb, x, c) < 0) {
2619 kfree_skb(skb);
2620 return -EMSGSIZE;
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Michal Kubecek21ee5432014-06-03 10:26:06 +02002623 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
David S. Miller214e0052011-02-24 00:02:38 -05002626static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002627{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002628 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002629 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002630 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002631
Steffen Klassertd8647b72011-03-08 00:10:27 +00002632 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002633 if (skb == NULL)
2634 return -ENOMEM;
2635
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002636 err = build_aevent(skb, x, c);
2637 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002638
Michal Kubecek21ee5432014-06-03 10:26:06 +02002639 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002640}
2641
David S. Miller214e0052011-02-24 00:02:38 -05002642static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002643{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002644 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002645 struct xfrm_usersa_flush *p;
2646 struct nlmsghdr *nlh;
2647 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002648 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002649
Thomas Graf7deb2262007-08-22 13:57:39 -07002650 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002651 if (skb == NULL)
2652 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002653
Eric W. Biederman15e47302012-09-07 20:12:54 +00002654 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002655 if (nlh == NULL) {
2656 kfree_skb(skb);
2657 return -EMSGSIZE;
2658 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002659
Thomas Graf7b67c852007-08-22 13:53:52 -07002660 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002661 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002662
Thomas Graf98250692007-08-22 12:47:26 -07002663 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002664
Michal Kubecek21ee5432014-06-03 10:26:06 +02002665 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002666}
2667
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002668static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002669{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002670 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002671 if (x->aead)
2672 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002673 if (x->aalg) {
2674 l += nla_total_size(sizeof(struct xfrm_algo) +
2675 (x->aalg->alg_key_len + 7) / 8);
2676 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2677 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002678 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002679 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002680 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002681 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002682 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002683 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002684 if (x->tfcpad)
2685 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002686 if (x->replay_esn)
2687 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002688 else
2689 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002690 if (x->security)
2691 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2692 x->security->ctx_len);
2693 if (x->coaddr)
2694 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002695 if (x->props.extra_flags)
2696 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002697 if (x->xso.dev)
2698 l += nla_total_size(sizeof(x->xso));
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002699 if (x->props.output_mark)
2700 l += nla_total_size(sizeof(x->props.output_mark));
Herbert Xu68325d32007-10-09 13:30:57 -07002701
Herbert Xud26f3982007-11-13 21:47:08 -08002702 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002703 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002704
2705 return l;
2706}
2707
David S. Miller214e0052011-02-24 00:02:38 -05002708static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002709{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002710 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002711 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002712 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002713 struct nlmsghdr *nlh;
2714 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002715 unsigned int len = xfrm_sa_len(x);
2716 unsigned int headlen;
2717 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002718
2719 headlen = sizeof(*p);
2720 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002721 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002722 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002723 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002724 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002725 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002726
Thomas Graf7deb2262007-08-22 13:57:39 -07002727 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002728 if (skb == NULL)
2729 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002730
Eric W. Biederman15e47302012-09-07 20:12:54 +00002731 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002732 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002733 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002734 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002735
Thomas Graf7b67c852007-08-22 13:53:52 -07002736 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002737 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002738 struct nlattr *attr;
2739
Thomas Graf7b67c852007-08-22 13:53:52 -07002740 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002741 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002742 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2743 id->spi = x->id.spi;
2744 id->family = x->props.family;
2745 id->proto = x->id.proto;
2746
Thomas Grafc0144be2007-08-22 13:55:43 -07002747 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002748 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002749 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002750 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002751
2752 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002753 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002754 err = copy_to_user_state_extra(x, p, skb);
2755 if (err)
2756 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002757
Thomas Graf98250692007-08-22 12:47:26 -07002758 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002759
Michal Kubecek21ee5432014-06-03 10:26:06 +02002760 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002761
David S. Miller1d1e34d2012-06-27 21:57:03 -07002762out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002763 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002764 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002765}
2766
David S. Miller214e0052011-02-24 00:02:38 -05002767static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002768{
2769
2770 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002771 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002772 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002773 case XFRM_MSG_NEWAE:
2774 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002775 case XFRM_MSG_DELSA:
2776 case XFRM_MSG_UPDSA:
2777 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002778 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002779 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002780 return xfrm_notify_sa_flush(c);
2781 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002782 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2783 c->event);
2784 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002785 }
2786
2787 return 0;
2788
2789}
2790
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002791static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2792 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002793{
2794 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2795 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002796 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002797 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2798 + userpolicy_type_attrsize();
2799}
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002802 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002804 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 struct xfrm_user_acquire *ua;
2806 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002807 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002809 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2810 if (nlh == NULL)
2811 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Thomas Graf7b67c852007-08-22 13:53:52 -07002813 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 memcpy(&ua->id, &x->id, sizeof(ua->id));
2815 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2816 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002817 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 ua->aalgos = xt->aalgos;
2819 ua->ealgos = xt->ealgos;
2820 ua->calgos = xt->calgos;
2821 ua->seq = x->km.seq = seq;
2822
David S. Miller1d1e34d2012-06-27 21:57:03 -07002823 err = copy_to_user_tmpl(xp, skb);
2824 if (!err)
2825 err = copy_to_user_state_sec_ctx(x, skb);
2826 if (!err)
2827 err = copy_to_user_policy_type(xp->type, skb);
2828 if (!err)
2829 err = xfrm_mark_put(skb, &xp->mark);
2830 if (err) {
2831 nlmsg_cancel(skb, nlh);
2832 return err;
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Johannes Berg053c0952015-01-16 22:09:00 +01002835 nlmsg_end(skb, nlh);
2836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
2839static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002840 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002842 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002844 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Thomas Graf7deb2262007-08-22 13:57:39 -07002846 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 if (skb == NULL)
2848 return -ENOMEM;
2849
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002850 err = build_acquire(skb, x, xt, xp);
2851 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Michal Kubecek21ee5432014-06-03 10:26:06 +02002853 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854}
2855
2856/* User gives us xfrm_user_policy_info followed by an array of 0
2857 * or more templates.
2858 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002859static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 u8 *data, int len, int *dir)
2861{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002862 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2864 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2865 struct xfrm_policy *xp;
2866 int nr;
2867
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002868 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 case AF_INET:
2870 if (opt != IP_XFRM_POLICY) {
2871 *dir = -EOPNOTSUPP;
2872 return NULL;
2873 }
2874 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002875#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 case AF_INET6:
2877 if (opt != IPV6_XFRM_POLICY) {
2878 *dir = -EOPNOTSUPP;
2879 return NULL;
2880 }
2881 break;
2882#endif
2883 default:
2884 *dir = -EINVAL;
2885 return NULL;
2886 }
2887
2888 *dir = -EINVAL;
2889
2890 if (len < sizeof(*p) ||
2891 verify_newpolicy_info(p))
2892 return NULL;
2893
2894 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002895 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 return NULL;
2897
Herbert Xua4f1bac2005-07-26 15:43:17 -07002898 if (p->dir > XFRM_POLICY_OUT)
2899 return NULL;
2900
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002901 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 if (xp == NULL) {
2903 *dir = -ENOBUFS;
2904 return NULL;
2905 }
2906
2907 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002908 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 copy_templates(xp, ut, nr);
2910
2911 *dir = p->dir;
2912
2913 return xp;
2914}
2915
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002916static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002917{
2918 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2919 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2920 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002921 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002922 + userpolicy_type_attrsize();
2923}
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002926 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
2928 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002929 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002930 struct nlmsghdr *nlh;
2931 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Eric W. Biederman15e47302012-09-07 20:12:54 +00002933 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002934 if (nlh == NULL)
2935 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Thomas Graf7b67c852007-08-22 13:53:52 -07002937 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002939 err = copy_to_user_tmpl(xp, skb);
2940 if (!err)
2941 err = copy_to_user_sec_ctx(xp, skb);
2942 if (!err)
2943 err = copy_to_user_policy_type(xp->type, skb);
2944 if (!err)
2945 err = xfrm_mark_put(skb, &xp->mark);
2946 if (err) {
2947 nlmsg_cancel(skb, nlh);
2948 return err;
2949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 upe->hard = !!hard;
2951
Johannes Berg053c0952015-01-16 22:09:00 +01002952 nlmsg_end(skb, nlh);
2953 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
David S. Miller214e0052011-02-24 00:02:38 -05002956static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002958 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002960 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Thomas Graf7deb2262007-08-22 13:57:39 -07002962 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (skb == NULL)
2964 return -ENOMEM;
2965
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002966 err = build_polexpire(skb, xp, dir, c);
2967 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Michal Kubecek21ee5432014-06-03 10:26:06 +02002969 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970}
2971
David S. Miller214e0052011-02-24 00:02:38 -05002972static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002973{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002974 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002975 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002976 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002977 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002978 struct nlmsghdr *nlh;
2979 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002980 unsigned int headlen;
2981 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002982
2983 headlen = sizeof(*p);
2984 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002985 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002986 headlen = sizeof(*id);
2987 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002988 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002989 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002990 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002991
Thomas Graf7deb2262007-08-22 13:57:39 -07002992 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002993 if (skb == NULL)
2994 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002995
Eric W. Biederman15e47302012-09-07 20:12:54 +00002996 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002997 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002998 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002999 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003000
Thomas Graf7b67c852007-08-22 13:53:52 -07003001 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003002 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003003 struct nlattr *attr;
3004
Thomas Graf7b67c852007-08-22 13:53:52 -07003005 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003006 memset(id, 0, sizeof(*id));
3007 id->dir = dir;
3008 if (c->data.byid)
3009 id->index = xp->index;
3010 else
3011 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3012
Thomas Grafc0144be2007-08-22 13:55:43 -07003013 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003014 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003015 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003016 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003017
3018 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003019 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003020
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003021 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003022 err = copy_to_user_tmpl(xp, skb);
3023 if (!err)
3024 err = copy_to_user_policy_type(xp->type, skb);
3025 if (!err)
3026 err = xfrm_mark_put(skb, &xp->mark);
3027 if (err)
3028 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003029
Thomas Graf98250692007-08-22 12:47:26 -07003030 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003031
Michal Kubecek21ee5432014-06-03 10:26:06 +02003032 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003033
David S. Miller1d1e34d2012-06-27 21:57:03 -07003034out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003035 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003036 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003037}
3038
David S. Miller214e0052011-02-24 00:02:38 -05003039static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003040{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003041 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003042 struct nlmsghdr *nlh;
3043 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003044 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003045
Thomas Graf7deb2262007-08-22 13:57:39 -07003046 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003047 if (skb == NULL)
3048 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003049
Eric W. Biederman15e47302012-09-07 20:12:54 +00003050 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003051 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003052 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003053 goto out_free_skb;
3054 err = copy_to_user_policy_type(c->data.type, skb);
3055 if (err)
3056 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003057
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_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003068{
3069
3070 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003071 case XFRM_MSG_NEWPOLICY:
3072 case XFRM_MSG_UPDPOLICY:
3073 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003074 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003075 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003076 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003077 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003078 return xfrm_exp_policy_notify(xp, dir, c);
3079 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003080 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3081 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003082 }
3083
3084 return 0;
3085
3086}
3087
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003088static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003089{
3090 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3091}
3092
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003093static int build_report(struct sk_buff *skb, u8 proto,
3094 struct xfrm_selector *sel, xfrm_address_t *addr)
3095{
3096 struct xfrm_user_report *ur;
3097 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003098
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003099 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3100 if (nlh == NULL)
3101 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003102
Thomas Graf7b67c852007-08-22 13:53:52 -07003103 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003104 ur->proto = proto;
3105 memcpy(&ur->sel, sel, sizeof(ur->sel));
3106
David S. Miller1d1e34d2012-06-27 21:57:03 -07003107 if (addr) {
3108 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3109 if (err) {
3110 nlmsg_cancel(skb, nlh);
3111 return err;
3112 }
3113 }
Johannes Berg053c0952015-01-16 22:09:00 +01003114 nlmsg_end(skb, nlh);
3115 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003116}
3117
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003118static int xfrm_send_report(struct net *net, u8 proto,
3119 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003120{
3121 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003122 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003123
Thomas Graf7deb2262007-08-22 13:57:39 -07003124 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003125 if (skb == NULL)
3126 return -ENOMEM;
3127
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003128 err = build_report(skb, proto, sel, addr);
3129 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003130
Michal Kubecek21ee5432014-06-03 10:26:06 +02003131 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003132}
3133
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003134static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003135{
3136 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3137}
3138
3139static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3140 xfrm_address_t *new_saddr, __be16 new_sport)
3141{
3142 struct xfrm_user_mapping *um;
3143 struct nlmsghdr *nlh;
3144
3145 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3146 if (nlh == NULL)
3147 return -EMSGSIZE;
3148
3149 um = nlmsg_data(nlh);
3150
3151 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3152 um->id.spi = x->id.spi;
3153 um->id.family = x->props.family;
3154 um->id.proto = x->id.proto;
3155 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3156 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3157 um->new_sport = new_sport;
3158 um->old_sport = x->encap->encap_sport;
3159 um->reqid = x->props.reqid;
3160
Johannes Berg053c0952015-01-16 22:09:00 +01003161 nlmsg_end(skb, nlh);
3162 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003163}
3164
3165static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3166 __be16 sport)
3167{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003168 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003169 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003170 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003171
3172 if (x->id.proto != IPPROTO_ESP)
3173 return -EINVAL;
3174
3175 if (!x->encap)
3176 return -EINVAL;
3177
3178 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3179 if (skb == NULL)
3180 return -ENOMEM;
3181
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003182 err = build_mapping(skb, x, ipaddr, sport);
3183 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003184
Michal Kubecek21ee5432014-06-03 10:26:06 +02003185 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003186}
3187
Horia Geanta0f245582014-02-12 16:20:06 +02003188static bool xfrm_is_alive(const struct km_event *c)
3189{
3190 return (bool)xfrm_acquire_is_on(c->net);
3191}
3192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 .notify = xfrm_send_state_notify,
3195 .acquire = xfrm_send_acquire,
3196 .compile_policy = xfrm_compile_policy,
3197 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003198 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003199 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003200 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003201 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202};
3203
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003204static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205{
Patrick McHardybe336902006-03-20 22:40:54 -08003206 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003207 struct netlink_kernel_cfg cfg = {
3208 .groups = XFRMNLGRP_MAX,
3209 .input = xfrm_netlink_rcv,
3210 };
Patrick McHardybe336902006-03-20 22:40:54 -08003211
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003212 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003213 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003215 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003216 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return 0;
3218}
3219
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003220static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003221{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003222 struct net *net;
3223 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003224 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003225 synchronize_net();
3226 list_for_each_entry(net, net_exit_list, exit_list)
3227 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003228}
3229
3230static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003231 .init = xfrm_user_net_init,
3232 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003233};
3234
3235static int __init xfrm_user_init(void)
3236{
3237 int rv;
3238
3239 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3240
3241 rv = register_pernet_subsys(&xfrm_user_net_ops);
3242 if (rv < 0)
3243 return rv;
3244 rv = xfrm_register_km(&netlink_mgr);
3245 if (rv < 0)
3246 unregister_pernet_subsys(&xfrm_user_net_ops);
3247 return rv;
3248}
3249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250static void __exit xfrm_user_exit(void)
3251{
3252 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003253 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254}
3255
3256module_init(xfrm_user_init);
3257module_exit(xfrm_user_exit);
3258MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003259MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003260