blob: 080035f056d992c49f8cbcc776d579c9769c67eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/socket.h>
19#include <linux/string.h>
20#include <linux/net.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pfkeyv2.h>
23#include <linux/ipsec.h>
24#include <linux/init.h>
25#include <linux/security.h>
26#include <net/sock.h>
27#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Thomas Graf5424f322007-08-22 14:01:33 -070036static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Thomas Graf5424f322007-08-22 14:01:33 -070038 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct xfrm_algo *algp;
40
41 if (!rt)
42 return 0;
43
Thomas Graf5424f322007-08-22 14:01:33 -070044 algp = nla_data(rt);
Alexey Dobriyan06cd22f2017-09-21 23:46:30 +030045 if (nla_len(rt) < (int)xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070046 return -EINVAL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (type) {
49 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53
54 default:
55 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Herbert Xu633439f2017-04-06 16:16:10 +080058 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 0;
60}
61
Martin Willi4447bb32009-11-25 00:29:52 +000062static int verify_auth_trunc(struct nlattr **attrs)
63{
64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65 struct xfrm_algo_auth *algp;
66
67 if (!rt)
68 return 0;
69
70 algp = nla_data(rt);
Alexey Dobriyan1bd963a2017-09-21 23:47:09 +030071 if (nla_len(rt) < (int)xfrm_alg_auth_len(algp))
Martin Willi4447bb32009-11-25 00:29:52 +000072 return -EINVAL;
73
Herbert Xu633439f2017-04-06 16:16:10 +080074 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Martin Willi4447bb32009-11-25 00:29:52 +000075 return 0;
76}
77
Herbert Xu1a6509d2008-01-28 19:37:29 -080078static int verify_aead(struct nlattr **attrs)
79{
80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81 struct xfrm_algo_aead *algp;
82
83 if (!rt)
84 return 0;
85
86 algp = nla_data(rt);
Alexey Dobriyan373b8ee2017-09-21 23:45:43 +030087 if (nla_len(rt) < (int)aead_len(algp))
Herbert Xu1a6509d2008-01-28 19:37:29 -080088 return -EINVAL;
89
Herbert Xu633439f2017-04-06 16:16:10 +080090 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Herbert Xu1a6509d2008-01-28 19:37:29 -080091 return 0;
92}
93
Thomas Graf5424f322007-08-22 14:01:33 -070094static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070095 xfrm_address_t **addrp)
96{
Thomas Graf5424f322007-08-22 14:01:33 -070097 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070098
Thomas Grafcf5cb792007-08-22 13:59:04 -070099 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700100 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700101}
Trent Jaegerdf718372005-12-13 23:12:27 -0800102
Thomas Graf5424f322007-08-22 14:01:33 -0700103static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800104{
Thomas Graf5424f322007-08-22 14:01:33 -0700105 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800106 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800107
108 if (!rt)
109 return 0;
110
Thomas Graf5424f322007-08-22 14:01:33 -0700111 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700112 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800113 return -EINVAL;
114
115 return 0;
116}
117
Steffen Klassertd8647b72011-03-08 00:10:27 +0000118static inline int verify_replay(struct xfrm_usersa_info *p,
119 struct nlattr **attrs)
120{
121 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000122 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000123
124 if (!rt)
Florian Westphald97ca5d2018-02-12 14:42:01 +0100125 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000135
Fan Du01714102014-01-18 09:54:28 +0800136 /* As only ESP and AH support ESN feature. */
137 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000138 return -EINVAL;
139
Steffen Klassertd8647b72011-03-08 00:10:27 +0000140 if (p->replay_window != 0)
141 return -EINVAL;
142
143 return 0;
144}
Trent Jaegerdf718372005-12-13 23:12:27 -0800145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700147 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int err;
150
151 err = -EINVAL;
152 switch (p->family) {
153 case AF_INET:
154 break;
155
156 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000157#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159#else
160 err = -EAFNOSUPPORT;
161 goto out;
162#endif
163
164 default:
165 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 err = -EINVAL;
169 switch (p->id.proto) {
170 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000171 if ((!attrs[XFRMA_ALG_AUTH] &&
172 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800173 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700174 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000175 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200176 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 goto out;
178 break;
179
180 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 if (attrs[XFRMA_ALG_COMP])
182 goto out;
183 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000184 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800185 !attrs[XFRMA_ALG_CRYPT] &&
186 !attrs[XFRMA_ALG_AEAD])
187 goto out;
188 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000189 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800190 attrs[XFRMA_ALG_CRYPT]) &&
191 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000193 if (attrs[XFRMA_TFCPAD] &&
194 p->mode != XFRM_MODE_TUNNEL)
195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197
198 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700199 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800200 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700201 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000202 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000203 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200204 attrs[XFRMA_TFCPAD] ||
205 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto out;
207 break;
208
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000209#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700210 case IPPROTO_DSTOPTS:
211 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700212 if (attrs[XFRMA_ALG_COMP] ||
213 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000214 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800215 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700216 attrs[XFRMA_ALG_CRYPT] ||
217 attrs[XFRMA_ENCAP] ||
218 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000219 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700220 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700221 goto out;
222 break;
223#endif
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 default:
226 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Herbert Xu1a6509d2008-01-28 19:37:29 -0800229 if ((err = verify_aead(attrs)))
230 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000231 if ((err = verify_auth_trunc(attrs)))
232 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700233 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700235 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700237 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800240 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000241 if ((err = verify_replay(p, attrs)))
242 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 err = -EINVAL;
245 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700246 case XFRM_MODE_TRANSPORT:
247 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700248 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a69452c2006-10-03 23:47:05 -0700249 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251
252 default:
253 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 err = 0;
257
258out:
259 return err;
260}
261
262static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800263 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700264 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct xfrm_algo *p, *ualg;
267 struct xfrm_algo_desc *algo;
268
269 if (!rta)
270 return 0;
271
Thomas Graf5424f322007-08-22 14:01:33 -0700272 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 algo = get_byname(ualg->alg_name, 1);
275 if (!algo)
276 return -ENOSYS;
277 *props = algo->desc.sadb_alg_id;
278
Eric Dumazet0f99be02008-01-08 23:39:06 -0800279 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!p)
281 return -ENOMEM;
282
Herbert Xu04ff1262006-08-13 08:50:00 +1000283 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *algpp = p;
285 return 0;
286}
287
Herbert Xu69b01372015-05-27 16:03:45 +0800288static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
289{
290 struct xfrm_algo *p, *ualg;
291 struct xfrm_algo_desc *algo;
292
293 if (!rta)
294 return 0;
295
296 ualg = nla_data(rta);
297
298 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
299 if (!algo)
300 return -ENOSYS;
301 x->props.ealgo = algo->desc.sadb_alg_id;
302
303 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
304 if (!p)
305 return -ENOMEM;
306
307 strcpy(p->alg_name, algo->name);
308 x->ealg = p;
309 x->geniv = algo->uinfo.encr.geniv;
310 return 0;
311}
312
Martin Willi4447bb32009-11-25 00:29:52 +0000313static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
314 struct nlattr *rta)
315{
316 struct xfrm_algo *ualg;
317 struct xfrm_algo_auth *p;
318 struct xfrm_algo_desc *algo;
319
320 if (!rta)
321 return 0;
322
323 ualg = nla_data(rta);
324
325 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
326 if (!algo)
327 return -ENOSYS;
328 *props = algo->desc.sadb_alg_id;
329
330 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
331 if (!p)
332 return -ENOMEM;
333
334 strcpy(p->alg_name, algo->name);
335 p->alg_key_len = ualg->alg_key_len;
336 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
337 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
338
339 *algpp = p;
340 return 0;
341}
342
343static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
344 struct nlattr *rta)
345{
346 struct xfrm_algo_auth *p, *ualg;
347 struct xfrm_algo_desc *algo;
348
349 if (!rta)
350 return 0;
351
352 ualg = nla_data(rta);
353
354 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
355 if (!algo)
356 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800357 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000358 return -EINVAL;
359 *props = algo->desc.sadb_alg_id;
360
361 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
362 if (!p)
363 return -ENOMEM;
364
365 strcpy(p->alg_name, algo->name);
366 if (!p->alg_trunc_len)
367 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
368
369 *algpp = p;
370 return 0;
371}
372
Herbert Xu69b01372015-05-27 16:03:45 +0800373static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800374{
375 struct xfrm_algo_aead *p, *ualg;
376 struct xfrm_algo_desc *algo;
377
378 if (!rta)
379 return 0;
380
381 ualg = nla_data(rta);
382
383 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
384 if (!algo)
385 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800386 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800387
388 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
389 if (!p)
390 return -ENOMEM;
391
392 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800393 x->aead = p;
394 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800395 return 0;
396}
397
Steffen Klasserte2b19122011-03-28 19:47:30 +0000398static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
399 struct nlattr *rp)
400{
401 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300402 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403
404 if (!replay_esn || !rp)
405 return 0;
406
407 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000408 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000409
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000410 /* Check the overall length and the internal bitmap length to avoid
411 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300412 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000413 xfrm_replay_state_esn_len(replay_esn) != ulen ||
414 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415 return -EINVAL;
416
Andy Whitcroft677e8062017-03-22 07:29:31 +0000417 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
418 return -EINVAL;
419
Steffen Klasserte2b19122011-03-28 19:47:30 +0000420 return 0;
421}
422
Steffen Klassertd8647b72011-03-08 00:10:27 +0000423static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
424 struct xfrm_replay_state_esn **preplay_esn,
425 struct nlattr *rta)
426{
427 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300428 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000429
430 if (!rta)
431 return 0;
432
433 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000434 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300435 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000436
Mathias Krauseecd79182012-09-20 10:01:49 +0000437 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000438 if (!p)
439 return -ENOMEM;
440
Mathias Krauseecd79182012-09-20 10:01:49 +0000441 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000442 if (!pp) {
443 kfree(p);
444 return -ENOMEM;
445 }
446
Mathias Krauseecd79182012-09-20 10:01:49 +0000447 memcpy(p, up, ulen);
448 memcpy(pp, up, ulen);
449
Steffen Klassertd8647b72011-03-08 00:10:27 +0000450 *replay_esn = p;
451 *preplay_esn = pp;
452
453 return 0;
454}
455
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300456static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800457{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300458 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800459
460 if (xfrm_ctx) {
461 len += sizeof(struct xfrm_user_sec_ctx);
462 len += xfrm_ctx->ctx_len;
463 }
464 return len;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
468{
469 memcpy(&x->id, &p->id, sizeof(x->id));
470 memcpy(&x->sel, &p->sel, sizeof(x->sel));
471 memcpy(&x->lft, &p->lft, sizeof(x->lft));
472 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800473 x->props.replay_window = min_t(unsigned int, p->replay_window,
474 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 x->props.reqid = p->reqid;
476 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700477 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700479
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700480 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700481 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800484/*
485 * someday when pfkey also has support, we could have the code
486 * somehow made shareable and move it to xfrm_state.c - JHS
487 *
488*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000489static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
490 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800491{
Thomas Graf5424f322007-08-22 14:01:33 -0700492 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000493 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700494 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
495 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
496 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497
Steffen Klassertd8647b72011-03-08 00:10:27 +0000498 if (re) {
499 struct xfrm_replay_state_esn *replay_esn;
500 replay_esn = nla_data(re);
501 memcpy(x->replay_esn, replay_esn,
502 xfrm_replay_state_esn_len(replay_esn));
503 memcpy(x->preplay_esn, replay_esn,
504 xfrm_replay_state_esn_len(replay_esn));
505 }
506
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800507 if (rp) {
508 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700509 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800510 memcpy(&x->replay, replay, sizeof(*replay));
511 memcpy(&x->preplay, replay, sizeof(*replay));
512 }
513
514 if (lt) {
515 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700516 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800517 x->curlft.bytes = ltime->bytes;
518 x->curlft.packets = ltime->packets;
519 x->curlft.add_time = ltime->add_time;
520 x->curlft.use_time = ltime->use_time;
521 }
522
Thomas Grafcf5cb792007-08-22 13:59:04 -0700523 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700524 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800525
Thomas Grafcf5cb792007-08-22 13:59:04 -0700526 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700527 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800528}
529
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800530static struct xfrm_state *xfrm_state_construct(struct net *net,
531 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700532 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int *errp)
534{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800535 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int err = -ENOMEM;
537
538 if (!x)
539 goto error_no_put;
540
541 copy_from_user_state(x, p);
542
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100543 if (attrs[XFRMA_SA_EXTRA_FLAGS])
544 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
545
Herbert Xu69b01372015-05-27 16:03:45 +0800546 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800547 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000548 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
549 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000551 if (!x->props.aalgo) {
552 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
553 attrs[XFRMA_ALG_AUTH])))
554 goto error;
555 }
Herbert Xu69b01372015-05-27 16:03:45 +0800556 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 goto error;
558 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
559 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700560 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700562
563 if (attrs[XFRMA_ENCAP]) {
564 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
565 sizeof(*x->encap), GFP_KERNEL);
566 if (x->encap == NULL)
567 goto error;
568 }
569
Martin Willi35d28562010-12-08 04:37:49 +0000570 if (attrs[XFRMA_TFCPAD])
571 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
572
Thomas Graffd211502007-09-06 03:28:08 -0700573 if (attrs[XFRMA_COADDR]) {
574 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
575 sizeof(*x->coaddr), GFP_KERNEL);
576 if (x->coaddr == NULL)
577 goto error;
578 }
579
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000580 xfrm_mark_get(attrs, &x->mark);
581
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900582 if (attrs[XFRMA_OUTPUT_MARK])
583 x->props.output_mark = nla_get_u32(attrs[XFRMA_OUTPUT_MARK]);
584
Ilan Tayariffdb5212017-08-01 12:49:08 +0300585 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (err)
587 goto error;
588
Mathias Krause2f30ea52016-09-08 18:09:57 +0200589 if (attrs[XFRMA_SEC_CTX]) {
590 err = security_xfrm_state_alloc(x,
591 nla_data(attrs[XFRMA_SEC_CTX]));
592 if (err)
593 goto error;
594 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800595
Steffen Klassertd8647b72011-03-08 00:10:27 +0000596 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
597 attrs[XFRMA_REPLAY_ESN_VAL])))
598 goto error;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800601 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800602 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800603 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800604
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000605 if ((err = xfrm_init_replay(x)))
606 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800607
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000608 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000609 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Yossi Kupermancc015722018-01-17 15:52:41 +0200611 /* configure the hardware if offload is requested */
612 if (attrs[XFRMA_OFFLOAD_DEV]) {
613 err = xfrm_dev_state_add(net, x,
614 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
615 if (err)
616 goto error;
617 }
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return x;
620
621error:
622 x->km.state = XFRM_STATE_DEAD;
623 xfrm_state_put(x);
624error_no_put:
625 *errp = err;
626 return NULL;
627}
628
Christoph Hellwig22e70052007-01-02 15:22:30 -0800629static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700630 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800632 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700633 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct xfrm_state *x;
635 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700636 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Thomas Graf35a7aa02007-08-22 14:00:40 -0700638 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (err)
640 return err;
641
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800642 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (!x)
644 return err;
645
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700646 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
648 err = xfrm_state_add(x);
649 else
650 err = xfrm_state_update(x);
651
Tetsuo Handa2e710292014-04-22 21:48:30 +0900652 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (err < 0) {
655 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200656 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800657 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
Yossi Kupermancc015722018-01-17 15:52:41 +0200661 if (x->km.state == XFRM_STATE_VOID)
662 x->km.state = XFRM_STATE_VALID;
663
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700664 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000665 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700666 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700667
668 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700669out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700670 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return err;
672}
673
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800674static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
675 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700676 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700677 int *errp)
678{
679 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000680 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700681 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000682 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700683
684 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
685 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000686 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700687 } else {
688 xfrm_address_t *saddr = NULL;
689
Thomas Graf35a7aa02007-08-22 14:00:40 -0700690 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700691 if (!saddr) {
692 err = -EINVAL;
693 goto out;
694 }
695
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800696 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000697 x = xfrm_state_lookup_byaddr(net, mark,
698 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800699 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700700 }
701
702 out:
703 if (!x && errp)
704 *errp = err;
705 return x;
706}
707
Christoph Hellwig22e70052007-01-02 15:22:30 -0800708static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700709 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800711 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700713 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700714 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700715 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800717 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700719 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
David S. Miller6f68dc32006-06-08 23:58:52 -0700721 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700722 goto out;
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700725 err = -EPERM;
726 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700729 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600730
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700731 if (err < 0)
732 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700733
734 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000735 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700736 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700737 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700739out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900740 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700741 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
746{
Mathias Krausef778a632012-09-19 11:33:39 +0000747 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 memcpy(&p->id, &x->id, sizeof(p->id));
749 memcpy(&p->sel, &x->sel, sizeof(p->sel));
750 memcpy(&p->lft, &x->lft, sizeof(p->lft));
751 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400752 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
753 put_unaligned(x->stats.replay, &p->stats.replay);
754 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700755 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 p->mode = x->props.mode;
757 p->replay_window = x->props.replay_window;
758 p->reqid = x->props.reqid;
759 p->family = x->props.family;
760 p->flags = x->props.flags;
761 p->seq = x->km.seq;
762}
763
764struct xfrm_dump_info {
765 struct sk_buff *in_skb;
766 struct sk_buff *out_skb;
767 u32 nlmsg_seq;
768 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
770
Thomas Grafc0144be2007-08-22 13:55:43 -0700771static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
772{
Thomas Grafc0144be2007-08-22 13:55:43 -0700773 struct xfrm_user_sec_ctx *uctx;
774 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700775 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700776
777 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
778 if (attr == NULL)
779 return -EMSGSIZE;
780
781 uctx = nla_data(attr);
782 uctx->exttype = XFRMA_SEC_CTX;
783 uctx->len = ctx_size;
784 uctx->ctx_doi = s->ctx_doi;
785 uctx->ctx_alg = s->ctx_alg;
786 uctx->ctx_len = s->ctx_len;
787 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
788
789 return 0;
790}
791
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200792static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
793{
794 struct xfrm_user_offload *xuo;
795 struct nlattr *attr;
796
797 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
798 if (attr == NULL)
799 return -EMSGSIZE;
800
801 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200802 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200803 xuo->ifindex = xso->dev->ifindex;
804 xuo->flags = xso->flags;
805
806 return 0;
807}
808
Martin Willi4447bb32009-11-25 00:29:52 +0000809static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
810{
811 struct xfrm_algo *algo;
812 struct nlattr *nla;
813
814 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
815 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
816 if (!nla)
817 return -EMSGSIZE;
818
819 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000820 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000821 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
822 algo->alg_key_len = auth->alg_key_len;
823
824 return 0;
825}
826
Herbert Xu68325d32007-10-09 13:30:57 -0700827/* Don't change this without updating xfrm_sa_len! */
828static int copy_to_user_state_extra(struct xfrm_state *x,
829 struct xfrm_usersa_info *p,
830 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700832 int ret = 0;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 copy_to_user_state(x, p);
835
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100836 if (x->props.extra_flags) {
837 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
838 x->props.extra_flags);
839 if (ret)
840 goto out;
841 }
842
David S. Miller1d1e34d2012-06-27 21:57:03 -0700843 if (x->coaddr) {
844 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
845 if (ret)
846 goto out;
847 }
848 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200849 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
850 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700851 if (ret)
852 goto out;
853 }
854 if (x->aead) {
855 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
856 if (ret)
857 goto out;
858 }
859 if (x->aalg) {
860 ret = copy_to_user_auth(x->aalg, skb);
861 if (!ret)
862 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
863 xfrm_alg_auth_len(x->aalg), x->aalg);
864 if (ret)
865 goto out;
866 }
867 if (x->ealg) {
868 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
869 if (ret)
870 goto out;
871 }
872 if (x->calg) {
873 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
874 if (ret)
875 goto out;
876 }
877 if (x->encap) {
878 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
879 if (ret)
880 goto out;
881 }
882 if (x->tfcpad) {
883 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
884 if (ret)
885 goto out;
886 }
887 ret = xfrm_mark_put(skb, &x->mark);
888 if (ret)
889 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100890 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700891 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
892 xfrm_replay_state_esn_len(x->replay_esn),
893 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100894 else
895 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
896 &x->replay);
897 if (ret)
898 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200899 if(x->xso.dev)
900 ret = copy_user_offload(&x->xso, skb);
901 if (ret)
902 goto out;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900903 if (x->props.output_mark) {
904 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
905 if (ret)
906 goto out;
907 }
Steffen Klassert85981122017-08-31 10:37:00 +0200908 if (x->security)
909 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700910out:
911 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700912}
913
914static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
915{
916 struct xfrm_dump_info *sp = ptr;
917 struct sk_buff *in_skb = sp->in_skb;
918 struct sk_buff *skb = sp->out_skb;
919 struct xfrm_usersa_info *p;
920 struct nlmsghdr *nlh;
921 int err;
922
Eric W. Biederman15e47302012-09-07 20:12:54 +0000923 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700924 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
925 if (nlh == NULL)
926 return -EMSGSIZE;
927
928 p = nlmsg_data(nlh);
929
930 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700931 if (err) {
932 nlmsg_cancel(skb, nlh);
933 return err;
934 }
Thomas Graf98250692007-08-22 12:47:26 -0700935 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Timo Teras4c563f72008-02-28 21:31:08 -0800939static int xfrm_dump_sa_done(struct netlink_callback *cb)
940{
941 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800942 struct sock *sk = cb->skb->sk;
943 struct net *net = sock_net(sk);
944
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200945 if (cb->args[0])
946 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800947 return 0;
948}
949
Nicolas Dichteld3623092014-02-14 15:30:36 +0100950static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
952{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800953 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800954 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 struct xfrm_dump_info info;
956
Timo Teras4c563f72008-02-28 21:31:08 -0800957 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
958 sizeof(cb->args) - sizeof(cb->args[0]));
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 info.in_skb = cb->skb;
961 info.out_skb = skb;
962 info.nlmsg_seq = cb->nlh->nlmsg_seq;
963 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800964
965 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100966 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100967 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100968 u8 proto = 0;
969 int err;
970
Johannes Bergfceb6432017-04-12 14:34:07 +0200971 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
972 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100973 if (err < 0)
974 return err;
975
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100976 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200977 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
978 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100979 if (filter == NULL)
980 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100981 }
982
983 if (attrs[XFRMA_PROTO])
984 proto = nla_get_u8(attrs[XFRMA_PROTO]);
985
986 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200987 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800988 }
989
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800990 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 return skb->len;
993}
994
995static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
996 struct xfrm_state *x, u32 seq)
997{
998 struct xfrm_dump_info info;
999 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001000 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Thomas Graf7deb2262007-08-22 13:57:39 -07001002 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!skb)
1004 return ERR_PTR(-ENOMEM);
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 info.in_skb = in_skb;
1007 info.out_skb = skb;
1008 info.nlmsg_seq = seq;
1009 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Mathias Krause864745d2012-09-13 11:41:26 +00001011 err = dump_one_state(x, 0, &info);
1012 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001014 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016
1017 return skb;
1018}
1019
Michal Kubecek21ee5432014-06-03 10:26:06 +02001020/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1021 * Must be called with RCU read lock.
1022 */
1023static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1024 u32 pid, unsigned int group)
1025{
1026 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1027
1028 if (nlsk)
1029 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1030 else
1031 return -1;
1032}
1033
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001034static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001035{
1036 return NLMSG_ALIGN(4)
1037 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001038 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1039 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1040 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001041}
1042
Alexey Dobriyane0710412010-01-23 13:37:10 +00001043static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001044 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001045{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001046 struct xfrmk_spdinfo si;
1047 struct xfrmu_spdinfo spc;
1048 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001049 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001050 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001051 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001052 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001053 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001054
Eric W. Biederman15e47302012-09-07 20:12:54 +00001055 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001056 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001057 return -EMSGSIZE;
1058
1059 f = nlmsg_data(nlh);
1060 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001061 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001062 spc.incnt = si.incnt;
1063 spc.outcnt = si.outcnt;
1064 spc.fwdcnt = si.fwdcnt;
1065 spc.inscnt = si.inscnt;
1066 spc.outscnt = si.outscnt;
1067 spc.fwdscnt = si.fwdscnt;
1068 sph.spdhcnt = si.spdhcnt;
1069 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001070
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001071 do {
1072 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1073
1074 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1075 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1076 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1077 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1078 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1079
David S. Miller1d1e34d2012-06-27 21:57:03 -07001080 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1081 if (!err)
1082 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001083 if (!err)
1084 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1085 if (!err)
1086 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001087 if (err) {
1088 nlmsg_cancel(skb, nlh);
1089 return err;
1090 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001091
Johannes Berg053c0952015-01-16 22:09:00 +01001092 nlmsg_end(skb, nlh);
1093 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001094}
1095
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001096static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1097 struct nlattr **attrs)
1098{
1099 struct net *net = sock_net(skb->sk);
1100 struct xfrmu_spdhthresh *thresh4 = NULL;
1101 struct xfrmu_spdhthresh *thresh6 = NULL;
1102
1103 /* selector prefixlen thresholds to hash policies */
1104 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1105 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1106
1107 if (nla_len(rta) < sizeof(*thresh4))
1108 return -EINVAL;
1109 thresh4 = nla_data(rta);
1110 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1111 return -EINVAL;
1112 }
1113 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1114 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1115
1116 if (nla_len(rta) < sizeof(*thresh6))
1117 return -EINVAL;
1118 thresh6 = nla_data(rta);
1119 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1120 return -EINVAL;
1121 }
1122
1123 if (thresh4 || thresh6) {
1124 write_seqlock(&net->xfrm.policy_hthresh.lock);
1125 if (thresh4) {
1126 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1127 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1128 }
1129 if (thresh6) {
1130 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1131 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1132 }
1133 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1134
1135 xfrm_policy_hash_rebuild(net);
1136 }
1137
1138 return 0;
1139}
1140
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001141static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001142 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001143{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001144 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001145 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001146 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001147 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001148 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001149 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001150
Thomas Graf7deb2262007-08-22 13:57:39 -07001151 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001152 if (r_skb == NULL)
1153 return -ENOMEM;
1154
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001155 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1156 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001157
Eric W. Biederman15e47302012-09-07 20:12:54 +00001158 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001159}
1160
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001161static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001162{
1163 return NLMSG_ALIGN(4)
1164 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1165 + nla_total_size(4); /* XFRMA_SAD_CNT */
1166}
1167
Alexey Dobriyane0710412010-01-23 13:37:10 +00001168static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001169 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001171 struct xfrmk_sadinfo si;
1172 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001173 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001174 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001175 u32 *f;
1176
Eric W. Biederman15e47302012-09-07 20:12:54 +00001177 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001178 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001179 return -EMSGSIZE;
1180
1181 f = nlmsg_data(nlh);
1182 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001183 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001184
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001185 sh.sadhmcnt = si.sadhmcnt;
1186 sh.sadhcnt = si.sadhcnt;
1187
David S. Miller1d1e34d2012-06-27 21:57:03 -07001188 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1189 if (!err)
1190 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1191 if (err) {
1192 nlmsg_cancel(skb, nlh);
1193 return err;
1194 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001195
Johannes Berg053c0952015-01-16 22:09:00 +01001196 nlmsg_end(skb, nlh);
1197 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001198}
1199
1200static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001201 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001202{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001203 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001204 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001205 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001206 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001207 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001208 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001209
Thomas Graf7deb2262007-08-22 13:57:39 -07001210 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001211 if (r_skb == NULL)
1212 return -ENOMEM;
1213
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001214 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1215 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001216
Eric W. Biederman15e47302012-09-07 20:12:54 +00001217 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001218}
1219
Christoph Hellwig22e70052007-01-02 15:22:30 -08001220static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001221 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001223 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001224 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 struct xfrm_state *x;
1226 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001227 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001229 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (x == NULL)
1231 goto out_noput;
1232
1233 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1234 if (IS_ERR(resp_skb)) {
1235 err = PTR_ERR(resp_skb);
1236 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001237 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239 xfrm_state_put(x);
1240out_noput:
1241 return err;
1242}
1243
Christoph Hellwig22e70052007-01-02 15:22:30 -08001244static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001245 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001247 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 struct xfrm_state *x;
1249 struct xfrm_userspi_info *p;
1250 struct sk_buff *resp_skb;
1251 xfrm_address_t *daddr;
1252 int family;
1253 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001254 u32 mark;
1255 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Thomas Graf7b67c852007-08-22 13:53:52 -07001257 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001258 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (err)
1260 goto out_noput;
1261
1262 family = p->info.family;
1263 daddr = &p->info.id.daddr;
1264
1265 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001266
1267 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001269 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001270 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 xfrm_state_put(x);
1272 x = NULL;
1273 }
1274 }
1275
1276 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001277 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 p->info.id.proto, daddr,
1279 &p->info.saddr, 1,
1280 family);
1281 err = -ENOENT;
1282 if (x == NULL)
1283 goto out_noput;
1284
Herbert Xu658b2192007-10-09 13:29:52 -07001285 err = xfrm_alloc_spi(x, p->min, p->max);
1286 if (err)
1287 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Herbert Xu658b2192007-10-09 13:29:52 -07001289 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (IS_ERR(resp_skb)) {
1291 err = PTR_ERR(resp_skb);
1292 goto out;
1293 }
1294
Eric W. Biederman15e47302012-09-07 20:12:54 +00001295 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297out:
1298 xfrm_state_put(x);
1299out_noput:
1300 return err;
1301}
1302
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001303static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 switch (dir) {
1306 case XFRM_POLICY_IN:
1307 case XFRM_POLICY_OUT:
1308 case XFRM_POLICY_FWD:
1309 break;
1310
1311 default:
1312 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 return 0;
1316}
1317
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001318static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001319{
1320 switch (type) {
1321 case XFRM_POLICY_TYPE_MAIN:
1322#ifdef CONFIG_XFRM_SUB_POLICY
1323 case XFRM_POLICY_TYPE_SUB:
1324#endif
1325 break;
1326
1327 default:
1328 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001329 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001330
1331 return 0;
1332}
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1335{
Fan Due682adf02013-11-07 17:47:48 +08001336 int ret;
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 switch (p->share) {
1339 case XFRM_SHARE_ANY:
1340 case XFRM_SHARE_SESSION:
1341 case XFRM_SHARE_USER:
1342 case XFRM_SHARE_UNIQUE:
1343 break;
1344
1345 default:
1346 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 switch (p->action) {
1350 case XFRM_POLICY_ALLOW:
1351 case XFRM_POLICY_BLOCK:
1352 break;
1353
1354 default:
1355 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 switch (p->sel.family) {
1359 case AF_INET:
1360 break;
1361
1362 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001363#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 break;
1365#else
1366 return -EAFNOSUPPORT;
1367#endif
1368
1369 default:
1370 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Fan Due682adf02013-11-07 17:47:48 +08001373 ret = verify_policy_dir(p->dir);
1374 if (ret)
1375 return ret;
1376 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1377 return -EINVAL;
1378
1379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
Thomas Graf5424f322007-08-22 14:01:33 -07001382static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001383{
Thomas Graf5424f322007-08-22 14:01:33 -07001384 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001385 struct xfrm_user_sec_ctx *uctx;
1386
1387 if (!rt)
1388 return 0;
1389
Thomas Graf5424f322007-08-22 14:01:33 -07001390 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001391 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001392}
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1395 int nr)
1396{
1397 int i;
1398
1399 xp->xfrm_nr = nr;
1400 for (i = 0; i < nr; i++, ut++) {
1401 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1402
1403 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1404 memcpy(&t->saddr, &ut->saddr,
1405 sizeof(xfrm_address_t));
1406 t->reqid = ut->reqid;
1407 t->mode = ut->mode;
1408 t->share = ut->share;
1409 t->optional = ut->optional;
1410 t->aalgos = ut->aalgos;
1411 t->ealgos = ut->ealgos;
1412 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001413 /* If all masks are ~0, then we allow all algorithms. */
1414 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001415 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417}
1418
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001419static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1420{
Steffen Klassert732706a2017-12-08 08:07:25 +01001421 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001422 int i;
1423
1424 if (nr > XFRM_MAX_DEPTH)
1425 return -EINVAL;
1426
Steffen Klassert732706a2017-12-08 08:07:25 +01001427 prev_family = family;
1428
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001429 for (i = 0; i < nr; i++) {
1430 /* We never validated the ut->family value, so many
1431 * applications simply leave it at zero. The check was
1432 * never made and ut->family was ignored because all
1433 * templates could be assumed to have the same family as
1434 * the policy itself. Now that we will have ipv4-in-ipv6
1435 * and ipv6-in-ipv4 tunnels, this is no longer true.
1436 */
1437 if (!ut[i].family)
1438 ut[i].family = family;
1439
Steffen Klassert732706a2017-12-08 08:07:25 +01001440 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1441 (ut[i].family != prev_family))
1442 return -EINVAL;
1443
1444 prev_family = ut[i].family;
1445
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001446 switch (ut[i].family) {
1447 case AF_INET:
1448 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001449#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001450 case AF_INET6:
1451 break;
1452#endif
1453 default:
1454 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001455 }
Cong Wang6a53b752017-11-27 11:15:16 -08001456
1457 switch (ut[i].id.proto) {
1458 case IPPROTO_AH:
1459 case IPPROTO_ESP:
1460 case IPPROTO_COMP:
1461#if IS_ENABLED(CONFIG_IPV6)
1462 case IPPROTO_ROUTING:
1463 case IPPROTO_DSTOPTS:
1464#endif
1465 case IPSEC_PROTO_ANY:
1466 break;
1467 default:
1468 return -EINVAL;
1469 }
1470
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001471 }
1472
1473 return 0;
1474}
1475
Thomas Graf5424f322007-08-22 14:01:33 -07001476static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Thomas Graf5424f322007-08-22 14:01:33 -07001478 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 if (!rt) {
1481 pol->xfrm_nr = 0;
1482 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001483 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1484 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001485 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001487 err = validate_tmpl(nr, utmpl, pol->family);
1488 if (err)
1489 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Thomas Graf5424f322007-08-22 14:01:33 -07001491 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493 return 0;
1494}
1495
Thomas Graf5424f322007-08-22 14:01:33 -07001496static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001497{
Thomas Graf5424f322007-08-22 14:01:33 -07001498 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001499 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001500 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001501 int err;
1502
1503 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001504 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001505 type = upt->type;
1506 }
1507
1508 err = verify_policy_type(type);
1509 if (err)
1510 return err;
1511
1512 *tp = type;
1513 return 0;
1514}
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1517{
1518 xp->priority = p->priority;
1519 xp->index = p->index;
1520 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1521 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1522 xp->action = p->action;
1523 xp->flags = p->flags;
1524 xp->family = p->sel.family;
1525 /* XXX xp->share = p->share; */
1526}
1527
1528static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1529{
Mathias Krause7b789832012-09-19 11:33:40 +00001530 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1532 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1533 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1534 p->priority = xp->priority;
1535 p->index = xp->index;
1536 p->sel.family = xp->family;
1537 p->dir = dir;
1538 p->action = xp->action;
1539 p->flags = xp->flags;
1540 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1541}
1542
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001543static 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 -07001544{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001545 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int err;
1547
1548 if (!xp) {
1549 *errp = -ENOMEM;
1550 return NULL;
1551 }
1552
1553 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001554
Thomas Graf35a7aa02007-08-22 14:00:40 -07001555 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001556 if (err)
1557 goto error;
1558
Thomas Graf35a7aa02007-08-22 14:00:40 -07001559 if (!(err = copy_from_user_tmpl(xp, attrs)))
1560 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001561 if (err)
1562 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001564 xfrm_mark_get(attrs, &xp->mark);
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001567 error:
1568 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001569 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001570 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001571 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Christoph Hellwig22e70052007-01-02 15:22:30 -08001574static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001575 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001577 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001578 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001580 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 int err;
1582 int excl;
1583
1584 err = verify_newpolicy_info(p);
1585 if (err)
1586 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001587 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001588 if (err)
1589 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001591 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (!xp)
1593 return err;
1594
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001595 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001596 * Aha! this is anti-netlink really i.e more pfkey derived
1597 * in netlink excl is a flag and you wouldnt need
1598 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1600 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001601 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001604 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 kfree(xp);
1606 return err;
1607 }
1608
Herbert Xuf60f6b82005-06-18 22:44:37 -07001609 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001610 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001611 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001612 km_policy_notify(xp, p->dir, &c);
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 xfrm_pol_put(xp);
1615
1616 return 0;
1617}
1618
1619static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1620{
1621 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1622 int i;
1623
1624 if (xp->xfrm_nr == 0)
1625 return 0;
1626
1627 for (i = 0; i < xp->xfrm_nr; i++) {
1628 struct xfrm_user_tmpl *up = &vec[i];
1629 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1630
Mathias Krause1f868402012-09-19 11:33:41 +00001631 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001633 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1635 up->reqid = kp->reqid;
1636 up->mode = kp->mode;
1637 up->share = kp->share;
1638 up->optional = kp->optional;
1639 up->aalgos = kp->aalgos;
1640 up->ealgos = kp->ealgos;
1641 up->calgos = kp->calgos;
1642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Thomas Grafc0144be2007-08-22 13:55:43 -07001644 return nla_put(skb, XFRMA_TMPL,
1645 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001646}
1647
Serge Hallyn0d681622006-07-24 23:30:44 -07001648static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1649{
1650 if (x->security) {
1651 return copy_sec_ctx(x->security, skb);
1652 }
1653 return 0;
1654}
1655
1656static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1657{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001658 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001659 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001660 return 0;
1661}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001662static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001663{
1664#ifdef CONFIG_XFRM_SUB_POLICY
1665 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1666#else
1667 return 0;
1668#endif
1669}
Serge Hallyn0d681622006-07-24 23:30:44 -07001670
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001671#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001672static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001673{
Thomas Grafc0144be2007-08-22 13:55:43 -07001674 struct xfrm_userpolicy_type upt = {
1675 .type = type,
1676 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001677
Thomas Grafc0144be2007-08-22 13:55:43 -07001678 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001679}
1680
1681#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001682static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001683{
1684 return 0;
1685}
1686#endif
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1689{
1690 struct xfrm_dump_info *sp = ptr;
1691 struct xfrm_userpolicy_info *p;
1692 struct sk_buff *in_skb = sp->in_skb;
1693 struct sk_buff *skb = sp->out_skb;
1694 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001695 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Eric W. Biederman15e47302012-09-07 20:12:54 +00001697 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001698 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1699 if (nlh == NULL)
1700 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Thomas Graf7b67c852007-08-22 13:53:52 -07001702 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001704 err = copy_to_user_tmpl(xp, skb);
1705 if (!err)
1706 err = copy_to_user_sec_ctx(xp, skb);
1707 if (!err)
1708 err = copy_to_user_policy_type(xp->type, skb);
1709 if (!err)
1710 err = xfrm_mark_put(skb, &xp->mark);
1711 if (err) {
1712 nlmsg_cancel(skb, nlh);
1713 return err;
1714 }
Thomas Graf98250692007-08-22 12:47:26 -07001715 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Timo Teras4c563f72008-02-28 21:31:08 -08001719static int xfrm_dump_policy_done(struct netlink_callback *cb)
1720{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001721 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001722 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001723
Fan Du283bc9f2013-11-07 17:47:50 +08001724 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001725 return 0;
1726}
1727
Herbert Xu1137b5e2017-10-19 20:51:10 +08001728static int xfrm_dump_policy_start(struct netlink_callback *cb)
1729{
1730 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1731
1732 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1733
1734 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1735 return 0;
1736}
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1739{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001740 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001741 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct xfrm_dump_info info;
1743
1744 info.in_skb = cb->skb;
1745 info.out_skb = skb;
1746 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1747 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001748
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001749 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 return skb->len;
1752}
1753
1754static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1755 struct xfrm_policy *xp,
1756 int dir, u32 seq)
1757{
1758 struct xfrm_dump_info info;
1759 struct sk_buff *skb;
Mathias Krausec25463722012-09-14 09:58:32 +00001760 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Thomas Graf7deb2262007-08-22 13:57:39 -07001762 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (!skb)
1764 return ERR_PTR(-ENOMEM);
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 info.in_skb = in_skb;
1767 info.out_skb = skb;
1768 info.nlmsg_seq = seq;
1769 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Mathias Krausec25463722012-09-14 09:58:32 +00001771 err = dump_one_policy(xp, dir, 0, &info);
1772 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 kfree_skb(skb);
Mathias Krausec25463722012-09-14 09:58:32 +00001774 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776
1777 return skb;
1778}
1779
Christoph Hellwig22e70052007-01-02 15:22:30 -08001780static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001781 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001783 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 struct xfrm_policy *xp;
1785 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001786 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001788 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001790 struct xfrm_mark m;
1791 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Thomas Graf7b67c852007-08-22 13:53:52 -07001793 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1795
Thomas Graf35a7aa02007-08-22 14:00:40 -07001796 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001797 if (err)
1798 return err;
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 err = verify_policy_dir(p->dir);
1801 if (err)
1802 return err;
1803
1804 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001805 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001806 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001807 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001808 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001809
Thomas Graf35a7aa02007-08-22 14:00:40 -07001810 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001811 if (err)
1812 return err;
1813
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001814 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001815 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001816 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001817
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001818 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001819 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001820 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001821 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001822 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001823 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001824 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (xp == NULL)
1827 return -ENOENT;
1828
1829 if (!delete) {
1830 struct sk_buff *resp_skb;
1831
1832 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1833 if (IS_ERR(resp_skb)) {
1834 err = PTR_ERR(resp_skb);
1835 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001836 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001837 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001839 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001840 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001841
1842 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001843 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001844
Herbert Xue7443892005-06-18 22:44:18 -07001845 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001846 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001847 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001848 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001849 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001852out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001853 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 return err;
1855}
1856
Christoph Hellwig22e70052007-01-02 15:22:30 -08001857static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001858 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001860 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001861 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001862 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001863 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Tetsuo Handa2e710292014-04-22 21:48:30 +09001865 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001866 if (err) {
1867 if (err == -ESRCH) /* empty table */
1868 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001869 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001870 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001871 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001872 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001873 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001874 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001875 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001876 km_state_notify(NULL, &c);
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return 0;
1879}
1880
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001881static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001882{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001883 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001884 xfrm_replay_state_esn_len(x->replay_esn) :
1885 sizeof(struct xfrm_replay_state);
1886
Thomas Graf7deb2262007-08-22 13:57:39 -07001887 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001888 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001889 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001890 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001891 + nla_total_size(4) /* XFRM_AE_RTHR */
1892 + nla_total_size(4); /* XFRM_AE_ETHR */
1893}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001894
David S. Miller214e0052011-02-24 00:02:38 -05001895static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001896{
1897 struct xfrm_aevent_id *id;
1898 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001899 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001900
Eric W. Biederman15e47302012-09-07 20:12:54 +00001901 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001902 if (nlh == NULL)
1903 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001904
Thomas Graf7b67c852007-08-22 13:53:52 -07001905 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001906 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001907 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001908 id->sa_id.spi = x->id.spi;
1909 id->sa_id.family = x->props.family;
1910 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001911 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001912 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001913 id->flags = c->data.aevent;
1914
David S. Millerd0fde792012-03-29 04:02:26 -04001915 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001916 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1917 xfrm_replay_state_esn_len(x->replay_esn),
1918 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001919 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001920 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1921 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001922 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001923 if (err)
1924 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001925 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1926 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001927 if (err)
1928 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001929
David S. Miller1d1e34d2012-06-27 21:57:03 -07001930 if (id->flags & XFRM_AE_RTHR) {
1931 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1932 if (err)
1933 goto out_cancel;
1934 }
1935 if (id->flags & XFRM_AE_ETHR) {
1936 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1937 x->replay_maxage * 10 / HZ);
1938 if (err)
1939 goto out_cancel;
1940 }
1941 err = xfrm_mark_put(skb, &x->mark);
1942 if (err)
1943 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001944
Johannes Berg053c0952015-01-16 22:09:00 +01001945 nlmsg_end(skb, nlh);
1946 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001947
David S. Miller1d1e34d2012-06-27 21:57:03 -07001948out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001949 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001950 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001951}
1952
Christoph Hellwig22e70052007-01-02 15:22:30 -08001953static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001954 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001955{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001956 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001957 struct xfrm_state *x;
1958 struct sk_buff *r_skb;
1959 int err;
1960 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001961 u32 mark;
1962 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001963 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964 struct xfrm_usersa_id *id = &p->sa_id;
1965
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001966 mark = xfrm_mark_get(attrs, &m);
1967
1968 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001969 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001970 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001971
1972 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1973 if (r_skb == NULL) {
1974 xfrm_state_put(x);
1975 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001976 }
1977
1978 /*
1979 * XXX: is this lock really needed - none of the other
1980 * gets lock (the concern is things getting updated
1981 * while we are still reading) - jhs
1982 */
1983 spin_lock_bh(&x->lock);
1984 c.data.aevent = p->flags;
1985 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001986 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001987
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001988 err = build_aevent(r_skb, x, &c);
1989 BUG_ON(err < 0);
1990
Eric W. Biederman15e47302012-09-07 20:12:54 +00001991 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001992 spin_unlock_bh(&x->lock);
1993 xfrm_state_put(x);
1994 return err;
1995}
1996
Christoph Hellwig22e70052007-01-02 15:22:30 -08001997static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001998 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001999{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002000 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002001 struct xfrm_state *x;
2002 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002003 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002004 u32 mark = 0;
2005 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002006 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002007 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002008 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002009 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002010 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2011 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002012
Michael Rossberg4e077232015-09-29 11:25:08 +02002013 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002014 return err;
2015
2016 /* pedantic mode - thou shalt sayeth replaceth */
2017 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2018 return err;
2019
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002020 mark = xfrm_mark_get(attrs, &m);
2021
2022 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 -08002023 if (x == NULL)
2024 return -ESRCH;
2025
2026 if (x->km.state != XFRM_STATE_VALID)
2027 goto out;
2028
Steffen Klassert4479ff72013-09-09 09:39:01 +02002029 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002030 if (err)
2031 goto out;
2032
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002033 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002034 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002035 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002036
2037 c.event = nlh->nlmsg_type;
2038 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002039 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002040 c.data.aevent = XFRM_AE_CU;
2041 km_state_notify(x, &c);
2042 err = 0;
2043out:
2044 xfrm_state_put(x);
2045 return err;
2046}
2047
Christoph Hellwig22e70052007-01-02 15:22:30 -08002048static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002049 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002051 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002052 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002053 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002054 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002055
Thomas Graf35a7aa02007-08-22 14:00:40 -07002056 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002057 if (err)
2058 return err;
2059
Tetsuo Handa2e710292014-04-22 21:48:30 +09002060 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002061 if (err) {
2062 if (err == -ESRCH) /* empty table */
2063 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002064 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002065 }
2066
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002067 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002068 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002069 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002070 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002071 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002072 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
2074}
2075
Christoph Hellwig22e70052007-01-02 15:22:30 -08002076static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002077 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002078{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002079 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002080 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002081 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002082 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002083 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002084 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002085 struct xfrm_mark m;
2086 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002087
Thomas Graf35a7aa02007-08-22 14:00:40 -07002088 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002089 if (err)
2090 return err;
2091
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002092 err = verify_policy_dir(p->dir);
2093 if (err)
2094 return err;
2095
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002096 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002097 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002098 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002099 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002100 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002101
Thomas Graf35a7aa02007-08-22 14:00:40 -07002102 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002103 if (err)
2104 return err;
2105
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002106 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002107 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002108 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002109
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002110 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002111 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002112 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002113 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002114 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002115 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002116 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002117 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002118 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002119 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002120
Timo Teräsea2dea9d2010-03-31 00:17:05 +00002121 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002122 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002123
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002124 err = 0;
2125 if (up->hard) {
2126 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002127 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002128 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002129 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002130
2131out:
2132 xfrm_pol_put(xp);
2133 return err;
2134}
2135
Christoph Hellwig22e70052007-01-02 15:22:30 -08002136static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002137 struct nlattr **attrs)
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002138{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002139 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002140 struct xfrm_state *x;
2141 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002142 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002143 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002144 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002145 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002146
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002147 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002148
David S. Miller3a765aa2007-02-26 14:52:21 -08002149 err = -ENOENT;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002150 if (x == NULL)
2151 return err;
2152
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002153 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002154 err = -EINVAL;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002155 if (x->km.state != XFRM_STATE_VALID)
2156 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002157 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002158
Joy Latten161a09e2006-11-27 13:11:54 -06002159 if (ue->hard) {
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002160 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002161 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002162 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002163 err = 0;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002164out:
2165 spin_unlock_bh(&x->lock);
2166 xfrm_state_put(x);
2167 return err;
2168}
2169
Christoph Hellwig22e70052007-01-02 15:22:30 -08002170static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002171 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002172{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002173 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002174 struct xfrm_policy *xp;
2175 struct xfrm_user_tmpl *ut;
2176 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002177 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002178 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002179
Thomas Graf7b67c852007-08-22 13:53:52 -07002180 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002181 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002182 int err = -ENOMEM;
2183
2184 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002185 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002186
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002187 xfrm_mark_get(attrs, &mark);
2188
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002189 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002190 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002191 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002192
2193 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002194 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002195 if (!xp)
2196 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002197
2198 memcpy(&x->id, &ua->id, sizeof(ua->id));
2199 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2200 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002201 xp->mark.m = x->mark.m = mark.m;
2202 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002203 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002204 /* extract the templates and for each call km_key */
2205 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2206 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2207 memcpy(&x->id, &t->id, sizeof(x->id));
2208 x->props.mode = t->mode;
2209 x->props.reqid = t->reqid;
2210 x->props.family = ut->family;
2211 t->aalgos = ua->aalgos;
2212 t->ealgos = ua->ealgos;
2213 t->calgos = ua->calgos;
2214 err = km_query(x, t, xp);
2215
2216 }
2217
2218 kfree(x);
2219 kfree(xp);
2220
2221 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002222
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002223free_state:
2224 kfree(x);
2225nomem:
2226 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002227}
2228
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002229#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002230static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002231 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002232 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002233{
Thomas Graf5424f322007-08-22 14:01:33 -07002234 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002235 struct xfrm_user_migrate *um;
2236 int i, num_migrate;
2237
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002238 if (k != NULL) {
2239 struct xfrm_user_kmaddress *uk;
2240
2241 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2242 memcpy(&k->local, &uk->local, sizeof(k->local));
2243 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2244 k->family = uk->family;
2245 k->reserved = uk->reserved;
2246 }
2247
Thomas Graf5424f322007-08-22 14:01:33 -07002248 um = nla_data(rt);
2249 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002250
2251 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2252 return -EINVAL;
2253
2254 for (i = 0; i < num_migrate; i++, um++, ma++) {
2255 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2256 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2257 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2258 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2259
2260 ma->proto = um->proto;
2261 ma->mode = um->mode;
2262 ma->reqid = um->reqid;
2263
2264 ma->old_family = um->old_family;
2265 ma->new_family = um->new_family;
2266 }
2267
2268 *num = i;
2269 return 0;
2270}
2271
2272static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002273 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002274{
Thomas Graf7b67c852007-08-22 13:53:52 -07002275 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002276 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002277 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002278 u8 type;
2279 int err;
2280 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002281 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002282 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283
Thomas Graf35a7aa02007-08-22 14:00:40 -07002284 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002285 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002286
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002287 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2288
Thomas Graf5424f322007-08-22 14:01:33 -07002289 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002290 if (err)
2291 return err;
2292
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002293 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294 if (err)
2295 return err;
2296
2297 if (!n)
2298 return 0;
2299
Antony Antony4ab47d42017-06-06 12:12:13 +02002300 if (attrs[XFRMA_ENCAP]) {
2301 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2302 sizeof(*encap), GFP_KERNEL);
2303 if (!encap)
2304 return 0;
2305 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002306
Antony Antony4ab47d42017-06-06 12:12:13 +02002307 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2308
2309 kfree(encap);
2310
2311 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002312}
2313#else
2314static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002315 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002316{
2317 return -ENOPROTOOPT;
2318}
2319#endif
2320
2321#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002322static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002323{
2324 struct xfrm_user_migrate um;
2325
2326 memset(&um, 0, sizeof(um));
2327 um.proto = m->proto;
2328 um.mode = m->mode;
2329 um.reqid = m->reqid;
2330 um.old_family = m->old_family;
2331 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2332 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2333 um.new_family = m->new_family;
2334 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2335 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2336
Thomas Grafc0144be2007-08-22 13:55:43 -07002337 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002338}
2339
David S. Miller183cad12011-02-24 00:28:01 -05002340static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002341{
2342 struct xfrm_user_kmaddress uk;
2343
2344 memset(&uk, 0, sizeof(uk));
2345 uk.family = k->family;
2346 uk.reserved = k->reserved;
2347 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002348 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002349
2350 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2351}
2352
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002353static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2354 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002355{
2356 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002357 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002358 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002359 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2360 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002361}
2362
David S. Miller183cad12011-02-24 00:28:01 -05002363static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2364 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002365 const struct xfrm_selector *sel,
2366 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002367{
David S. Miller183cad12011-02-24 00:28:01 -05002368 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002369 struct xfrm_userpolicy_id *pol_id;
2370 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002371 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002372
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002373 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2374 if (nlh == NULL)
2375 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002376
Thomas Graf7b67c852007-08-22 13:53:52 -07002377 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002378 /* copy data from selector, dir, and type to the pol_id */
2379 memset(pol_id, 0, sizeof(*pol_id));
2380 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2381 pol_id->dir = dir;
2382
David S. Miller1d1e34d2012-06-27 21:57:03 -07002383 if (k != NULL) {
2384 err = copy_to_user_kmaddress(k, skb);
2385 if (err)
2386 goto out_cancel;
2387 }
Antony Antony8bafd732017-06-06 12:12:14 +02002388 if (encap) {
2389 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2390 if (err)
2391 goto out_cancel;
2392 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002393 err = copy_to_user_policy_type(type, skb);
2394 if (err)
2395 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002396 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002397 err = copy_to_user_migrate(mp, skb);
2398 if (err)
2399 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002400 }
2401
Johannes Berg053c0952015-01-16 22:09:00 +01002402 nlmsg_end(skb, nlh);
2403 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002404
2405out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002406 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002407 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002408}
2409
David S. Miller183cad12011-02-24 00:28:01 -05002410static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2411 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002412 const struct xfrm_kmaddress *k,
2413 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002414{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002415 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002416 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002417 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002418
Antony Antony8bafd732017-06-06 12:12:14 +02002419 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2420 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002421 if (skb == NULL)
2422 return -ENOMEM;
2423
2424 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002425 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2426 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002427
Michal Kubecek21ee5432014-06-03 10:26:06 +02002428 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002429}
2430#else
David S. Miller183cad12011-02-24 00:28:01 -05002431static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2432 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002433 const struct xfrm_kmaddress *k,
2434 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002435{
2436 return -ENOPROTOOPT;
2437}
2438#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002439
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002440#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002441
2442static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002443 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002444 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2445 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2446 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2447 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2448 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2449 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002450 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002451 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002452 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002453 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002454 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002455 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002456 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002457 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2458 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002459 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002460 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002461 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002462 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002463 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464};
2465
Thomas Graf492b5582005-05-03 14:26:40 -07002466#undef XMSGSIZE
2467
Thomas Grafcf5cb792007-08-22 13:59:04 -07002468static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002469 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2470 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2471 [XFRMA_LASTUSED] = { .type = NLA_U64},
2472 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002473 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002474 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2475 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2476 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2477 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2478 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2479 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2480 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2481 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2482 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2483 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2484 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2485 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2486 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2487 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002488 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002489 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002490 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002491 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002492 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002493 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002494 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002495 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Michal Kubeceke7191352017-11-29 18:23:56 +01002496 [XFRMA_OUTPUT_MARK] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002497};
2498
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002499static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2500 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2501 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2502};
2503
Mathias Krause05600a72013-02-24 14:10:27 +01002504static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002505 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002506 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002508 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002509 const struct nla_policy *nla_pol;
2510 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002511} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2512 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2513 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2514 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002515 .dump = xfrm_dump_sa,
2516 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002517 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2518 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2519 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002520 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002521 .dump = xfrm_dump_policy,
2522 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002523 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002524 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002525 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002526 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2527 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002528 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002529 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2530 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002531 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2532 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002533 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002534 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002535 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2536 .nla_pol = xfrma_spd_policy,
2537 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002538 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539};
2540
Johannes Berg2d4bc932017-04-12 14:34:04 +02002541static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2542 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002544 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002545 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002546 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002547 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Fan Du74005992015-01-27 17:00:29 +08002549#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002550 if (in_compat_syscall())
Yi Zhao83e2d0582016-11-29 18:09:01 +08002551 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002552#endif
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002556 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 type -= XFRM_MSG_BASE;
2559 link = &xfrm_dispatch[type];
2560
2561 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002562 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002563 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Thomas Graf492b5582005-05-03 14:26:40 -07002565 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2566 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002567 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002569 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002571 {
2572 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002573 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002574 .dump = link->dump,
2575 .done = link->done,
2576 };
2577 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 }
2580
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002581 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2582 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002583 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002584 if (err < 0)
2585 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
2587 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002588 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
Thomas Graf5424f322007-08-22 14:01:33 -07002590 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591}
2592
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002593static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Fan Du283bc9f2013-11-07 17:47:50 +08002595 struct net *net = sock_net(skb->sk);
2596
2597 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002598 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002599 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600}
2601
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002602static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002603{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002604 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2605 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002606}
2607
David S. Miller214e0052011-02-24 00:02:38 -05002608static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
2610 struct xfrm_user_expire *ue;
2611 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002612 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Eric W. Biederman15e47302012-09-07 20:12:54 +00002614 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002615 if (nlh == NULL)
2616 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Thomas Graf7b67c852007-08-22 13:53:52 -07002618 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002620 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002621 /* clear the padding bytes */
2622 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
David S. Miller1d1e34d2012-06-27 21:57:03 -07002624 err = xfrm_mark_put(skb, &x->mark);
2625 if (err)
2626 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002627
Johannes Berg053c0952015-01-16 22:09:00 +01002628 nlmsg_end(skb, nlh);
2629 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
David S. Miller214e0052011-02-24 00:02:38 -05002632static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002634 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 struct sk_buff *skb;
2636
Thomas Graf7deb2262007-08-22 13:57:39 -07002637 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 if (skb == NULL)
2639 return -ENOMEM;
2640
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002641 if (build_expire(skb, x, c) < 0) {
2642 kfree_skb(skb);
2643 return -EMSGSIZE;
2644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Michal Kubecek21ee5432014-06-03 10:26:06 +02002646 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
David S. Miller214e0052011-02-24 00:02:38 -05002649static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002650{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002651 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002652 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002653 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002654
Steffen Klassertd8647b72011-03-08 00:10:27 +00002655 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002656 if (skb == NULL)
2657 return -ENOMEM;
2658
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002659 err = build_aevent(skb, x, c);
2660 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002661
Michal Kubecek21ee5432014-06-03 10:26:06 +02002662 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002663}
2664
David S. Miller214e0052011-02-24 00:02:38 -05002665static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002666{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002667 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002668 struct xfrm_usersa_flush *p;
2669 struct nlmsghdr *nlh;
2670 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002671 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002672
Thomas Graf7deb2262007-08-22 13:57:39 -07002673 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002674 if (skb == NULL)
2675 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002676
Eric W. Biederman15e47302012-09-07 20:12:54 +00002677 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002678 if (nlh == NULL) {
2679 kfree_skb(skb);
2680 return -EMSGSIZE;
2681 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002682
Thomas Graf7b67c852007-08-22 13:53:52 -07002683 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002684 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002685
Thomas Graf98250692007-08-22 12:47:26 -07002686 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002687
Michal Kubecek21ee5432014-06-03 10:26:06 +02002688 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002689}
2690
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002691static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002693 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002694 if (x->aead)
2695 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002696 if (x->aalg) {
2697 l += nla_total_size(sizeof(struct xfrm_algo) +
2698 (x->aalg->alg_key_len + 7) / 8);
2699 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2700 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002701 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002702 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002703 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002704 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002705 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002706 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002707 if (x->tfcpad)
2708 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002709 if (x->replay_esn)
2710 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002711 else
2712 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002713 if (x->security)
2714 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2715 x->security->ctx_len);
2716 if (x->coaddr)
2717 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002718 if (x->props.extra_flags)
2719 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002720 if (x->xso.dev)
2721 l += nla_total_size(sizeof(x->xso));
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002722 if (x->props.output_mark)
2723 l += nla_total_size(sizeof(x->props.output_mark));
Herbert Xu68325d32007-10-09 13:30:57 -07002724
Herbert Xud26f3982007-11-13 21:47:08 -08002725 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002726 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002727
2728 return l;
2729}
2730
David S. Miller214e0052011-02-24 00:02:38 -05002731static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002732{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002733 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002734 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002735 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002736 struct nlmsghdr *nlh;
2737 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002738 unsigned int len = xfrm_sa_len(x);
2739 unsigned int headlen;
2740 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002741
2742 headlen = sizeof(*p);
2743 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002744 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002745 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002746 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002747 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002748 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002749
Thomas Graf7deb2262007-08-22 13:57:39 -07002750 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002751 if (skb == NULL)
2752 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002753
Eric W. Biederman15e47302012-09-07 20:12:54 +00002754 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002755 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002756 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002757 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002758
Thomas Graf7b67c852007-08-22 13:53:52 -07002759 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002760 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002761 struct nlattr *attr;
2762
Thomas Graf7b67c852007-08-22 13:53:52 -07002763 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002764 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002765 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2766 id->spi = x->id.spi;
2767 id->family = x->props.family;
2768 id->proto = x->id.proto;
2769
Thomas Grafc0144be2007-08-22 13:55:43 -07002770 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002771 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002772 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002773 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002774
2775 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002776 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002777 err = copy_to_user_state_extra(x, p, skb);
2778 if (err)
2779 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002780
Thomas Graf98250692007-08-22 12:47:26 -07002781 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002782
Michal Kubecek21ee5432014-06-03 10:26:06 +02002783 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002784
David S. Miller1d1e34d2012-06-27 21:57:03 -07002785out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002786 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002787 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002788}
2789
David S. Miller214e0052011-02-24 00:02:38 -05002790static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791{
2792
2793 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002794 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002795 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002796 case XFRM_MSG_NEWAE:
2797 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002798 case XFRM_MSG_DELSA:
2799 case XFRM_MSG_UPDSA:
2800 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002801 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002802 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002803 return xfrm_notify_sa_flush(c);
2804 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002805 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2806 c->event);
2807 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808 }
2809
2810 return 0;
2811
2812}
2813
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002814static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2815 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002816{
2817 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2818 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002819 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002820 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2821 + userpolicy_type_attrsize();
2822}
2823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002825 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002827 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 struct xfrm_user_acquire *ua;
2829 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002830 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002832 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2833 if (nlh == NULL)
2834 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Thomas Graf7b67c852007-08-22 13:53:52 -07002836 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 memcpy(&ua->id, &x->id, sizeof(ua->id));
2838 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2839 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002840 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 ua->aalgos = xt->aalgos;
2842 ua->ealgos = xt->ealgos;
2843 ua->calgos = xt->calgos;
2844 ua->seq = x->km.seq = seq;
2845
David S. Miller1d1e34d2012-06-27 21:57:03 -07002846 err = copy_to_user_tmpl(xp, skb);
2847 if (!err)
2848 err = copy_to_user_state_sec_ctx(x, skb);
2849 if (!err)
2850 err = copy_to_user_policy_type(xp->type, skb);
2851 if (!err)
2852 err = xfrm_mark_put(skb, &xp->mark);
2853 if (err) {
2854 nlmsg_cancel(skb, nlh);
2855 return err;
2856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Johannes Berg053c0952015-01-16 22:09:00 +01002858 nlmsg_end(skb, nlh);
2859 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860}
2861
2862static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002863 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002865 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002867 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Thomas Graf7deb2262007-08-22 13:57:39 -07002869 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 if (skb == NULL)
2871 return -ENOMEM;
2872
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002873 err = build_acquire(skb, x, xt, xp);
2874 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Michal Kubecek21ee5432014-06-03 10:26:06 +02002876 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
2879/* User gives us xfrm_user_policy_info followed by an array of 0
2880 * or more templates.
2881 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002882static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 u8 *data, int len, int *dir)
2884{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002885 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2887 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2888 struct xfrm_policy *xp;
2889 int nr;
2890
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002891 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 case AF_INET:
2893 if (opt != IP_XFRM_POLICY) {
2894 *dir = -EOPNOTSUPP;
2895 return NULL;
2896 }
2897 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002898#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 case AF_INET6:
2900 if (opt != IPV6_XFRM_POLICY) {
2901 *dir = -EOPNOTSUPP;
2902 return NULL;
2903 }
2904 break;
2905#endif
2906 default:
2907 *dir = -EINVAL;
2908 return NULL;
2909 }
2910
2911 *dir = -EINVAL;
2912
2913 if (len < sizeof(*p) ||
2914 verify_newpolicy_info(p))
2915 return NULL;
2916
2917 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002918 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return NULL;
2920
Herbert Xua4f1bac2005-07-26 15:43:17 -07002921 if (p->dir > XFRM_POLICY_OUT)
2922 return NULL;
2923
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002924 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (xp == NULL) {
2926 *dir = -ENOBUFS;
2927 return NULL;
2928 }
2929
2930 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002931 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 copy_templates(xp, ut, nr);
2933
2934 *dir = p->dir;
2935
2936 return xp;
2937}
2938
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002939static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002940{
2941 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2942 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2943 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002944 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002945 + userpolicy_type_attrsize();
2946}
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002949 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950{
2951 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002952 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002953 struct nlmsghdr *nlh;
2954 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Eric W. Biederman15e47302012-09-07 20:12:54 +00002956 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002957 if (nlh == NULL)
2958 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Thomas Graf7b67c852007-08-22 13:53:52 -07002960 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002962 err = copy_to_user_tmpl(xp, skb);
2963 if (!err)
2964 err = copy_to_user_sec_ctx(xp, skb);
2965 if (!err)
2966 err = copy_to_user_policy_type(xp->type, skb);
2967 if (!err)
2968 err = xfrm_mark_put(skb, &xp->mark);
2969 if (err) {
2970 nlmsg_cancel(skb, nlh);
2971 return err;
2972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 upe->hard = !!hard;
2974
Johannes Berg053c0952015-01-16 22:09:00 +01002975 nlmsg_end(skb, nlh);
2976 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977}
2978
David S. Miller214e0052011-02-24 00:02:38 -05002979static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002981 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002983 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Thomas Graf7deb2262007-08-22 13:57:39 -07002985 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 if (skb == NULL)
2987 return -ENOMEM;
2988
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002989 err = build_polexpire(skb, xp, dir, c);
2990 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Michal Kubecek21ee5432014-06-03 10:26:06 +02002992 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
2994
David S. Miller214e0052011-02-24 00:02:38 -05002995static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002996{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002997 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002998 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002999 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003000 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003001 struct nlmsghdr *nlh;
3002 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003003 unsigned int headlen;
3004 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003005
3006 headlen = sizeof(*p);
3007 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003008 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003009 headlen = sizeof(*id);
3010 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003011 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003012 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003013 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003014
Thomas Graf7deb2262007-08-22 13:57:39 -07003015 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003016 if (skb == NULL)
3017 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003018
Eric W. Biederman15e47302012-09-07 20:12:54 +00003019 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003020 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003021 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003022 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003023
Thomas Graf7b67c852007-08-22 13:53:52 -07003024 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003025 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003026 struct nlattr *attr;
3027
Thomas Graf7b67c852007-08-22 13:53:52 -07003028 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003029 memset(id, 0, sizeof(*id));
3030 id->dir = dir;
3031 if (c->data.byid)
3032 id->index = xp->index;
3033 else
3034 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3035
Thomas Grafc0144be2007-08-22 13:55:43 -07003036 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003037 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003038 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003039 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003040
3041 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003042 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003043
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003044 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003045 err = copy_to_user_tmpl(xp, skb);
3046 if (!err)
3047 err = copy_to_user_policy_type(xp->type, skb);
3048 if (!err)
3049 err = xfrm_mark_put(skb, &xp->mark);
3050 if (err)
3051 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003052
Thomas Graf98250692007-08-22 12:47:26 -07003053 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003054
Michal Kubecek21ee5432014-06-03 10:26:06 +02003055 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003056
David S. Miller1d1e34d2012-06-27 21:57:03 -07003057out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003058 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003059 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003060}
3061
David S. Miller214e0052011-02-24 00:02:38 -05003062static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003063{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003064 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003065 struct nlmsghdr *nlh;
3066 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003067 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003068
Thomas Graf7deb2262007-08-22 13:57:39 -07003069 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003070 if (skb == NULL)
3071 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003072
Eric W. Biederman15e47302012-09-07 20:12:54 +00003073 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003074 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003075 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003076 goto out_free_skb;
3077 err = copy_to_user_policy_type(c->data.type, skb);
3078 if (err)
3079 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003080
Thomas Graf98250692007-08-22 12:47:26 -07003081 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003082
Michal Kubecek21ee5432014-06-03 10:26:06 +02003083 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003084
David S. Miller1d1e34d2012-06-27 21:57:03 -07003085out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003086 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003087 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003088}
3089
David S. Miller214e0052011-02-24 00:02:38 -05003090static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003091{
3092
3093 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003094 case XFRM_MSG_NEWPOLICY:
3095 case XFRM_MSG_UPDPOLICY:
3096 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003097 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003098 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003099 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003100 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003101 return xfrm_exp_policy_notify(xp, dir, c);
3102 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003103 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3104 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003105 }
3106
3107 return 0;
3108
3109}
3110
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003111static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003112{
3113 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3114}
3115
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003116static int build_report(struct sk_buff *skb, u8 proto,
3117 struct xfrm_selector *sel, xfrm_address_t *addr)
3118{
3119 struct xfrm_user_report *ur;
3120 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003121
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003122 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3123 if (nlh == NULL)
3124 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003125
Thomas Graf7b67c852007-08-22 13:53:52 -07003126 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003127 ur->proto = proto;
3128 memcpy(&ur->sel, sel, sizeof(ur->sel));
3129
David S. Miller1d1e34d2012-06-27 21:57:03 -07003130 if (addr) {
3131 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3132 if (err) {
3133 nlmsg_cancel(skb, nlh);
3134 return err;
3135 }
3136 }
Johannes Berg053c0952015-01-16 22:09:00 +01003137 nlmsg_end(skb, nlh);
3138 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003139}
3140
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003141static int xfrm_send_report(struct net *net, u8 proto,
3142 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003143{
3144 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003145 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003146
Thomas Graf7deb2262007-08-22 13:57:39 -07003147 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003148 if (skb == NULL)
3149 return -ENOMEM;
3150
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003151 err = build_report(skb, proto, sel, addr);
3152 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003153
Michal Kubecek21ee5432014-06-03 10:26:06 +02003154 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003155}
3156
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003157static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003158{
3159 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3160}
3161
3162static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3163 xfrm_address_t *new_saddr, __be16 new_sport)
3164{
3165 struct xfrm_user_mapping *um;
3166 struct nlmsghdr *nlh;
3167
3168 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3169 if (nlh == NULL)
3170 return -EMSGSIZE;
3171
3172 um = nlmsg_data(nlh);
3173
3174 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3175 um->id.spi = x->id.spi;
3176 um->id.family = x->props.family;
3177 um->id.proto = x->id.proto;
3178 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3179 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3180 um->new_sport = new_sport;
3181 um->old_sport = x->encap->encap_sport;
3182 um->reqid = x->props.reqid;
3183
Johannes Berg053c0952015-01-16 22:09:00 +01003184 nlmsg_end(skb, nlh);
3185 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003186}
3187
3188static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3189 __be16 sport)
3190{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003191 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003192 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003193 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003194
3195 if (x->id.proto != IPPROTO_ESP)
3196 return -EINVAL;
3197
3198 if (!x->encap)
3199 return -EINVAL;
3200
3201 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3202 if (skb == NULL)
3203 return -ENOMEM;
3204
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003205 err = build_mapping(skb, x, ipaddr, sport);
3206 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003207
Michal Kubecek21ee5432014-06-03 10:26:06 +02003208 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003209}
3210
Horia Geanta0f245582014-02-12 16:20:06 +02003211static bool xfrm_is_alive(const struct km_event *c)
3212{
3213 return (bool)xfrm_acquire_is_on(c->net);
3214}
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 .notify = xfrm_send_state_notify,
3218 .acquire = xfrm_send_acquire,
3219 .compile_policy = xfrm_compile_policy,
3220 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003221 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003222 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003223 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003224 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225};
3226
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003227static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
Patrick McHardybe336902006-03-20 22:40:54 -08003229 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003230 struct netlink_kernel_cfg cfg = {
3231 .groups = XFRMNLGRP_MAX,
3232 .input = xfrm_netlink_rcv,
3233 };
Patrick McHardybe336902006-03-20 22:40:54 -08003234
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003235 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003236 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003238 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003239 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 return 0;
3241}
3242
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003243static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003244{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003245 struct net *net;
3246 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003247 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003248 synchronize_net();
3249 list_for_each_entry(net, net_exit_list, exit_list)
3250 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003251}
3252
3253static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003254 .init = xfrm_user_net_init,
3255 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003256};
3257
3258static int __init xfrm_user_init(void)
3259{
3260 int rv;
3261
3262 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3263
3264 rv = register_pernet_subsys(&xfrm_user_net_ops);
3265 if (rv < 0)
3266 return rv;
3267 rv = xfrm_register_km(&netlink_mgr);
3268 if (rv < 0)
3269 unregister_pernet_subsys(&xfrm_user_net_ops);
3270 return rv;
3271}
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273static void __exit xfrm_user_exit(void)
3274{
3275 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003276 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
3279module_init(xfrm_user_init);
3280module_exit(xfrm_user_exit);
3281MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003282MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003283