blob: 19beda8a0f5b918886d8b825b53cbb546e9d4e85 [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 Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/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);
Eric Dumazet0f99be02008-01-08 23:39:06 -080045 if (nla_len(rt) < 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
58 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
59 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);
71 if (nla_len(rt) < xfrm_alg_auth_len(algp))
72 return -EINVAL;
73
74 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
75 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);
87 if (nla_len(rt) < aead_len(algp))
88 return -EINVAL;
89
90 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
91 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 Westphal0355a9f2018-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) < xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000135
Fan Du01714102014-01-18 09:54:28 +0800136 /* As only ESP and AH support ESN feature. */
137 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000138 return -EINVAL;
139
Steffen Klassertd8647b72011-03-08 00:10:27 +0000140 if (p->replay_window != 0)
141 return -EINVAL;
142
143 return 0;
144}
Trent Jaegerdf718372005-12-13 23:12:27 -0800145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700147 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int err;
150
151 err = -EINVAL;
152 switch (p->family) {
153 case AF_INET:
Steffen Klassert89cb86e2018-08-01 13:45:11 +0200154 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
155 goto out;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 break;
158
159 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000160#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert89cb86e2018-08-01 13:45:11 +0200161 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
162 goto out;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
165#else
166 err = -EAFNOSUPPORT;
167 goto out;
168#endif
169
170 default:
171 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 err = -EINVAL;
175 switch (p->id.proto) {
176 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000177 if ((!attrs[XFRMA_ALG_AUTH] &&
178 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800179 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700180 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000181 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200182 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 goto out;
184 break;
185
186 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800187 if (attrs[XFRMA_ALG_COMP])
188 goto out;
189 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000190 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800191 !attrs[XFRMA_ALG_CRYPT] &&
192 !attrs[XFRMA_ALG_AEAD])
193 goto out;
194 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000195 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800196 attrs[XFRMA_ALG_CRYPT]) &&
197 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000199 if (attrs[XFRMA_TFCPAD] &&
200 p->mode != XFRM_MODE_TUNNEL)
201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203
204 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700205 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800206 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000208 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000209 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200210 attrs[XFRMA_TFCPAD] ||
211 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto out;
213 break;
214
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000215#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700216 case IPPROTO_DSTOPTS:
217 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700218 if (attrs[XFRMA_ALG_COMP] ||
219 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000220 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800221 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700222 attrs[XFRMA_ALG_CRYPT] ||
223 attrs[XFRMA_ENCAP] ||
224 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000225 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700226 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700227 goto out;
228 break;
229#endif
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 default:
232 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Herbert Xu1a6509d2008-01-28 19:37:29 -0800235 if ((err = verify_aead(attrs)))
236 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000237 if ((err = verify_auth_trunc(attrs)))
238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700241 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700243 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700245 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800246 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000247 if ((err = verify_replay(p, attrs)))
248 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 err = -EINVAL;
251 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700252 case XFRM_MODE_TRANSPORT:
253 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700254 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700255 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257
258 default:
259 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 err = 0;
263
264out:
265 return err;
266}
267
268static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800269 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700270 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct xfrm_algo *p, *ualg;
273 struct xfrm_algo_desc *algo;
274
275 if (!rta)
276 return 0;
277
Thomas Graf5424f322007-08-22 14:01:33 -0700278 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 algo = get_byname(ualg->alg_name, 1);
281 if (!algo)
282 return -ENOSYS;
283 *props = algo->desc.sadb_alg_id;
284
Eric Dumazet0f99be02008-01-08 23:39:06 -0800285 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!p)
287 return -ENOMEM;
288
Herbert Xu04ff1262006-08-13 08:50:00 +1000289 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 *algpp = p;
291 return 0;
292}
293
Herbert Xu69b01372015-05-27 16:03:45 +0800294static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
295{
296 struct xfrm_algo *p, *ualg;
297 struct xfrm_algo_desc *algo;
298
299 if (!rta)
300 return 0;
301
302 ualg = nla_data(rta);
303
304 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
305 if (!algo)
306 return -ENOSYS;
307 x->props.ealgo = algo->desc.sadb_alg_id;
308
309 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
310 if (!p)
311 return -ENOMEM;
312
313 strcpy(p->alg_name, algo->name);
314 x->ealg = p;
315 x->geniv = algo->uinfo.encr.geniv;
316 return 0;
317}
318
Martin Willi4447bb32009-11-25 00:29:52 +0000319static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
320 struct nlattr *rta)
321{
322 struct xfrm_algo *ualg;
323 struct xfrm_algo_auth *p;
324 struct xfrm_algo_desc *algo;
325
326 if (!rta)
327 return 0;
328
329 ualg = nla_data(rta);
330
331 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
332 if (!algo)
333 return -ENOSYS;
334 *props = algo->desc.sadb_alg_id;
335
336 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
337 if (!p)
338 return -ENOMEM;
339
340 strcpy(p->alg_name, algo->name);
341 p->alg_key_len = ualg->alg_key_len;
342 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
343 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
344
345 *algpp = p;
346 return 0;
347}
348
349static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
350 struct nlattr *rta)
351{
352 struct xfrm_algo_auth *p, *ualg;
353 struct xfrm_algo_desc *algo;
354
355 if (!rta)
356 return 0;
357
358 ualg = nla_data(rta);
359
360 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
361 if (!algo)
362 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800363 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000364 return -EINVAL;
365 *props = algo->desc.sadb_alg_id;
366
367 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
368 if (!p)
369 return -ENOMEM;
370
371 strcpy(p->alg_name, algo->name);
372 if (!p->alg_trunc_len)
373 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
374
375 *algpp = p;
376 return 0;
377}
378
Herbert Xu69b01372015-05-27 16:03:45 +0800379static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800380{
381 struct xfrm_algo_aead *p, *ualg;
382 struct xfrm_algo_desc *algo;
383
384 if (!rta)
385 return 0;
386
387 ualg = nla_data(rta);
388
389 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
390 if (!algo)
391 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800392 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800393
394 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
395 if (!p)
396 return -ENOMEM;
397
398 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800399 x->aead = p;
400 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800401 return 0;
402}
403
Steffen Klasserte2b19122011-03-28 19:47:30 +0000404static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
405 struct nlattr *rp)
406{
407 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000408 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000409
410 if (!replay_esn || !rp)
411 return 0;
412
413 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000414 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415
Andy Whitcroft79191ea2017-03-23 07:45:44 +0000416 /* Check the overall length and the internal bitmap length to avoid
417 * potential overflow. */
418 if (nla_len(rp) < ulen ||
419 xfrm_replay_state_esn_len(replay_esn) != ulen ||
420 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000421 return -EINVAL;
422
Andy Whitcroft64a54652017-03-22 07:29:31 +0000423 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
424 return -EINVAL;
425
Steffen Klasserte2b19122011-03-28 19:47:30 +0000426 return 0;
427}
428
Steffen Klassertd8647b72011-03-08 00:10:27 +0000429static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
430 struct xfrm_replay_state_esn **preplay_esn,
431 struct nlattr *rta)
432{
433 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000434 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000435
436 if (!rta)
437 return 0;
438
439 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000440 klen = xfrm_replay_state_esn_len(up);
441 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000442
Mathias Krauseecd79182012-09-20 10:01:49 +0000443 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000444 if (!p)
445 return -ENOMEM;
446
Mathias Krauseecd79182012-09-20 10:01:49 +0000447 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448 if (!pp) {
449 kfree(p);
450 return -ENOMEM;
451 }
452
Mathias Krauseecd79182012-09-20 10:01:49 +0000453 memcpy(p, up, ulen);
454 memcpy(pp, up, ulen);
455
Steffen Klassertd8647b72011-03-08 00:10:27 +0000456 *replay_esn = p;
457 *preplay_esn = pp;
458
459 return 0;
460}
461
Joy Latten661697f2007-04-13 16:14:35 -0700462static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800463{
Trent Jaegerdf718372005-12-13 23:12:27 -0800464 int len = 0;
465
466 if (xfrm_ctx) {
467 len += sizeof(struct xfrm_user_sec_ctx);
468 len += xfrm_ctx->ctx_len;
469 }
470 return len;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
474{
475 memcpy(&x->id, &p->id, sizeof(x->id));
476 memcpy(&x->sel, &p->sel, sizeof(x->sel));
477 memcpy(&x->lft, &p->lft, sizeof(x->lft));
478 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800479 x->props.replay_window = min_t(unsigned int, p->replay_window,
480 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 x->props.reqid = p->reqid;
482 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700483 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700485
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700486 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700487 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800490/*
491 * someday when pfkey also has support, we could have the code
492 * somehow made shareable and move it to xfrm_state.c - JHS
493 *
494*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000495static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
496 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497{
Thomas Graf5424f322007-08-22 14:01:33 -0700498 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000499 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700500 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
501 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
502 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800503
Steffen Klassertd8647b72011-03-08 00:10:27 +0000504 if (re) {
505 struct xfrm_replay_state_esn *replay_esn;
506 replay_esn = nla_data(re);
507 memcpy(x->replay_esn, replay_esn,
508 xfrm_replay_state_esn_len(replay_esn));
509 memcpy(x->preplay_esn, replay_esn,
510 xfrm_replay_state_esn_len(replay_esn));
511 }
512
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800513 if (rp) {
514 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700515 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800516 memcpy(&x->replay, replay, sizeof(*replay));
517 memcpy(&x->preplay, replay, sizeof(*replay));
518 }
519
520 if (lt) {
521 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700522 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800523 x->curlft.bytes = ltime->bytes;
524 x->curlft.packets = ltime->packets;
525 x->curlft.add_time = ltime->add_time;
526 x->curlft.use_time = ltime->use_time;
527 }
528
Thomas Grafcf5cb792007-08-22 13:59:04 -0700529 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700530 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800531
Thomas Grafcf5cb792007-08-22 13:59:04 -0700532 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700533 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800534}
535
Steffen Klassert78f10c52018-06-12 12:44:26 +0200536static void xfrm_smark_init(struct nlattr **attrs, struct xfrm_mark *m)
537{
538 if (attrs[XFRMA_SET_MARK]) {
539 m->v = nla_get_u32(attrs[XFRMA_SET_MARK]);
540 if (attrs[XFRMA_SET_MARK_MASK])
541 m->m = nla_get_u32(attrs[XFRMA_SET_MARK_MASK]);
542 else
543 m->m = 0xffffffff;
544 } else {
545 m->v = m->m = 0;
546 }
547}
548
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800549static struct xfrm_state *xfrm_state_construct(struct net *net,
550 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700551 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int *errp)
553{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800554 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 int err = -ENOMEM;
556
557 if (!x)
558 goto error_no_put;
559
560 copy_from_user_state(x, p);
561
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100562 if (attrs[XFRMA_SA_EXTRA_FLAGS])
563 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
564
Herbert Xu69b01372015-05-27 16:03:45 +0800565 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800566 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000567 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
568 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000570 if (!x->props.aalgo) {
571 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
572 attrs[XFRMA_ALG_AUTH])))
573 goto error;
574 }
Herbert Xu69b01372015-05-27 16:03:45 +0800575 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto error;
577 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
578 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700579 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700581
582 if (attrs[XFRMA_ENCAP]) {
583 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
584 sizeof(*x->encap), GFP_KERNEL);
585 if (x->encap == NULL)
586 goto error;
587 }
588
Martin Willi35d28562010-12-08 04:37:49 +0000589 if (attrs[XFRMA_TFCPAD])
590 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
591
Thomas Graffd211502007-09-06 03:28:08 -0700592 if (attrs[XFRMA_COADDR]) {
593 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
594 sizeof(*x->coaddr), GFP_KERNEL);
595 if (x->coaddr == NULL)
596 goto error;
597 }
598
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000599 xfrm_mark_get(attrs, &x->mark);
600
Steffen Klassert78f10c52018-06-12 12:44:26 +0200601 xfrm_smark_init(attrs, &x->props.smark);
Lorenzo Colitti34e23de2017-08-11 02:11:33 +0900602
Steffen Klasserta80f5602018-06-12 14:07:07 +0200603 if (attrs[XFRMA_IF_ID])
604 x->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
605
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700606 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (err)
608 goto error;
609
Mathias Krause2f30ea52016-09-08 18:09:57 +0200610 if (attrs[XFRMA_SEC_CTX]) {
611 err = security_xfrm_state_alloc(x,
612 nla_data(attrs[XFRMA_SEC_CTX]));
613 if (err)
614 goto error;
615 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800616
Steffen Klassertd8647b72011-03-08 00:10:27 +0000617 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
618 attrs[XFRMA_REPLAY_ESN_VAL])))
619 goto error;
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800622 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800623 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800624 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800625
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000626 if ((err = xfrm_init_replay(x)))
627 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800628
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000629 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000630 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 return x;
633
634error:
635 x->km.state = XFRM_STATE_DEAD;
636 xfrm_state_put(x);
637error_no_put:
638 *errp = err;
639 return NULL;
640}
641
Christoph Hellwig22e70052007-01-02 15:22:30 -0800642static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700643 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800645 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700646 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct xfrm_state *x;
648 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700649 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Thomas Graf35a7aa02007-08-22 14:00:40 -0700651 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (err)
653 return err;
654
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800655 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (!x)
657 return err;
658
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700659 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
661 err = xfrm_state_add(x);
662 else
663 err = xfrm_state_update(x);
664
Tetsuo Handa2e710292014-04-22 21:48:30 +0900665 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (err < 0) {
668 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800669 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700673 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000674 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700675 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700676
677 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700678out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700679 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return err;
681}
682
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800683static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
684 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700685 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700686 int *errp)
687{
688 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000689 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700690 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000691 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700692
693 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
694 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000695 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700696 } else {
697 xfrm_address_t *saddr = NULL;
698
Thomas Graf35a7aa02007-08-22 14:00:40 -0700699 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700700 if (!saddr) {
701 err = -EINVAL;
702 goto out;
703 }
704
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800705 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000706 x = xfrm_state_lookup_byaddr(net, mark,
707 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800708 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700709 }
710
711 out:
712 if (!x && errp)
713 *errp = err;
714 return x;
715}
716
Christoph Hellwig22e70052007-01-02 15:22:30 -0800717static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700718 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800720 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700722 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700723 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700724 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800726 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700728 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
David S. Miller6f68dc32006-06-08 23:58:52 -0700730 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700731 goto out;
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700734 err = -EPERM;
735 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700738 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600739
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700740 if (err < 0)
741 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700742
743 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000744 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700745 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700746 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700748out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900749 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700750 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700751 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
755{
Mathias Krausef778a632012-09-19 11:33:39 +0000756 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 memcpy(&p->id, &x->id, sizeof(p->id));
758 memcpy(&p->sel, &x->sel, sizeof(p->sel));
759 memcpy(&p->lft, &x->lft, sizeof(p->lft));
760 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400761 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
762 put_unaligned(x->stats.replay, &p->stats.replay);
763 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700764 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 p->mode = x->props.mode;
766 p->replay_window = x->props.replay_window;
767 p->reqid = x->props.reqid;
768 p->family = x->props.family;
769 p->flags = x->props.flags;
770 p->seq = x->km.seq;
771}
772
773struct xfrm_dump_info {
774 struct sk_buff *in_skb;
775 struct sk_buff *out_skb;
776 u32 nlmsg_seq;
777 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778};
779
Thomas Grafc0144be2007-08-22 13:55:43 -0700780static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
781{
Thomas Grafc0144be2007-08-22 13:55:43 -0700782 struct xfrm_user_sec_ctx *uctx;
783 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700784 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700785
786 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
787 if (attr == NULL)
788 return -EMSGSIZE;
789
790 uctx = nla_data(attr);
791 uctx->exttype = XFRMA_SEC_CTX;
792 uctx->len = ctx_size;
793 uctx->ctx_doi = s->ctx_doi;
794 uctx->ctx_alg = s->ctx_alg;
795 uctx->ctx_len = s->ctx_len;
796 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
797
798 return 0;
799}
800
Martin Willi4447bb32009-11-25 00:29:52 +0000801static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
802{
803 struct xfrm_algo *algo;
804 struct nlattr *nla;
805
806 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
807 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
808 if (!nla)
809 return -EMSGSIZE;
810
811 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000812 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000813 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
814 algo->alg_key_len = auth->alg_key_len;
815
816 return 0;
817}
818
Steffen Klassert78f10c52018-06-12 12:44:26 +0200819static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
820{
821 int ret = 0;
822
823 if (m->v | m->m) {
824 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
825 if (!ret)
826 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
827 }
828 return ret;
829}
830
Herbert Xu68325d32007-10-09 13:30:57 -0700831/* Don't change this without updating xfrm_sa_len! */
832static int copy_to_user_state_extra(struct xfrm_state *x,
833 struct xfrm_usersa_info *p,
834 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700836 int ret = 0;
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 copy_to_user_state(x, p);
839
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100840 if (x->props.extra_flags) {
841 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
842 x->props.extra_flags);
843 if (ret)
844 goto out;
845 }
846
David S. Miller1d1e34d2012-06-27 21:57:03 -0700847 if (x->coaddr) {
848 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
849 if (ret)
850 goto out;
851 }
852 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200853 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
854 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700855 if (ret)
856 goto out;
857 }
858 if (x->aead) {
859 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
860 if (ret)
861 goto out;
862 }
863 if (x->aalg) {
864 ret = copy_to_user_auth(x->aalg, skb);
865 if (!ret)
866 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
867 xfrm_alg_auth_len(x->aalg), x->aalg);
868 if (ret)
869 goto out;
870 }
871 if (x->ealg) {
872 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
873 if (ret)
874 goto out;
875 }
876 if (x->calg) {
877 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
878 if (ret)
879 goto out;
880 }
881 if (x->encap) {
882 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
883 if (ret)
884 goto out;
885 }
886 if (x->tfcpad) {
887 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
888 if (ret)
889 goto out;
890 }
891 ret = xfrm_mark_put(skb, &x->mark);
892 if (ret)
893 goto out;
Steffen Klassert78f10c52018-06-12 12:44:26 +0200894
895 ret = xfrm_smark_put(skb, &x->props.smark);
896 if (ret)
897 goto out;
898
dingzhif293a5e2014-10-30 09:39:36 +0100899 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700900 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
901 xfrm_replay_state_esn_len(x->replay_esn),
902 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100903 else
904 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
905 &x->replay);
906 if (ret)
907 goto out;
Steffen Klasserta80f5602018-06-12 14:07:07 +0200908
909 if (x->if_id) {
910 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
911 if (ret)
912 goto out;
913 }
914
Steffen Klassert2a5cc532017-08-31 10:37:00 +0200915 if (x->security)
916 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700917out:
918 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700919}
920
921static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
922{
923 struct xfrm_dump_info *sp = ptr;
924 struct sk_buff *in_skb = sp->in_skb;
925 struct sk_buff *skb = sp->out_skb;
926 struct xfrm_usersa_info *p;
927 struct nlmsghdr *nlh;
928 int err;
929
Eric W. Biederman15e47302012-09-07 20:12:54 +0000930 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700931 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
932 if (nlh == NULL)
933 return -EMSGSIZE;
934
935 p = nlmsg_data(nlh);
936
937 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700938 if (err) {
939 nlmsg_cancel(skb, nlh);
940 return err;
941 }
Thomas Graf98250692007-08-22 12:47:26 -0700942 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Timo Teras4c563f72008-02-28 21:31:08 -0800946static int xfrm_dump_sa_done(struct netlink_callback *cb)
947{
948 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800949 struct sock *sk = cb->skb->sk;
950 struct net *net = sock_net(sk);
951
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200952 if (cb->args[0])
953 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800954 return 0;
955}
956
Nicolas Dichteld3623092014-02-14 15:30:36 +0100957static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
959{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800960 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800961 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 struct xfrm_dump_info info;
963
Timo Teras4c563f72008-02-28 21:31:08 -0800964 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
965 sizeof(cb->args) - sizeof(cb->args[0]));
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 info.in_skb = cb->skb;
968 info.out_skb = skb;
969 info.nlmsg_seq = cb->nlh->nlmsg_seq;
970 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800971
972 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100973 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100974 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100975 u8 proto = 0;
976 int err;
977
Nicolas Dichteld3623092014-02-14 15:30:36 +0100978 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
979 xfrma_policy);
980 if (err < 0)
981 return err;
982
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100983 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200984 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
985 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100986 if (filter == NULL)
987 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100988 }
989
990 if (attrs[XFRMA_PROTO])
991 proto = nla_get_u8(attrs[XFRMA_PROTO]);
992
993 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200994 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800995 }
996
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800997 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 return skb->len;
1000}
1001
1002static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1003 struct xfrm_state *x, u32 seq)
1004{
1005 struct xfrm_dump_info info;
1006 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001007 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Thomas Graf7deb2262007-08-22 13:57:39 -07001009 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (!skb)
1011 return ERR_PTR(-ENOMEM);
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 info.in_skb = in_skb;
1014 info.out_skb = skb;
1015 info.nlmsg_seq = seq;
1016 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Mathias Krause864745d2012-09-13 11:41:26 +00001018 err = dump_one_state(x, 0, &info);
1019 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001021 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023
1024 return skb;
1025}
1026
Michal Kubecek21ee5432014-06-03 10:26:06 +02001027/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1028 * Must be called with RCU read lock.
1029 */
1030static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1031 u32 pid, unsigned int group)
1032{
1033 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1034
Florian Westphal301a6da2018-06-25 14:00:07 +02001035 if (!nlsk) {
1036 kfree_skb(skb);
1037 return -EPIPE;
1038 }
1039
1040 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001041}
1042
Thomas Graf7deb2262007-08-22 13:57:39 -07001043static inline size_t xfrm_spdinfo_msgsize(void)
1044{
1045 return NLMSG_ALIGN(4)
1046 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001047 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1048 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1049 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001050}
1051
Alexey Dobriyane0710412010-01-23 13:37:10 +00001052static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001053 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001054{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001055 struct xfrmk_spdinfo si;
1056 struct xfrmu_spdinfo spc;
1057 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001058 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001059 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001060 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001061 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001062 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001063
Eric W. Biederman15e47302012-09-07 20:12:54 +00001064 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001065 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001066 return -EMSGSIZE;
1067
1068 f = nlmsg_data(nlh);
1069 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001070 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001071 spc.incnt = si.incnt;
1072 spc.outcnt = si.outcnt;
1073 spc.fwdcnt = si.fwdcnt;
1074 spc.inscnt = si.inscnt;
1075 spc.outscnt = si.outscnt;
1076 spc.fwdscnt = si.fwdscnt;
1077 sph.spdhcnt = si.spdhcnt;
1078 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001079
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001080 do {
1081 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1082
1083 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1084 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1085 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1086 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1087 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1088
David S. Miller1d1e34d2012-06-27 21:57:03 -07001089 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1090 if (!err)
1091 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001092 if (!err)
1093 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1094 if (!err)
1095 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001096 if (err) {
1097 nlmsg_cancel(skb, nlh);
1098 return err;
1099 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001100
Johannes Berg053c0952015-01-16 22:09:00 +01001101 nlmsg_end(skb, nlh);
1102 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001103}
1104
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001105static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1106 struct nlattr **attrs)
1107{
1108 struct net *net = sock_net(skb->sk);
1109 struct xfrmu_spdhthresh *thresh4 = NULL;
1110 struct xfrmu_spdhthresh *thresh6 = NULL;
1111
1112 /* selector prefixlen thresholds to hash policies */
1113 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1114 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1115
1116 if (nla_len(rta) < sizeof(*thresh4))
1117 return -EINVAL;
1118 thresh4 = nla_data(rta);
1119 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1120 return -EINVAL;
1121 }
1122 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1123 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1124
1125 if (nla_len(rta) < sizeof(*thresh6))
1126 return -EINVAL;
1127 thresh6 = nla_data(rta);
1128 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1129 return -EINVAL;
1130 }
1131
1132 if (thresh4 || thresh6) {
1133 write_seqlock(&net->xfrm.policy_hthresh.lock);
1134 if (thresh4) {
1135 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1136 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1137 }
1138 if (thresh6) {
1139 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1140 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1141 }
1142 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1143
1144 xfrm_policy_hash_rebuild(net);
1145 }
1146
1147 return 0;
1148}
1149
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001150static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001151 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001152{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001153 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001154 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001155 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001156 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001157 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001158
Thomas Graf7deb2262007-08-22 13:57:39 -07001159 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001160 if (r_skb == NULL)
1161 return -ENOMEM;
1162
Eric W. Biederman15e47302012-09-07 20:12:54 +00001163 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001164 BUG();
1165
Eric W. Biederman15e47302012-09-07 20:12:54 +00001166 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001167}
1168
Thomas Graf7deb2262007-08-22 13:57:39 -07001169static inline size_t xfrm_sadinfo_msgsize(void)
1170{
1171 return NLMSG_ALIGN(4)
1172 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1173 + nla_total_size(4); /* XFRMA_SAD_CNT */
1174}
1175
Alexey Dobriyane0710412010-01-23 13:37:10 +00001176static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001177 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001178{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001179 struct xfrmk_sadinfo si;
1180 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001181 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001182 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001183 u32 *f;
1184
Eric W. Biederman15e47302012-09-07 20:12:54 +00001185 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001186 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001187 return -EMSGSIZE;
1188
1189 f = nlmsg_data(nlh);
1190 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001191 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001192
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001193 sh.sadhmcnt = si.sadhmcnt;
1194 sh.sadhcnt = si.sadhcnt;
1195
David S. Miller1d1e34d2012-06-27 21:57:03 -07001196 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1197 if (!err)
1198 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1199 if (err) {
1200 nlmsg_cancel(skb, nlh);
1201 return err;
1202 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001203
Johannes Berg053c0952015-01-16 22:09:00 +01001204 nlmsg_end(skb, nlh);
1205 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001206}
1207
1208static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001209 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001210{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001211 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001212 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001213 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001214 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001215 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001216
Thomas Graf7deb2262007-08-22 13:57:39 -07001217 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001218 if (r_skb == NULL)
1219 return -ENOMEM;
1220
Eric W. Biederman15e47302012-09-07 20:12:54 +00001221 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001222 BUG();
1223
Eric W. Biederman15e47302012-09-07 20:12:54 +00001224 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001225}
1226
Christoph Hellwig22e70052007-01-02 15:22:30 -08001227static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001228 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001230 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001231 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 struct xfrm_state *x;
1233 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001234 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001236 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (x == NULL)
1238 goto out_noput;
1239
1240 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1241 if (IS_ERR(resp_skb)) {
1242 err = PTR_ERR(resp_skb);
1243 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001244 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246 xfrm_state_put(x);
1247out_noput:
1248 return err;
1249}
1250
Christoph Hellwig22e70052007-01-02 15:22:30 -08001251static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001252 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001254 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct xfrm_state *x;
1256 struct xfrm_userspi_info *p;
1257 struct sk_buff *resp_skb;
1258 xfrm_address_t *daddr;
1259 int family;
1260 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001261 u32 mark;
1262 struct xfrm_mark m;
Steffen Klasserta80f5602018-06-12 14:07:07 +02001263 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Thomas Graf7b67c852007-08-22 13:53:52 -07001265 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001266 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (err)
1268 goto out_noput;
1269
1270 family = p->info.family;
1271 daddr = &p->info.id.daddr;
1272
1273 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001274
1275 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001276
1277 if (attrs[XFRMA_IF_ID])
1278 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001281 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001282 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 xfrm_state_put(x);
1284 x = NULL;
1285 }
1286 }
1287
1288 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001289 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klasserta80f5602018-06-12 14:07:07 +02001290 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 &p->info.saddr, 1,
1292 family);
1293 err = -ENOENT;
1294 if (x == NULL)
1295 goto out_noput;
1296
Herbert Xu658b2192007-10-09 13:29:52 -07001297 err = xfrm_alloc_spi(x, p->min, p->max);
1298 if (err)
1299 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Herbert Xu658b2192007-10-09 13:29:52 -07001301 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (IS_ERR(resp_skb)) {
1303 err = PTR_ERR(resp_skb);
1304 goto out;
1305 }
1306
Eric W. Biederman15e47302012-09-07 20:12:54 +00001307 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309out:
1310 xfrm_state_put(x);
1311out_noput:
1312 return err;
1313}
1314
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001315static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 switch (dir) {
1318 case XFRM_POLICY_IN:
1319 case XFRM_POLICY_OUT:
1320 case XFRM_POLICY_FWD:
1321 break;
1322
1323 default:
1324 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 return 0;
1328}
1329
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001330static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001331{
1332 switch (type) {
1333 case XFRM_POLICY_TYPE_MAIN:
1334#ifdef CONFIG_XFRM_SUB_POLICY
1335 case XFRM_POLICY_TYPE_SUB:
1336#endif
1337 break;
1338
1339 default:
1340 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001341 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001342
1343 return 0;
1344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1347{
Fan Due682adf2013-11-07 17:47:48 +08001348 int ret;
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 switch (p->share) {
1351 case XFRM_SHARE_ANY:
1352 case XFRM_SHARE_SESSION:
1353 case XFRM_SHARE_USER:
1354 case XFRM_SHARE_UNIQUE:
1355 break;
1356
1357 default:
1358 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 switch (p->action) {
1362 case XFRM_POLICY_ALLOW:
1363 case XFRM_POLICY_BLOCK:
1364 break;
1365
1366 default:
1367 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 switch (p->sel.family) {
1371 case AF_INET:
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001372 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1373 return -EINVAL;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 break;
1376
1377 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001378#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001379 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1380 return -EINVAL;
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 break;
1383#else
1384 return -EAFNOSUPPORT;
1385#endif
1386
1387 default:
1388 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Fan Due682adf2013-11-07 17:47:48 +08001391 ret = verify_policy_dir(p->dir);
1392 if (ret)
1393 return ret;
1394 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1395 return -EINVAL;
1396
1397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Thomas Graf5424f322007-08-22 14:01:33 -07001400static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001401{
Thomas Graf5424f322007-08-22 14:01:33 -07001402 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001403 struct xfrm_user_sec_ctx *uctx;
1404
1405 if (!rt)
1406 return 0;
1407
Thomas Graf5424f322007-08-22 14:01:33 -07001408 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001409 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1413 int nr)
1414{
1415 int i;
1416
1417 xp->xfrm_nr = nr;
1418 for (i = 0; i < nr; i++, ut++) {
1419 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1420
1421 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1422 memcpy(&t->saddr, &ut->saddr,
1423 sizeof(xfrm_address_t));
1424 t->reqid = ut->reqid;
1425 t->mode = ut->mode;
1426 t->share = ut->share;
1427 t->optional = ut->optional;
1428 t->aalgos = ut->aalgos;
1429 t->ealgos = ut->ealgos;
1430 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001431 /* If all masks are ~0, then we allow all algorithms. */
1432 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001433 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435}
1436
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001437static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1438{
Steffen Klassert9a54c512017-12-08 08:07:25 +01001439 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001440 int i;
1441
1442 if (nr > XFRM_MAX_DEPTH)
1443 return -EINVAL;
1444
Steffen Klassert9a54c512017-12-08 08:07:25 +01001445 prev_family = family;
1446
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001447 for (i = 0; i < nr; i++) {
1448 /* We never validated the ut->family value, so many
1449 * applications simply leave it at zero. The check was
1450 * never made and ut->family was ignored because all
1451 * templates could be assumed to have the same family as
1452 * the policy itself. Now that we will have ipv4-in-ipv6
1453 * and ipv6-in-ipv4 tunnels, this is no longer true.
1454 */
1455 if (!ut[i].family)
1456 ut[i].family = family;
1457
Florian Westphala19fd852019-01-09 14:37:34 +01001458 switch (ut[i].mode) {
1459 case XFRM_MODE_TUNNEL:
1460 case XFRM_MODE_BEET:
1461 break;
1462 default:
1463 if (ut[i].family != prev_family)
1464 return -EINVAL;
1465 break;
1466 }
Sean Tranchettide500b92018-09-19 13:54:56 -06001467 if (ut[i].mode >= XFRM_MODE_MAX)
1468 return -EINVAL;
1469
Steffen Klassert9a54c512017-12-08 08:07:25 +01001470 prev_family = ut[i].family;
1471
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001472 switch (ut[i].family) {
1473 case AF_INET:
1474 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001475#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001476 case AF_INET6:
1477 break;
1478#endif
1479 default:
1480 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001481 }
Cong Wang85552882017-11-27 11:15:16 -08001482
1483 switch (ut[i].id.proto) {
1484 case IPPROTO_AH:
1485 case IPPROTO_ESP:
1486 case IPPROTO_COMP:
1487#if IS_ENABLED(CONFIG_IPV6)
1488 case IPPROTO_ROUTING:
1489 case IPPROTO_DSTOPTS:
1490#endif
1491 case IPSEC_PROTO_ANY:
1492 break;
1493 default:
1494 return -EINVAL;
1495 }
1496
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001497 }
1498
1499 return 0;
1500}
1501
Thomas Graf5424f322007-08-22 14:01:33 -07001502static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Thomas Graf5424f322007-08-22 14:01:33 -07001504 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 if (!rt) {
1507 pol->xfrm_nr = 0;
1508 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001509 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1510 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001511 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001513 err = validate_tmpl(nr, utmpl, pol->family);
1514 if (err)
1515 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Thomas Graf5424f322007-08-22 14:01:33 -07001517 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519 return 0;
1520}
1521
Thomas Graf5424f322007-08-22 14:01:33 -07001522static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001523{
Thomas Graf5424f322007-08-22 14:01:33 -07001524 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001525 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001526 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001527 int err;
1528
1529 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001530 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001531 type = upt->type;
1532 }
1533
1534 err = verify_policy_type(type);
1535 if (err)
1536 return err;
1537
1538 *tp = type;
1539 return 0;
1540}
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1543{
1544 xp->priority = p->priority;
1545 xp->index = p->index;
1546 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1547 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1548 xp->action = p->action;
1549 xp->flags = p->flags;
1550 xp->family = p->sel.family;
1551 /* XXX xp->share = p->share; */
1552}
1553
1554static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1555{
Mathias Krause7b789832012-09-19 11:33:40 +00001556 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1558 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1559 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1560 p->priority = xp->priority;
1561 p->index = xp->index;
1562 p->sel.family = xp->family;
1563 p->dir = dir;
1564 p->action = xp->action;
1565 p->flags = xp->flags;
1566 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1567}
1568
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001569static 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 -07001570{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001571 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 int err;
1573
1574 if (!xp) {
1575 *errp = -ENOMEM;
1576 return NULL;
1577 }
1578
1579 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001580
Thomas Graf35a7aa02007-08-22 14:00:40 -07001581 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001582 if (err)
1583 goto error;
1584
Thomas Graf35a7aa02007-08-22 14:00:40 -07001585 if (!(err = copy_from_user_tmpl(xp, attrs)))
1586 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001587 if (err)
1588 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001590 xfrm_mark_get(attrs, &xp->mark);
1591
Steffen Klasserta80f5602018-06-12 14:07:07 +02001592 if (attrs[XFRMA_IF_ID])
1593 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001596 error:
1597 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001598 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001599 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001600 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Christoph Hellwig22e70052007-01-02 15:22:30 -08001603static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001604 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001606 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001607 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001609 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 int err;
1611 int excl;
1612
1613 err = verify_newpolicy_info(p);
1614 if (err)
1615 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001616 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001617 if (err)
1618 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001620 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (!xp)
1622 return err;
1623
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001624 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001625 * Aha! this is anti-netlink really i.e more pfkey derived
1626 * in netlink excl is a flag and you wouldnt need
1627 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1629 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001630 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001633 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 kfree(xp);
1635 return err;
1636 }
1637
Herbert Xuf60f6b82005-06-18 22:44:37 -07001638 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001639 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001640 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001641 km_policy_notify(xp, p->dir, &c);
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 xfrm_pol_put(xp);
1644
1645 return 0;
1646}
1647
1648static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1649{
1650 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1651 int i;
1652
1653 if (xp->xfrm_nr == 0)
1654 return 0;
1655
1656 for (i = 0; i < xp->xfrm_nr; i++) {
1657 struct xfrm_user_tmpl *up = &vec[i];
1658 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1659
Mathias Krause1f868402012-09-19 11:33:41 +00001660 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001662 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1664 up->reqid = kp->reqid;
1665 up->mode = kp->mode;
1666 up->share = kp->share;
1667 up->optional = kp->optional;
1668 up->aalgos = kp->aalgos;
1669 up->ealgos = kp->ealgos;
1670 up->calgos = kp->calgos;
1671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Thomas Grafc0144be2007-08-22 13:55:43 -07001673 return nla_put(skb, XFRMA_TMPL,
1674 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001675}
1676
Serge Hallyn0d681622006-07-24 23:30:44 -07001677static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1678{
1679 if (x->security) {
1680 return copy_sec_ctx(x->security, skb);
1681 }
1682 return 0;
1683}
1684
1685static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1686{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001687 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001688 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001689 return 0;
1690}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001691static inline size_t userpolicy_type_attrsize(void)
1692{
1693#ifdef CONFIG_XFRM_SUB_POLICY
1694 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1695#else
1696 return 0;
1697#endif
1698}
Serge Hallyn0d681622006-07-24 23:30:44 -07001699
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001700#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001701static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001702{
Eric Dumazet2038a9e2018-06-18 21:35:07 -07001703 struct xfrm_userpolicy_type upt;
1704
1705 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1706 memset(&upt, 0, sizeof(upt));
1707 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001708
Thomas Grafc0144be2007-08-22 13:55:43 -07001709 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001710}
1711
1712#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001713static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001714{
1715 return 0;
1716}
1717#endif
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1720{
1721 struct xfrm_dump_info *sp = ptr;
1722 struct xfrm_userpolicy_info *p;
1723 struct sk_buff *in_skb = sp->in_skb;
1724 struct sk_buff *skb = sp->out_skb;
1725 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001726 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Eric W. Biederman15e47302012-09-07 20:12:54 +00001728 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001729 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1730 if (nlh == NULL)
1731 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Thomas Graf7b67c852007-08-22 13:53:52 -07001733 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001735 err = copy_to_user_tmpl(xp, skb);
1736 if (!err)
1737 err = copy_to_user_sec_ctx(xp, skb);
1738 if (!err)
1739 err = copy_to_user_policy_type(xp->type, skb);
1740 if (!err)
1741 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001742 if (!err)
1743 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001744 if (err) {
1745 nlmsg_cancel(skb, nlh);
1746 return err;
1747 }
Thomas Graf98250692007-08-22 12:47:26 -07001748 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Timo Teras4c563f72008-02-28 21:31:08 -08001752static int xfrm_dump_policy_done(struct netlink_callback *cb)
1753{
Herbert Xu543aabb2017-10-19 20:51:10 +08001754 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001755 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001756
Fan Du283bc9f2013-11-07 17:47:50 +08001757 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001758 return 0;
1759}
1760
Herbert Xu543aabb2017-10-19 20:51:10 +08001761static int xfrm_dump_policy_start(struct netlink_callback *cb)
1762{
1763 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1764
1765 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1766
1767 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1768 return 0;
1769}
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1772{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001773 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001774 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct xfrm_dump_info info;
1776
1777 info.in_skb = cb->skb;
1778 info.out_skb = skb;
1779 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1780 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001781
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001782 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 return skb->len;
1785}
1786
1787static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1788 struct xfrm_policy *xp,
1789 int dir, u32 seq)
1790{
1791 struct xfrm_dump_info info;
1792 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001793 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Thomas Graf7deb2262007-08-22 13:57:39 -07001795 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (!skb)
1797 return ERR_PTR(-ENOMEM);
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 info.in_skb = in_skb;
1800 info.out_skb = skb;
1801 info.nlmsg_seq = seq;
1802 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Mathias Krausec2546372012-09-14 09:58:32 +00001804 err = dump_one_policy(xp, dir, 0, &info);
1805 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001807 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
1809
1810 return skb;
1811}
1812
Christoph Hellwig22e70052007-01-02 15:22:30 -08001813static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001814 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001816 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 struct xfrm_policy *xp;
1818 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001819 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001821 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001823 struct xfrm_mark m;
1824 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001825 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Thomas Graf7b67c852007-08-22 13:53:52 -07001827 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1829
Thomas Graf35a7aa02007-08-22 14:00:40 -07001830 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001831 if (err)
1832 return err;
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 err = verify_policy_dir(p->dir);
1835 if (err)
1836 return err;
1837
Steffen Klasserta80f5602018-06-12 14:07:07 +02001838 if (attrs[XFRMA_IF_ID])
1839 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02001842 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001843 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001844 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001845 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001846
Thomas Graf35a7aa02007-08-22 14:00:40 -07001847 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001848 if (err)
1849 return err;
1850
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001851 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001852 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001853 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001854
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001855 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001856 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001857 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001858 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02001859 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001860 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001861 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (xp == NULL)
1864 return -ENOENT;
1865
1866 if (!delete) {
1867 struct sk_buff *resp_skb;
1868
1869 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1870 if (IS_ERR(resp_skb)) {
1871 err = PTR_ERR(resp_skb);
1872 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001873 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001874 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001876 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001877 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001878
1879 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001880 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001881
Herbert Xue7443892005-06-18 22:44:18 -07001882 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001883 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001884 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001885 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001886 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001889out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001890 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001891 if (delete && err == 0)
1892 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return err;
1894}
1895
Christoph Hellwig22e70052007-01-02 15:22:30 -08001896static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001897 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001899 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001900 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001901 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001902 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Tetsuo Handa2e710292014-04-22 21:48:30 +09001904 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001905 if (err) {
1906 if (err == -ESRCH) /* empty table */
1907 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001908 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001909 }
Herbert Xubf088672005-06-18 22:44:00 -07001910 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001911 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001912 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001913 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001914 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001915 km_state_notify(NULL, &c);
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 return 0;
1918}
1919
Steffen Klassertd8647b72011-03-08 00:10:27 +00001920static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001921{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001922 size_t replay_size = x->replay_esn ?
1923 xfrm_replay_state_esn_len(x->replay_esn) :
1924 sizeof(struct xfrm_replay_state);
1925
Thomas Graf7deb2262007-08-22 13:57:39 -07001926 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001927 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001928 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001929 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001930 + nla_total_size(4) /* XFRM_AE_RTHR */
1931 + nla_total_size(4); /* XFRM_AE_ETHR */
1932}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001933
David S. Miller214e0052011-02-24 00:02:38 -05001934static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001935{
1936 struct xfrm_aevent_id *id;
1937 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001938 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001939
Eric W. Biederman15e47302012-09-07 20:12:54 +00001940 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001941 if (nlh == NULL)
1942 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001943
Thomas Graf7b67c852007-08-22 13:53:52 -07001944 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001945 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001946 id->sa_id.spi = x->id.spi;
1947 id->sa_id.family = x->props.family;
1948 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001949 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001950 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001951 id->flags = c->data.aevent;
1952
David S. Millerd0fde792012-03-29 04:02:26 -04001953 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001954 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1955 xfrm_replay_state_esn_len(x->replay_esn),
1956 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001957 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001958 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1959 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001960 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001961 if (err)
1962 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001963 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1964 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001965 if (err)
1966 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001967
David S. Miller1d1e34d2012-06-27 21:57:03 -07001968 if (id->flags & XFRM_AE_RTHR) {
1969 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1970 if (err)
1971 goto out_cancel;
1972 }
1973 if (id->flags & XFRM_AE_ETHR) {
1974 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1975 x->replay_maxage * 10 / HZ);
1976 if (err)
1977 goto out_cancel;
1978 }
1979 err = xfrm_mark_put(skb, &x->mark);
1980 if (err)
1981 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001982
Steffen Klasserta80f5602018-06-12 14:07:07 +02001983 err = xfrm_if_id_put(skb, x->if_id);
1984 if (err)
1985 goto out_cancel;
1986
Johannes Berg053c0952015-01-16 22:09:00 +01001987 nlmsg_end(skb, nlh);
1988 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001989
David S. Miller1d1e34d2012-06-27 21:57:03 -07001990out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001991 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001992 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001993}
1994
Christoph Hellwig22e70052007-01-02 15:22:30 -08001995static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001996 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001997{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001998 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001999 struct xfrm_state *x;
2000 struct sk_buff *r_skb;
2001 int err;
2002 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002003 u32 mark;
2004 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002005 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002006 struct xfrm_usersa_id *id = &p->sa_id;
2007
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002008 mark = xfrm_mark_get(attrs, &m);
2009
2010 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002011 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002012 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002013
2014 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2015 if (r_skb == NULL) {
2016 xfrm_state_put(x);
2017 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002018 }
2019
2020 /*
2021 * XXX: is this lock really needed - none of the other
2022 * gets lock (the concern is things getting updated
2023 * while we are still reading) - jhs
2024 */
2025 spin_lock_bh(&x->lock);
2026 c.data.aevent = p->flags;
2027 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002028 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002029
2030 if (build_aevent(r_skb, x, &c) < 0)
2031 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00002032 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002033 spin_unlock_bh(&x->lock);
2034 xfrm_state_put(x);
2035 return err;
2036}
2037
Christoph Hellwig22e70052007-01-02 15:22:30 -08002038static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002039 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002040{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002041 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002042 struct xfrm_state *x;
2043 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002044 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002045 u32 mark = 0;
2046 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002047 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002048 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002049 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002050 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002051 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2052 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002053
Michael Rossberg4e077232015-09-29 11:25:08 +02002054 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002055 return err;
2056
2057 /* pedantic mode - thou shalt sayeth replaceth */
2058 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2059 return err;
2060
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002061 mark = xfrm_mark_get(attrs, &m);
2062
2063 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 -08002064 if (x == NULL)
2065 return -ESRCH;
2066
2067 if (x->km.state != XFRM_STATE_VALID)
2068 goto out;
2069
Steffen Klassert4479ff72013-09-09 09:39:01 +02002070 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002071 if (err)
2072 goto out;
2073
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002074 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002075 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002076 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002077
2078 c.event = nlh->nlmsg_type;
2079 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002080 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002081 c.data.aevent = XFRM_AE_CU;
2082 km_state_notify(x, &c);
2083 err = 0;
2084out:
2085 xfrm_state_put(x);
2086 return err;
2087}
2088
Christoph Hellwig22e70052007-01-02 15:22:30 -08002089static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002090 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002092 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002093 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002094 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002095 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002096
Thomas Graf35a7aa02007-08-22 14:00:40 -07002097 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002098 if (err)
2099 return err;
2100
Tetsuo Handa2e710292014-04-22 21:48:30 +09002101 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002102 if (err) {
2103 if (err == -ESRCH) /* empty table */
2104 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002105 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002106 }
2107
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002108 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002109 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002110 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002111 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002112 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002113 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return 0;
2115}
2116
Christoph Hellwig22e70052007-01-02 15:22:30 -08002117static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002118 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002119{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002120 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002121 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002122 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002123 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002124 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002125 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002126 struct xfrm_mark m;
2127 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002128 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002129
Thomas Graf35a7aa02007-08-22 14:00:40 -07002130 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002131 if (err)
2132 return err;
2133
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002134 err = verify_policy_dir(p->dir);
2135 if (err)
2136 return err;
2137
Steffen Klasserta80f5602018-06-12 14:07:07 +02002138 if (attrs[XFRMA_IF_ID])
2139 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2140
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002141 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02002142 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002143 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002144 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002145 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002146
Thomas Graf35a7aa02007-08-22 14:00:40 -07002147 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002148 if (err)
2149 return err;
2150
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002151 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002152 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002153 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002154
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002155 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002156 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002157 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002158 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002159 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002160 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002161 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002162 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002163 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002164 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002165
Timo Teräsea2dea92010-03-31 00:17:05 +00002166 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002167 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002168
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002169 err = 0;
2170 if (up->hard) {
2171 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002172 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002173 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002174 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002175
2176out:
2177 xfrm_pol_put(xp);
2178 return err;
2179}
2180
Christoph Hellwig22e70052007-01-02 15:22:30 -08002181static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002182 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002183{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002184 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002185 struct xfrm_state *x;
2186 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002187 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002188 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002189 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002190 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002191
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002192 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002193
David S. Miller3a765aa2007-02-26 14:52:21 -08002194 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002195 if (x == NULL)
2196 return err;
2197
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002198 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002199 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002200 if (x->km.state != XFRM_STATE_VALID)
2201 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002202 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002203
Joy Latten161a09e2006-11-27 13:11:54 -06002204 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002205 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002206 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002207 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002208 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002209out:
2210 spin_unlock_bh(&x->lock);
2211 xfrm_state_put(x);
2212 return err;
2213}
2214
Christoph Hellwig22e70052007-01-02 15:22:30 -08002215static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002216 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002217{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002218 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002219 struct xfrm_policy *xp;
2220 struct xfrm_user_tmpl *ut;
2221 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002222 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002223 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002224
Thomas Graf7b67c852007-08-22 13:53:52 -07002225 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002226 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002227 int err = -ENOMEM;
2228
2229 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002230 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002231
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002232 xfrm_mark_get(attrs, &mark);
2233
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002234 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002235 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002236 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002237
2238 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002239 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002240 if (!xp)
2241 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002242
2243 memcpy(&x->id, &ua->id, sizeof(ua->id));
2244 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2245 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002246 xp->mark.m = x->mark.m = mark.m;
2247 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002248 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002249 /* extract the templates and for each call km_key */
2250 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2251 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2252 memcpy(&x->id, &t->id, sizeof(x->id));
2253 x->props.mode = t->mode;
2254 x->props.reqid = t->reqid;
2255 x->props.family = ut->family;
2256 t->aalgos = ua->aalgos;
2257 t->ealgos = ua->ealgos;
2258 t->calgos = ua->calgos;
2259 err = km_query(x, t, xp);
2260
2261 }
2262
2263 kfree(x);
2264 kfree(xp);
2265
2266 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002267
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002268free_state:
2269 kfree(x);
2270nomem:
2271 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002272}
2273
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002274#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002275static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002276 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002277 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002278{
Thomas Graf5424f322007-08-22 14:01:33 -07002279 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002280 struct xfrm_user_migrate *um;
2281 int i, num_migrate;
2282
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002283 if (k != NULL) {
2284 struct xfrm_user_kmaddress *uk;
2285
2286 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2287 memcpy(&k->local, &uk->local, sizeof(k->local));
2288 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2289 k->family = uk->family;
2290 k->reserved = uk->reserved;
2291 }
2292
Thomas Graf5424f322007-08-22 14:01:33 -07002293 um = nla_data(rt);
2294 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002295
2296 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2297 return -EINVAL;
2298
2299 for (i = 0; i < num_migrate; i++, um++, ma++) {
2300 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2301 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2302 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2303 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2304
2305 ma->proto = um->proto;
2306 ma->mode = um->mode;
2307 ma->reqid = um->reqid;
2308
2309 ma->old_family = um->old_family;
2310 ma->new_family = um->new_family;
2311 }
2312
2313 *num = i;
2314 return 0;
2315}
2316
2317static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002318 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002319{
Thomas Graf7b67c852007-08-22 13:53:52 -07002320 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002321 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002322 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002323 u8 type;
2324 int err;
2325 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002326 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002327
Thomas Graf35a7aa02007-08-22 14:00:40 -07002328 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002329 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002330
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002331 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2332
Thomas Graf5424f322007-08-22 14:01:33 -07002333 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002334 if (err)
2335 return err;
2336
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002337 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002338 if (err)
2339 return err;
2340
2341 if (!n)
2342 return 0;
2343
Fan Du8d549c42013-11-07 17:47:49 +08002344 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002345
2346 return 0;
2347}
2348#else
2349static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002350 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002351{
2352 return -ENOPROTOOPT;
2353}
2354#endif
2355
2356#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002357static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002358{
2359 struct xfrm_user_migrate um;
2360
2361 memset(&um, 0, sizeof(um));
2362 um.proto = m->proto;
2363 um.mode = m->mode;
2364 um.reqid = m->reqid;
2365 um.old_family = m->old_family;
2366 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2367 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2368 um.new_family = m->new_family;
2369 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2370 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2371
Thomas Grafc0144be2007-08-22 13:55:43 -07002372 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002373}
2374
David S. Miller183cad12011-02-24 00:28:01 -05002375static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002376{
2377 struct xfrm_user_kmaddress uk;
2378
2379 memset(&uk, 0, sizeof(uk));
2380 uk.family = k->family;
2381 uk.reserved = k->reserved;
2382 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002383 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002384
2385 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2386}
2387
2388static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002389{
2390 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002391 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2392 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2393 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002394}
2395
David S. Miller183cad12011-02-24 00:28:01 -05002396static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2397 int num_migrate, const struct xfrm_kmaddress *k,
2398 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002399{
David S. Miller183cad12011-02-24 00:28:01 -05002400 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002401 struct xfrm_userpolicy_id *pol_id;
2402 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002403 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002404
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002405 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2406 if (nlh == NULL)
2407 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002408
Thomas Graf7b67c852007-08-22 13:53:52 -07002409 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002410 /* copy data from selector, dir, and type to the pol_id */
2411 memset(pol_id, 0, sizeof(*pol_id));
2412 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2413 pol_id->dir = dir;
2414
David S. Miller1d1e34d2012-06-27 21:57:03 -07002415 if (k != NULL) {
2416 err = copy_to_user_kmaddress(k, skb);
2417 if (err)
2418 goto out_cancel;
2419 }
2420 err = copy_to_user_policy_type(type, skb);
2421 if (err)
2422 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002423 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002424 err = copy_to_user_migrate(mp, skb);
2425 if (err)
2426 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002427 }
2428
Johannes Berg053c0952015-01-16 22:09:00 +01002429 nlmsg_end(skb, nlh);
2430 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002431
2432out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002433 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002434 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002435}
2436
David S. Miller183cad12011-02-24 00:28:01 -05002437static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2438 const struct xfrm_migrate *m, int num_migrate,
2439 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002440{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002441 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002442 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002443
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002444 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002445 if (skb == NULL)
2446 return -ENOMEM;
2447
2448 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002449 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002450 BUG();
2451
Michal Kubecek21ee5432014-06-03 10:26:06 +02002452 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002453}
2454#else
David S. Miller183cad12011-02-24 00:28:01 -05002455static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2456 const struct xfrm_migrate *m, int num_migrate,
2457 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002458{
2459 return -ENOPROTOOPT;
2460}
2461#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002462
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002463#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002464
2465static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002466 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002467 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2468 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2469 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2470 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2471 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2472 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002473 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002474 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002475 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002476 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002477 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002478 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002479 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002480 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2481 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002482 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002483 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002484 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002485 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002486 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487};
2488
Thomas Graf492b5582005-05-03 14:26:40 -07002489#undef XMSGSIZE
2490
Thomas Grafcf5cb792007-08-22 13:59:04 -07002491static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002492 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2493 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2494 [XFRMA_LASTUSED] = { .type = NLA_U64},
2495 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002496 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002497 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2498 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2499 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2500 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2501 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2502 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2503 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2504 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2505 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2506 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2507 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2508 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2509 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2510 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002511 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002512 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002513 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002514 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002515 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002516 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002517 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassert78f10c52018-06-12 12:44:26 +02002518 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2519 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klasserta80f5602018-06-12 14:07:07 +02002520 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002521};
2522
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002523static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2524 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2525 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2526};
2527
Mathias Krause05600a72013-02-24 14:10:27 +01002528static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002529 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002530 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002532 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002533 const struct nla_policy *nla_pol;
2534 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002535} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2536 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2537 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2538 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002539 .dump = xfrm_dump_sa,
2540 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002541 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2542 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2543 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002544 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002545 .dump = xfrm_dump_policy,
2546 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002547 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002548 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002549 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002550 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2551 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002552 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002553 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2554 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002555 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2556 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002557 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002558 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002559 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2560 .nla_pol = xfrma_spd_policy,
2561 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002562 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563};
2564
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002565static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002567 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002568 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002569 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002570 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Fan Du74005992015-01-27 17:00:29 +08002572#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002573 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002574 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002575#endif
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002579 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 type -= XFRM_MSG_BASE;
2582 link = &xfrm_dispatch[type];
2583
2584 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002585 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002586 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Thomas Graf492b5582005-05-03 14:26:40 -07002588 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2589 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002590 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002592 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002594 {
2595 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002596 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002597 .dump = link->dump,
2598 .done = link->done,
2599 };
2600 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
2603
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002604 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2605 link->nla_max ? : XFRMA_MAX,
2606 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002607 if (err < 0)
2608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002611 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Thomas Graf5424f322007-08-22 14:01:33 -07002613 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002616static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
Fan Du283bc9f2013-11-07 17:47:50 +08002618 struct net *net = sock_net(skb->sk);
2619
2620 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002621 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002622 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
Thomas Graf7deb2262007-08-22 13:57:39 -07002625static inline size_t xfrm_expire_msgsize(void)
2626{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002627 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2628 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002629}
2630
David S. Miller214e0052011-02-24 00:02:38 -05002631static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
2633 struct xfrm_user_expire *ue;
2634 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002635 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Eric W. Biederman15e47302012-09-07 20:12:54 +00002637 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002638 if (nlh == NULL)
2639 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Thomas Graf7b67c852007-08-22 13:53:52 -07002641 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002643 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
David S. Miller1d1e34d2012-06-27 21:57:03 -07002645 err = xfrm_mark_put(skb, &x->mark);
2646 if (err)
2647 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002648
Steffen Klasserta80f5602018-06-12 14:07:07 +02002649 err = xfrm_if_id_put(skb, x->if_id);
2650 if (err)
2651 return err;
2652
Johannes Berg053c0952015-01-16 22:09:00 +01002653 nlmsg_end(skb, nlh);
2654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655}
2656
David S. Miller214e0052011-02-24 00:02:38 -05002657static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002659 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 struct sk_buff *skb;
2661
Thomas Graf7deb2262007-08-22 13:57:39 -07002662 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 if (skb == NULL)
2664 return -ENOMEM;
2665
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002666 if (build_expire(skb, x, c) < 0) {
2667 kfree_skb(skb);
2668 return -EMSGSIZE;
2669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Michal Kubecek21ee5432014-06-03 10:26:06 +02002671 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672}
2673
David S. Miller214e0052011-02-24 00:02:38 -05002674static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002675{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002676 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002677 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002678
Steffen Klassertd8647b72011-03-08 00:10:27 +00002679 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002680 if (skb == NULL)
2681 return -ENOMEM;
2682
2683 if (build_aevent(skb, x, c) < 0)
2684 BUG();
2685
Michal Kubecek21ee5432014-06-03 10:26:06 +02002686 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002687}
2688
David S. Miller214e0052011-02-24 00:02:38 -05002689static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002690{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002691 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692 struct xfrm_usersa_flush *p;
2693 struct nlmsghdr *nlh;
2694 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002695 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002696
Thomas Graf7deb2262007-08-22 13:57:39 -07002697 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002698 if (skb == NULL)
2699 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002700
Eric W. Biederman15e47302012-09-07 20:12:54 +00002701 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002702 if (nlh == NULL) {
2703 kfree_skb(skb);
2704 return -EMSGSIZE;
2705 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002706
Thomas Graf7b67c852007-08-22 13:53:52 -07002707 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002708 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002709
Thomas Graf98250692007-08-22 12:47:26 -07002710 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002711
Michal Kubecek21ee5432014-06-03 10:26:06 +02002712 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002713}
2714
Thomas Graf7deb2262007-08-22 13:57:39 -07002715static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002716{
Thomas Graf7deb2262007-08-22 13:57:39 -07002717 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002718 if (x->aead)
2719 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002720 if (x->aalg) {
2721 l += nla_total_size(sizeof(struct xfrm_algo) +
2722 (x->aalg->alg_key_len + 7) / 8);
2723 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2724 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002725 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002726 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002727 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002728 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002729 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002730 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002731 if (x->tfcpad)
2732 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002733 if (x->replay_esn)
2734 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002735 else
2736 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002737 if (x->security)
2738 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2739 x->security->ctx_len);
2740 if (x->coaddr)
2741 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002742 if (x->props.extra_flags)
2743 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassert78f10c52018-06-12 12:44:26 +02002744 if (x->props.smark.v | x->props.smark.m) {
2745 l += nla_total_size(sizeof(x->props.smark.v));
2746 l += nla_total_size(sizeof(x->props.smark.m));
2747 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002748 if (x->if_id)
2749 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002750
Herbert Xud26f3982007-11-13 21:47:08 -08002751 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002752 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002753
2754 return l;
2755}
2756
David S. Miller214e0052011-02-24 00:02:38 -05002757static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002758{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002759 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002760 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002761 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762 struct nlmsghdr *nlh;
2763 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002765 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002766
2767 headlen = sizeof(*p);
2768 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002769 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002770 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002771 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002772 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002773 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002774
Thomas Graf7deb2262007-08-22 13:57:39 -07002775 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002776 if (skb == NULL)
2777 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002778
Eric W. Biederman15e47302012-09-07 20:12:54 +00002779 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002780 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002781 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002782 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002783
Thomas Graf7b67c852007-08-22 13:53:52 -07002784 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002785 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002786 struct nlattr *attr;
2787
Thomas Graf7b67c852007-08-22 13:53:52 -07002788 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002789 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2790 id->spi = x->id.spi;
2791 id->family = x->props.family;
2792 id->proto = x->id.proto;
2793
Thomas Grafc0144be2007-08-22 13:55:43 -07002794 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002795 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002796 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002797 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002798
2799 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002800 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002801 err = copy_to_user_state_extra(x, p, skb);
2802 if (err)
2803 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002804
Thomas Graf98250692007-08-22 12:47:26 -07002805 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806
Michal Kubecek21ee5432014-06-03 10:26:06 +02002807 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808
David S. Miller1d1e34d2012-06-27 21:57:03 -07002809out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002810 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002811 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002812}
2813
David S. Miller214e0052011-02-24 00:02:38 -05002814static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002815{
2816
2817 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002818 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002819 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002820 case XFRM_MSG_NEWAE:
2821 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002822 case XFRM_MSG_DELSA:
2823 case XFRM_MSG_UPDSA:
2824 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002825 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002826 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827 return xfrm_notify_sa_flush(c);
2828 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002829 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2830 c->event);
2831 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002832 }
2833
2834 return 0;
2835
2836}
2837
Thomas Graf7deb2262007-08-22 13:57:39 -07002838static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2839 struct xfrm_policy *xp)
2840{
2841 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2842 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002843 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002844 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2845 + userpolicy_type_attrsize();
2846}
2847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002849 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002851 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 struct xfrm_user_acquire *ua;
2853 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002854 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002856 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2857 if (nlh == NULL)
2858 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
Thomas Graf7b67c852007-08-22 13:53:52 -07002860 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 memcpy(&ua->id, &x->id, sizeof(ua->id));
2862 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2863 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002864 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 ua->aalgos = xt->aalgos;
2866 ua->ealgos = xt->ealgos;
2867 ua->calgos = xt->calgos;
2868 ua->seq = x->km.seq = seq;
2869
David S. Miller1d1e34d2012-06-27 21:57:03 -07002870 err = copy_to_user_tmpl(xp, skb);
2871 if (!err)
2872 err = copy_to_user_state_sec_ctx(x, skb);
2873 if (!err)
2874 err = copy_to_user_policy_type(xp->type, skb);
2875 if (!err)
2876 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002877 if (!err)
2878 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002879 if (err) {
2880 nlmsg_cancel(skb, nlh);
2881 return err;
2882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Johannes Berg053c0952015-01-16 22:09:00 +01002884 nlmsg_end(skb, nlh);
2885 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886}
2887
2888static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002889 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002891 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Thomas Graf7deb2262007-08-22 13:57:39 -07002894 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 if (skb == NULL)
2896 return -ENOMEM;
2897
Fan Du65e07362012-08-15 10:13:47 +08002898 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 BUG();
2900
Michal Kubecek21ee5432014-06-03 10:26:06 +02002901 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902}
2903
2904/* User gives us xfrm_user_policy_info followed by an array of 0
2905 * or more templates.
2906 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002907static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 u8 *data, int len, int *dir)
2909{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002910 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2912 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2913 struct xfrm_policy *xp;
2914 int nr;
2915
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002916 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 case AF_INET:
2918 if (opt != IP_XFRM_POLICY) {
2919 *dir = -EOPNOTSUPP;
2920 return NULL;
2921 }
2922 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002923#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 case AF_INET6:
2925 if (opt != IPV6_XFRM_POLICY) {
2926 *dir = -EOPNOTSUPP;
2927 return NULL;
2928 }
2929 break;
2930#endif
2931 default:
2932 *dir = -EINVAL;
2933 return NULL;
2934 }
2935
2936 *dir = -EINVAL;
2937
2938 if (len < sizeof(*p) ||
2939 verify_newpolicy_info(p))
2940 return NULL;
2941
2942 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002943 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 return NULL;
2945
Herbert Xua4f1bac2005-07-26 15:43:17 -07002946 if (p->dir > XFRM_POLICY_OUT)
2947 return NULL;
2948
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002949 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if (xp == NULL) {
2951 *dir = -ENOBUFS;
2952 return NULL;
2953 }
2954
2955 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002956 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 copy_templates(xp, ut, nr);
2958
2959 *dir = p->dir;
2960
2961 return xp;
2962}
2963
Thomas Graf7deb2262007-08-22 13:57:39 -07002964static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2965{
2966 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2967 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2968 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002969 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002970 + userpolicy_type_attrsize();
2971}
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002974 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
2976 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002977 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002978 struct nlmsghdr *nlh;
2979 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Eric W. Biederman15e47302012-09-07 20:12:54 +00002981 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002982 if (nlh == NULL)
2983 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Thomas Graf7b67c852007-08-22 13:53:52 -07002985 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002987 err = copy_to_user_tmpl(xp, skb);
2988 if (!err)
2989 err = copy_to_user_sec_ctx(xp, skb);
2990 if (!err)
2991 err = copy_to_user_policy_type(xp->type, skb);
2992 if (!err)
2993 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002994 if (!err)
2995 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002996 if (err) {
2997 nlmsg_cancel(skb, nlh);
2998 return err;
2999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 upe->hard = !!hard;
3001
Johannes Berg053c0952015-01-16 22:09:00 +01003002 nlmsg_end(skb, nlh);
3003 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004}
3005
David S. Miller214e0052011-02-24 00:02:38 -05003006static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003008 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Thomas Graf7deb2262007-08-22 13:57:39 -07003011 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 if (skb == NULL)
3013 return -ENOMEM;
3014
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003015 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 BUG();
3017
Michal Kubecek21ee5432014-06-03 10:26:06 +02003018 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019}
3020
David S. Miller214e0052011-02-24 00:02:38 -05003021static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003022{
David S. Miller1d1e34d2012-06-27 21:57:03 -07003023 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003024 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003025 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003026 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003027 struct nlmsghdr *nlh;
3028 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003029 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003030
3031 headlen = sizeof(*p);
3032 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003033 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003034 headlen = sizeof(*id);
3035 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003036 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003037 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003038 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003039
Thomas Graf7deb2262007-08-22 13:57:39 -07003040 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003041 if (skb == NULL)
3042 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003043
Eric W. Biederman15e47302012-09-07 20:12:54 +00003044 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003045 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003046 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003047 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003048
Thomas Graf7b67c852007-08-22 13:53:52 -07003049 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003050 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003051 struct nlattr *attr;
3052
Thomas Graf7b67c852007-08-22 13:53:52 -07003053 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003054 memset(id, 0, sizeof(*id));
3055 id->dir = dir;
3056 if (c->data.byid)
3057 id->index = xp->index;
3058 else
3059 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3060
Thomas Grafc0144be2007-08-22 13:55:43 -07003061 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003062 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003063 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003064 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003065
3066 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003067 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003068
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003069 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003070 err = copy_to_user_tmpl(xp, skb);
3071 if (!err)
3072 err = copy_to_user_policy_type(xp->type, skb);
3073 if (!err)
3074 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02003075 if (!err)
3076 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003077 if (err)
3078 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003079
Thomas Graf98250692007-08-22 12:47:26 -07003080 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003081
Michal Kubecek21ee5432014-06-03 10:26:06 +02003082 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003083
David S. Miller1d1e34d2012-06-27 21:57:03 -07003084out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003085 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003086 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003087}
3088
David S. Miller214e0052011-02-24 00:02:38 -05003089static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003090{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003091 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003092 struct nlmsghdr *nlh;
3093 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003094 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003095
Thomas Graf7deb2262007-08-22 13:57:39 -07003096 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003097 if (skb == NULL)
3098 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003099
Eric W. Biederman15e47302012-09-07 20:12:54 +00003100 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003101 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003102 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003103 goto out_free_skb;
3104 err = copy_to_user_policy_type(c->data.type, skb);
3105 if (err)
3106 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003107
Thomas Graf98250692007-08-22 12:47:26 -07003108 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003109
Michal Kubecek21ee5432014-06-03 10:26:06 +02003110 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003111
David S. Miller1d1e34d2012-06-27 21:57:03 -07003112out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003113 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003114 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003115}
3116
David S. Miller214e0052011-02-24 00:02:38 -05003117static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003118{
3119
3120 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003121 case XFRM_MSG_NEWPOLICY:
3122 case XFRM_MSG_UPDPOLICY:
3123 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003124 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003125 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003126 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003127 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003128 return xfrm_exp_policy_notify(xp, dir, c);
3129 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003130 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3131 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003132 }
3133
3134 return 0;
3135
3136}
3137
Thomas Graf7deb2262007-08-22 13:57:39 -07003138static inline size_t xfrm_report_msgsize(void)
3139{
3140 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3141}
3142
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003143static int build_report(struct sk_buff *skb, u8 proto,
3144 struct xfrm_selector *sel, xfrm_address_t *addr)
3145{
3146 struct xfrm_user_report *ur;
3147 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003148
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003149 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3150 if (nlh == NULL)
3151 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003152
Thomas Graf7b67c852007-08-22 13:53:52 -07003153 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003154 ur->proto = proto;
3155 memcpy(&ur->sel, sel, sizeof(ur->sel));
3156
David S. Miller1d1e34d2012-06-27 21:57:03 -07003157 if (addr) {
3158 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3159 if (err) {
3160 nlmsg_cancel(skb, nlh);
3161 return err;
3162 }
3163 }
Johannes Berg053c0952015-01-16 22:09:00 +01003164 nlmsg_end(skb, nlh);
3165 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003166}
3167
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003168static int xfrm_send_report(struct net *net, u8 proto,
3169 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003170{
3171 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003172
Thomas Graf7deb2262007-08-22 13:57:39 -07003173 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003174 if (skb == NULL)
3175 return -ENOMEM;
3176
3177 if (build_report(skb, proto, sel, addr) < 0)
3178 BUG();
3179
Michal Kubecek21ee5432014-06-03 10:26:06 +02003180 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003181}
3182
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003183static inline size_t xfrm_mapping_msgsize(void)
3184{
3185 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3186}
3187
3188static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3189 xfrm_address_t *new_saddr, __be16 new_sport)
3190{
3191 struct xfrm_user_mapping *um;
3192 struct nlmsghdr *nlh;
3193
3194 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3195 if (nlh == NULL)
3196 return -EMSGSIZE;
3197
3198 um = nlmsg_data(nlh);
3199
3200 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3201 um->id.spi = x->id.spi;
3202 um->id.family = x->props.family;
3203 um->id.proto = x->id.proto;
3204 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3205 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3206 um->new_sport = new_sport;
3207 um->old_sport = x->encap->encap_sport;
3208 um->reqid = x->props.reqid;
3209
Johannes Berg053c0952015-01-16 22:09:00 +01003210 nlmsg_end(skb, nlh);
3211 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003212}
3213
3214static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3215 __be16 sport)
3216{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003217 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003218 struct sk_buff *skb;
3219
3220 if (x->id.proto != IPPROTO_ESP)
3221 return -EINVAL;
3222
3223 if (!x->encap)
3224 return -EINVAL;
3225
3226 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3227 if (skb == NULL)
3228 return -ENOMEM;
3229
3230 if (build_mapping(skb, x, ipaddr, sport) < 0)
3231 BUG();
3232
Michal Kubecek21ee5432014-06-03 10:26:06 +02003233 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003234}
3235
Horia Geanta0f245582014-02-12 16:20:06 +02003236static bool xfrm_is_alive(const struct km_event *c)
3237{
3238 return (bool)xfrm_acquire_is_on(c->net);
3239}
3240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241static struct xfrm_mgr netlink_mgr = {
3242 .id = "netlink",
3243 .notify = xfrm_send_state_notify,
3244 .acquire = xfrm_send_acquire,
3245 .compile_policy = xfrm_compile_policy,
3246 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003247 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003248 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003249 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003250 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251};
3252
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003253static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Patrick McHardybe336902006-03-20 22:40:54 -08003255 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003256 struct netlink_kernel_cfg cfg = {
3257 .groups = XFRMNLGRP_MAX,
3258 .input = xfrm_netlink_rcv,
3259 };
Patrick McHardybe336902006-03-20 22:40:54 -08003260
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003261 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003262 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003264 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003265 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 return 0;
3267}
3268
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003269static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003270{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003271 struct net *net;
3272 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003273 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003274 synchronize_net();
3275 list_for_each_entry(net, net_exit_list, exit_list)
3276 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003277}
3278
3279static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003280 .init = xfrm_user_net_init,
3281 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003282};
3283
3284static int __init xfrm_user_init(void)
3285{
3286 int rv;
3287
3288 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3289
3290 rv = register_pernet_subsys(&xfrm_user_net_ops);
3291 if (rv < 0)
3292 return rv;
3293 rv = xfrm_register_km(&netlink_mgr);
3294 if (rv < 0)
3295 unregister_pernet_subsys(&xfrm_user_net_ops);
3296 return rv;
3297}
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299static void __exit xfrm_user_exit(void)
3300{
3301 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003302 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
3305module_init(xfrm_user_init);
3306module_exit(xfrm_user_exit);
3307MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003308MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003309