blob: 026770884d46b9b2da4776aa256e24cee229bed4 [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
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800536static struct xfrm_state *xfrm_state_construct(struct net *net,
537 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700538 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int *errp)
540{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800541 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 int err = -ENOMEM;
543
544 if (!x)
545 goto error_no_put;
546
547 copy_from_user_state(x, p);
548
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100549 if (attrs[XFRMA_SA_EXTRA_FLAGS])
550 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
551
Herbert Xu69b01372015-05-27 16:03:45 +0800552 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800553 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000554 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
555 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000557 if (!x->props.aalgo) {
558 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
559 attrs[XFRMA_ALG_AUTH])))
560 goto error;
561 }
Herbert Xu69b01372015-05-27 16:03:45 +0800562 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 goto error;
564 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
565 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700566 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700568
569 if (attrs[XFRMA_ENCAP]) {
570 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
571 sizeof(*x->encap), GFP_KERNEL);
572 if (x->encap == NULL)
573 goto error;
574 }
575
Martin Willi35d28562010-12-08 04:37:49 +0000576 if (attrs[XFRMA_TFCPAD])
577 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
578
Thomas Graffd211502007-09-06 03:28:08 -0700579 if (attrs[XFRMA_COADDR]) {
580 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
581 sizeof(*x->coaddr), GFP_KERNEL);
582 if (x->coaddr == NULL)
583 goto error;
584 }
585
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000586 xfrm_mark_get(attrs, &x->mark);
587
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700588 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (err)
590 goto error;
591
Mathias Krause2f30ea52016-09-08 18:09:57 +0200592 if (attrs[XFRMA_SEC_CTX]) {
593 err = security_xfrm_state_alloc(x,
594 nla_data(attrs[XFRMA_SEC_CTX]));
595 if (err)
596 goto error;
597 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800598
Steffen Klassertd8647b72011-03-08 00:10:27 +0000599 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
600 attrs[XFRMA_REPLAY_ESN_VAL])))
601 goto error;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800604 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800605 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800606 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800607
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000608 if ((err = xfrm_init_replay(x)))
609 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800610
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000611 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000612 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 return x;
615
616error:
617 x->km.state = XFRM_STATE_DEAD;
618 xfrm_state_put(x);
619error_no_put:
620 *errp = err;
621 return NULL;
622}
623
Christoph Hellwig22e70052007-01-02 15:22:30 -0800624static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700625 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800627 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700628 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct xfrm_state *x;
630 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700631 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Thomas Graf35a7aa02007-08-22 14:00:40 -0700633 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (err)
635 return err;
636
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800637 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!x)
639 return err;
640
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700641 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
643 err = xfrm_state_add(x);
644 else
645 err = xfrm_state_update(x);
646
Tetsuo Handa2e710292014-04-22 21:48:30 +0900647 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (err < 0) {
650 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800651 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700652 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700655 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000656 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700657 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700658
659 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700660out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700661 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return err;
663}
664
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800665static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
666 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700667 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700668 int *errp)
669{
670 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000671 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700672 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000673 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700674
675 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
676 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000677 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700678 } else {
679 xfrm_address_t *saddr = NULL;
680
Thomas Graf35a7aa02007-08-22 14:00:40 -0700681 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700682 if (!saddr) {
683 err = -EINVAL;
684 goto out;
685 }
686
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800687 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000688 x = xfrm_state_lookup_byaddr(net, mark,
689 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800690 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700691 }
692
693 out:
694 if (!x && errp)
695 *errp = err;
696 return x;
697}
698
Christoph Hellwig22e70052007-01-02 15:22:30 -0800699static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700700 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800702 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700704 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700705 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700706 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800708 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700710 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
David S. Miller6f68dc32006-06-08 23:58:52 -0700712 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700713 goto out;
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700716 err = -EPERM;
717 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700720 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600721
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700722 if (err < 0)
723 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700724
725 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000726 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700727 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700728 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700730out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900731 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700732 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700733 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
737{
Mathias Krausef778a632012-09-19 11:33:39 +0000738 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 memcpy(&p->id, &x->id, sizeof(p->id));
740 memcpy(&p->sel, &x->sel, sizeof(p->sel));
741 memcpy(&p->lft, &x->lft, sizeof(p->lft));
742 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400743 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
744 put_unaligned(x->stats.replay, &p->stats.replay);
745 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700746 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 p->mode = x->props.mode;
748 p->replay_window = x->props.replay_window;
749 p->reqid = x->props.reqid;
750 p->family = x->props.family;
751 p->flags = x->props.flags;
752 p->seq = x->km.seq;
753}
754
755struct xfrm_dump_info {
756 struct sk_buff *in_skb;
757 struct sk_buff *out_skb;
758 u32 nlmsg_seq;
759 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760};
761
Thomas Grafc0144be2007-08-22 13:55:43 -0700762static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
763{
Thomas Grafc0144be2007-08-22 13:55:43 -0700764 struct xfrm_user_sec_ctx *uctx;
765 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700766 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700767
768 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
769 if (attr == NULL)
770 return -EMSGSIZE;
771
772 uctx = nla_data(attr);
773 uctx->exttype = XFRMA_SEC_CTX;
774 uctx->len = ctx_size;
775 uctx->ctx_doi = s->ctx_doi;
776 uctx->ctx_alg = s->ctx_alg;
777 uctx->ctx_len = s->ctx_len;
778 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
779
780 return 0;
781}
782
Martin Willi4447bb32009-11-25 00:29:52 +0000783static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
784{
785 struct xfrm_algo *algo;
786 struct nlattr *nla;
787
788 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
789 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
790 if (!nla)
791 return -EMSGSIZE;
792
793 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000794 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000795 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
796 algo->alg_key_len = auth->alg_key_len;
797
798 return 0;
799}
800
Herbert Xu68325d32007-10-09 13:30:57 -0700801/* Don't change this without updating xfrm_sa_len! */
802static int copy_to_user_state_extra(struct xfrm_state *x,
803 struct xfrm_usersa_info *p,
804 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700806 int ret = 0;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 copy_to_user_state(x, p);
809
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100810 if (x->props.extra_flags) {
811 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
812 x->props.extra_flags);
813 if (ret)
814 goto out;
815 }
816
David S. Miller1d1e34d2012-06-27 21:57:03 -0700817 if (x->coaddr) {
818 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
819 if (ret)
820 goto out;
821 }
822 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200823 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
824 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700825 if (ret)
826 goto out;
827 }
828 if (x->aead) {
829 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
830 if (ret)
831 goto out;
832 }
833 if (x->aalg) {
834 ret = copy_to_user_auth(x->aalg, skb);
835 if (!ret)
836 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
837 xfrm_alg_auth_len(x->aalg), x->aalg);
838 if (ret)
839 goto out;
840 }
841 if (x->ealg) {
842 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
843 if (ret)
844 goto out;
845 }
846 if (x->calg) {
847 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
848 if (ret)
849 goto out;
850 }
851 if (x->encap) {
852 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
853 if (ret)
854 goto out;
855 }
856 if (x->tfcpad) {
857 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
858 if (ret)
859 goto out;
860 }
861 ret = xfrm_mark_put(skb, &x->mark);
862 if (ret)
863 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100864 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700865 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
866 xfrm_replay_state_esn_len(x->replay_esn),
867 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100868 else
869 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
870 &x->replay);
871 if (ret)
872 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700873 if (x->security)
874 ret = copy_sec_ctx(x->security, skb);
875out:
876 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700877}
878
879static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
880{
881 struct xfrm_dump_info *sp = ptr;
882 struct sk_buff *in_skb = sp->in_skb;
883 struct sk_buff *skb = sp->out_skb;
884 struct xfrm_usersa_info *p;
885 struct nlmsghdr *nlh;
886 int err;
887
Eric W. Biederman15e47302012-09-07 20:12:54 +0000888 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700889 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
890 if (nlh == NULL)
891 return -EMSGSIZE;
892
893 p = nlmsg_data(nlh);
894
895 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700896 if (err) {
897 nlmsg_cancel(skb, nlh);
898 return err;
899 }
Thomas Graf98250692007-08-22 12:47:26 -0700900 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Timo Teras4c563f72008-02-28 21:31:08 -0800904static int xfrm_dump_sa_done(struct netlink_callback *cb)
905{
906 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800907 struct sock *sk = cb->skb->sk;
908 struct net *net = sock_net(sk);
909
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200910 if (cb->args[0])
911 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800912 return 0;
913}
914
Nicolas Dichteld3623092014-02-14 15:30:36 +0100915static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
917{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800918 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800919 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 struct xfrm_dump_info info;
921
Timo Teras4c563f72008-02-28 21:31:08 -0800922 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
923 sizeof(cb->args) - sizeof(cb->args[0]));
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 info.in_skb = cb->skb;
926 info.out_skb = skb;
927 info.nlmsg_seq = cb->nlh->nlmsg_seq;
928 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800929
930 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100931 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100932 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100933 u8 proto = 0;
934 int err;
935
Nicolas Dichteld3623092014-02-14 15:30:36 +0100936 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
937 xfrma_policy);
938 if (err < 0)
939 return err;
940
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100941 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200942 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
943 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100944 if (filter == NULL)
945 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100946 }
947
948 if (attrs[XFRMA_PROTO])
949 proto = nla_get_u8(attrs[XFRMA_PROTO]);
950
951 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200952 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800953 }
954
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800955 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 return skb->len;
958}
959
960static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
961 struct xfrm_state *x, u32 seq)
962{
963 struct xfrm_dump_info info;
964 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000965 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Thomas Graf7deb2262007-08-22 13:57:39 -0700967 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (!skb)
969 return ERR_PTR(-ENOMEM);
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 info.in_skb = in_skb;
972 info.out_skb = skb;
973 info.nlmsg_seq = seq;
974 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Mathias Krause864745d2012-09-13 11:41:26 +0000976 err = dump_one_state(x, 0, &info);
977 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000979 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981
982 return skb;
983}
984
Michal Kubecek21ee5432014-06-03 10:26:06 +0200985/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
986 * Must be called with RCU read lock.
987 */
988static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
989 u32 pid, unsigned int group)
990{
991 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
992
Florian Westphal301a6da2018-06-25 14:00:07 +0200993 if (!nlsk) {
994 kfree_skb(skb);
995 return -EPIPE;
996 }
997
998 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +0200999}
1000
Thomas Graf7deb2262007-08-22 13:57:39 -07001001static inline size_t xfrm_spdinfo_msgsize(void)
1002{
1003 return NLMSG_ALIGN(4)
1004 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001005 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1006 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1007 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001008}
1009
Alexey Dobriyane0710412010-01-23 13:37:10 +00001010static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001011 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001012{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001013 struct xfrmk_spdinfo si;
1014 struct xfrmu_spdinfo spc;
1015 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001016 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001017 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001018 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001019 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001020 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001021
Eric W. Biederman15e47302012-09-07 20:12:54 +00001022 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001023 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001024 return -EMSGSIZE;
1025
1026 f = nlmsg_data(nlh);
1027 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001028 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001029 spc.incnt = si.incnt;
1030 spc.outcnt = si.outcnt;
1031 spc.fwdcnt = si.fwdcnt;
1032 spc.inscnt = si.inscnt;
1033 spc.outscnt = si.outscnt;
1034 spc.fwdscnt = si.fwdscnt;
1035 sph.spdhcnt = si.spdhcnt;
1036 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001037
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001038 do {
1039 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1040
1041 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1042 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1043 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1044 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1045 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1046
David S. Miller1d1e34d2012-06-27 21:57:03 -07001047 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1048 if (!err)
1049 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001050 if (!err)
1051 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1052 if (!err)
1053 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001054 if (err) {
1055 nlmsg_cancel(skb, nlh);
1056 return err;
1057 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001058
Johannes Berg053c0952015-01-16 22:09:00 +01001059 nlmsg_end(skb, nlh);
1060 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001061}
1062
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001063static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1064 struct nlattr **attrs)
1065{
1066 struct net *net = sock_net(skb->sk);
1067 struct xfrmu_spdhthresh *thresh4 = NULL;
1068 struct xfrmu_spdhthresh *thresh6 = NULL;
1069
1070 /* selector prefixlen thresholds to hash policies */
1071 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1072 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1073
1074 if (nla_len(rta) < sizeof(*thresh4))
1075 return -EINVAL;
1076 thresh4 = nla_data(rta);
1077 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1078 return -EINVAL;
1079 }
1080 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1081 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1082
1083 if (nla_len(rta) < sizeof(*thresh6))
1084 return -EINVAL;
1085 thresh6 = nla_data(rta);
1086 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1087 return -EINVAL;
1088 }
1089
1090 if (thresh4 || thresh6) {
1091 write_seqlock(&net->xfrm.policy_hthresh.lock);
1092 if (thresh4) {
1093 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1094 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1095 }
1096 if (thresh6) {
1097 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1098 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1099 }
1100 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1101
1102 xfrm_policy_hash_rebuild(net);
1103 }
1104
1105 return 0;
1106}
1107
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001108static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001109 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001110{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001111 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001112 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001113 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001114 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001115 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001116
Thomas Graf7deb2262007-08-22 13:57:39 -07001117 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001118 if (r_skb == NULL)
1119 return -ENOMEM;
1120
Eric W. Biederman15e47302012-09-07 20:12:54 +00001121 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001122 BUG();
1123
Eric W. Biederman15e47302012-09-07 20:12:54 +00001124 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001125}
1126
Thomas Graf7deb2262007-08-22 13:57:39 -07001127static inline size_t xfrm_sadinfo_msgsize(void)
1128{
1129 return NLMSG_ALIGN(4)
1130 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1131 + nla_total_size(4); /* XFRMA_SAD_CNT */
1132}
1133
Alexey Dobriyane0710412010-01-23 13:37:10 +00001134static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001135 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001136{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001137 struct xfrmk_sadinfo si;
1138 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001139 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001140 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001141 u32 *f;
1142
Eric W. Biederman15e47302012-09-07 20:12:54 +00001143 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001144 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001145 return -EMSGSIZE;
1146
1147 f = nlmsg_data(nlh);
1148 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001149 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001150
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001151 sh.sadhmcnt = si.sadhmcnt;
1152 sh.sadhcnt = si.sadhcnt;
1153
David S. Miller1d1e34d2012-06-27 21:57:03 -07001154 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1155 if (!err)
1156 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1157 if (err) {
1158 nlmsg_cancel(skb, nlh);
1159 return err;
1160 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001161
Johannes Berg053c0952015-01-16 22:09:00 +01001162 nlmsg_end(skb, nlh);
1163 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001164}
1165
1166static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001167 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001168{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001169 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001171 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001172 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001173 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001174
Thomas Graf7deb2262007-08-22 13:57:39 -07001175 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001176 if (r_skb == NULL)
1177 return -ENOMEM;
1178
Eric W. Biederman15e47302012-09-07 20:12:54 +00001179 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001180 BUG();
1181
Eric W. Biederman15e47302012-09-07 20:12:54 +00001182 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001183}
1184
Christoph Hellwig22e70052007-01-02 15:22:30 -08001185static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001186 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001188 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001189 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct xfrm_state *x;
1191 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001192 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001194 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (x == NULL)
1196 goto out_noput;
1197
1198 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1199 if (IS_ERR(resp_skb)) {
1200 err = PTR_ERR(resp_skb);
1201 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001202 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204 xfrm_state_put(x);
1205out_noput:
1206 return err;
1207}
1208
Christoph Hellwig22e70052007-01-02 15:22:30 -08001209static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001210 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001212 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 struct xfrm_state *x;
1214 struct xfrm_userspi_info *p;
1215 struct sk_buff *resp_skb;
1216 xfrm_address_t *daddr;
1217 int family;
1218 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001219 u32 mark;
1220 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Thomas Graf7b67c852007-08-22 13:53:52 -07001222 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001223 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (err)
1225 goto out_noput;
1226
1227 family = p->info.family;
1228 daddr = &p->info.id.daddr;
1229
1230 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001231
1232 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001234 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001235 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 xfrm_state_put(x);
1237 x = NULL;
1238 }
1239 }
1240
1241 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001242 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 p->info.id.proto, daddr,
1244 &p->info.saddr, 1,
1245 family);
1246 err = -ENOENT;
1247 if (x == NULL)
1248 goto out_noput;
1249
Herbert Xu658b2192007-10-09 13:29:52 -07001250 err = xfrm_alloc_spi(x, p->min, p->max);
1251 if (err)
1252 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Herbert Xu658b2192007-10-09 13:29:52 -07001254 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (IS_ERR(resp_skb)) {
1256 err = PTR_ERR(resp_skb);
1257 goto out;
1258 }
1259
Eric W. Biederman15e47302012-09-07 20:12:54 +00001260 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262out:
1263 xfrm_state_put(x);
1264out_noput:
1265 return err;
1266}
1267
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001268static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 switch (dir) {
1271 case XFRM_POLICY_IN:
1272 case XFRM_POLICY_OUT:
1273 case XFRM_POLICY_FWD:
1274 break;
1275
1276 default:
1277 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 return 0;
1281}
1282
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001283static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001284{
1285 switch (type) {
1286 case XFRM_POLICY_TYPE_MAIN:
1287#ifdef CONFIG_XFRM_SUB_POLICY
1288 case XFRM_POLICY_TYPE_SUB:
1289#endif
1290 break;
1291
1292 default:
1293 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001294 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001295
1296 return 0;
1297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1300{
Fan Due682adf2013-11-07 17:47:48 +08001301 int ret;
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 switch (p->share) {
1304 case XFRM_SHARE_ANY:
1305 case XFRM_SHARE_SESSION:
1306 case XFRM_SHARE_USER:
1307 case XFRM_SHARE_UNIQUE:
1308 break;
1309
1310 default:
1311 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 switch (p->action) {
1315 case XFRM_POLICY_ALLOW:
1316 case XFRM_POLICY_BLOCK:
1317 break;
1318
1319 default:
1320 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 switch (p->sel.family) {
1324 case AF_INET:
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001325 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1326 return -EINVAL;
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 break;
1329
1330 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001331#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001332 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1333 return -EINVAL;
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 break;
1336#else
1337 return -EAFNOSUPPORT;
1338#endif
1339
1340 default:
1341 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Fan Due682adf2013-11-07 17:47:48 +08001344 ret = verify_policy_dir(p->dir);
1345 if (ret)
1346 return ret;
1347 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1348 return -EINVAL;
1349
1350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Thomas Graf5424f322007-08-22 14:01:33 -07001353static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001354{
Thomas Graf5424f322007-08-22 14:01:33 -07001355 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001356 struct xfrm_user_sec_ctx *uctx;
1357
1358 if (!rt)
1359 return 0;
1360
Thomas Graf5424f322007-08-22 14:01:33 -07001361 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001362 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1366 int nr)
1367{
1368 int i;
1369
1370 xp->xfrm_nr = nr;
1371 for (i = 0; i < nr; i++, ut++) {
1372 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1373
1374 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1375 memcpy(&t->saddr, &ut->saddr,
1376 sizeof(xfrm_address_t));
1377 t->reqid = ut->reqid;
1378 t->mode = ut->mode;
1379 t->share = ut->share;
1380 t->optional = ut->optional;
1381 t->aalgos = ut->aalgos;
1382 t->ealgos = ut->ealgos;
1383 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001384 /* If all masks are ~0, then we allow all algorithms. */
1385 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001386 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388}
1389
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001390static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1391{
Steffen Klassert9a54c512017-12-08 08:07:25 +01001392 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001393 int i;
1394
1395 if (nr > XFRM_MAX_DEPTH)
1396 return -EINVAL;
1397
Steffen Klassert9a54c512017-12-08 08:07:25 +01001398 prev_family = family;
1399
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001400 for (i = 0; i < nr; i++) {
1401 /* We never validated the ut->family value, so many
1402 * applications simply leave it at zero. The check was
1403 * never made and ut->family was ignored because all
1404 * templates could be assumed to have the same family as
1405 * the policy itself. Now that we will have ipv4-in-ipv6
1406 * and ipv6-in-ipv4 tunnels, this is no longer true.
1407 */
1408 if (!ut[i].family)
1409 ut[i].family = family;
1410
Steffen Klassert9a54c512017-12-08 08:07:25 +01001411 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1412 (ut[i].family != prev_family))
1413 return -EINVAL;
1414
Sean Tranchettide500b92018-09-19 13:54:56 -06001415 if (ut[i].mode >= XFRM_MODE_MAX)
1416 return -EINVAL;
1417
Steffen Klassert9a54c512017-12-08 08:07:25 +01001418 prev_family = ut[i].family;
1419
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001420 switch (ut[i].family) {
1421 case AF_INET:
1422 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001423#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001424 case AF_INET6:
1425 break;
1426#endif
1427 default:
1428 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001429 }
Cong Wang85552882017-11-27 11:15:16 -08001430
1431 switch (ut[i].id.proto) {
1432 case IPPROTO_AH:
1433 case IPPROTO_ESP:
1434 case IPPROTO_COMP:
1435#if IS_ENABLED(CONFIG_IPV6)
1436 case IPPROTO_ROUTING:
1437 case IPPROTO_DSTOPTS:
1438#endif
1439 case IPSEC_PROTO_ANY:
1440 break;
1441 default:
1442 return -EINVAL;
1443 }
1444
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001445 }
1446
1447 return 0;
1448}
1449
Thomas Graf5424f322007-08-22 14:01:33 -07001450static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Thomas Graf5424f322007-08-22 14:01:33 -07001452 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 if (!rt) {
1455 pol->xfrm_nr = 0;
1456 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001457 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1458 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001459 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001461 err = validate_tmpl(nr, utmpl, pol->family);
1462 if (err)
1463 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Thomas Graf5424f322007-08-22 14:01:33 -07001465 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467 return 0;
1468}
1469
Thomas Graf5424f322007-08-22 14:01:33 -07001470static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471{
Thomas Graf5424f322007-08-22 14:01:33 -07001472 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001473 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001474 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001475 int err;
1476
1477 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001478 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001479 type = upt->type;
1480 }
1481
1482 err = verify_policy_type(type);
1483 if (err)
1484 return err;
1485
1486 *tp = type;
1487 return 0;
1488}
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1491{
1492 xp->priority = p->priority;
1493 xp->index = p->index;
1494 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1495 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1496 xp->action = p->action;
1497 xp->flags = p->flags;
1498 xp->family = p->sel.family;
1499 /* XXX xp->share = p->share; */
1500}
1501
1502static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1503{
Mathias Krause7b789832012-09-19 11:33:40 +00001504 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1506 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1507 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1508 p->priority = xp->priority;
1509 p->index = xp->index;
1510 p->sel.family = xp->family;
1511 p->dir = dir;
1512 p->action = xp->action;
1513 p->flags = xp->flags;
1514 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1515}
1516
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001517static 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 -07001518{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001519 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 int err;
1521
1522 if (!xp) {
1523 *errp = -ENOMEM;
1524 return NULL;
1525 }
1526
1527 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001528
Thomas Graf35a7aa02007-08-22 14:00:40 -07001529 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001530 if (err)
1531 goto error;
1532
Thomas Graf35a7aa02007-08-22 14:00:40 -07001533 if (!(err = copy_from_user_tmpl(xp, attrs)))
1534 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001535 if (err)
1536 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001538 xfrm_mark_get(attrs, &xp->mark);
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001541 error:
1542 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001543 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001544 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001545 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Christoph Hellwig22e70052007-01-02 15:22:30 -08001548static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001549 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001551 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001552 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001554 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 int err;
1556 int excl;
1557
1558 err = verify_newpolicy_info(p);
1559 if (err)
1560 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001561 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001562 if (err)
1563 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001565 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (!xp)
1567 return err;
1568
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001569 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001570 * Aha! this is anti-netlink really i.e more pfkey derived
1571 * in netlink excl is a flag and you wouldnt need
1572 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1574 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001575 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001578 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 kfree(xp);
1580 return err;
1581 }
1582
Herbert Xuf60f6b82005-06-18 22:44:37 -07001583 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001584 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001585 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001586 km_policy_notify(xp, p->dir, &c);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 xfrm_pol_put(xp);
1589
1590 return 0;
1591}
1592
1593static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1594{
1595 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1596 int i;
1597
1598 if (xp->xfrm_nr == 0)
1599 return 0;
1600
1601 for (i = 0; i < xp->xfrm_nr; i++) {
1602 struct xfrm_user_tmpl *up = &vec[i];
1603 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1604
Mathias Krause1f868402012-09-19 11:33:41 +00001605 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001607 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1609 up->reqid = kp->reqid;
1610 up->mode = kp->mode;
1611 up->share = kp->share;
1612 up->optional = kp->optional;
1613 up->aalgos = kp->aalgos;
1614 up->ealgos = kp->ealgos;
1615 up->calgos = kp->calgos;
1616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Thomas Grafc0144be2007-08-22 13:55:43 -07001618 return nla_put(skb, XFRMA_TMPL,
1619 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001620}
1621
Serge Hallyn0d681622006-07-24 23:30:44 -07001622static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1623{
1624 if (x->security) {
1625 return copy_sec_ctx(x->security, skb);
1626 }
1627 return 0;
1628}
1629
1630static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1631{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001632 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001633 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001634 return 0;
1635}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001636static inline size_t userpolicy_type_attrsize(void)
1637{
1638#ifdef CONFIG_XFRM_SUB_POLICY
1639 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1640#else
1641 return 0;
1642#endif
1643}
Serge Hallyn0d681622006-07-24 23:30:44 -07001644
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001645#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001646static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001647{
Eric Dumazet2038a9e2018-06-18 21:35:07 -07001648 struct xfrm_userpolicy_type upt;
1649
1650 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1651 memset(&upt, 0, sizeof(upt));
1652 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001653
Thomas Grafc0144be2007-08-22 13:55:43 -07001654 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001655}
1656
1657#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001658static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001659{
1660 return 0;
1661}
1662#endif
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1665{
1666 struct xfrm_dump_info *sp = ptr;
1667 struct xfrm_userpolicy_info *p;
1668 struct sk_buff *in_skb = sp->in_skb;
1669 struct sk_buff *skb = sp->out_skb;
1670 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001671 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Eric W. Biederman15e47302012-09-07 20:12:54 +00001673 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001674 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1675 if (nlh == NULL)
1676 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Thomas Graf7b67c852007-08-22 13:53:52 -07001678 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001680 err = copy_to_user_tmpl(xp, skb);
1681 if (!err)
1682 err = copy_to_user_sec_ctx(xp, skb);
1683 if (!err)
1684 err = copy_to_user_policy_type(xp->type, skb);
1685 if (!err)
1686 err = xfrm_mark_put(skb, &xp->mark);
1687 if (err) {
1688 nlmsg_cancel(skb, nlh);
1689 return err;
1690 }
Thomas Graf98250692007-08-22 12:47:26 -07001691 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
Timo Teras4c563f72008-02-28 21:31:08 -08001695static int xfrm_dump_policy_done(struct netlink_callback *cb)
1696{
Herbert Xu543aabb2017-10-19 20:51:10 +08001697 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001698 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001699
Fan Du283bc9f2013-11-07 17:47:50 +08001700 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001701 return 0;
1702}
1703
Herbert Xu543aabb2017-10-19 20:51:10 +08001704static int xfrm_dump_policy_start(struct netlink_callback *cb)
1705{
1706 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1707
1708 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1709
1710 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1711 return 0;
1712}
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1715{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001716 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001717 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 struct xfrm_dump_info info;
1719
1720 info.in_skb = cb->skb;
1721 info.out_skb = skb;
1722 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1723 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001724
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001725 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 return skb->len;
1728}
1729
1730static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1731 struct xfrm_policy *xp,
1732 int dir, u32 seq)
1733{
1734 struct xfrm_dump_info info;
1735 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001736 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Thomas Graf7deb2262007-08-22 13:57:39 -07001738 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (!skb)
1740 return ERR_PTR(-ENOMEM);
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 info.in_skb = in_skb;
1743 info.out_skb = skb;
1744 info.nlmsg_seq = seq;
1745 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Mathias Krausec2546372012-09-14 09:58:32 +00001747 err = dump_one_policy(xp, dir, 0, &info);
1748 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001750 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752
1753 return skb;
1754}
1755
Christoph Hellwig22e70052007-01-02 15:22:30 -08001756static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001757 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001759 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 struct xfrm_policy *xp;
1761 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001762 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001764 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001766 struct xfrm_mark m;
1767 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Thomas Graf7b67c852007-08-22 13:53:52 -07001769 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1771
Thomas Graf35a7aa02007-08-22 14:00:40 -07001772 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001773 if (err)
1774 return err;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 err = verify_policy_dir(p->dir);
1777 if (err)
1778 return err;
1779
1780 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001781 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001782 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001783 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001784 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001785
Thomas Graf35a7aa02007-08-22 14:00:40 -07001786 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001787 if (err)
1788 return err;
1789
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001790 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001791 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001792 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001793
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001794 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001795 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001796 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001797 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001798 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001799 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001800 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (xp == NULL)
1803 return -ENOENT;
1804
1805 if (!delete) {
1806 struct sk_buff *resp_skb;
1807
1808 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1809 if (IS_ERR(resp_skb)) {
1810 err = PTR_ERR(resp_skb);
1811 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001812 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001813 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001815 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001816 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001817
1818 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001819 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001820
Herbert Xue7443892005-06-18 22:44:18 -07001821 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001822 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001823 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001824 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001825 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001828out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001829 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001830 if (delete && err == 0)
1831 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return err;
1833}
1834
Christoph Hellwig22e70052007-01-02 15:22:30 -08001835static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001836 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001838 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001839 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001840 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001841 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Tetsuo Handa2e710292014-04-22 21:48:30 +09001843 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001844 if (err) {
1845 if (err == -ESRCH) /* empty table */
1846 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001847 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001848 }
Herbert Xubf088672005-06-18 22:44:00 -07001849 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001850 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001851 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001852 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001853 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001854 km_state_notify(NULL, &c);
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 return 0;
1857}
1858
Steffen Klassertd8647b72011-03-08 00:10:27 +00001859static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001860{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001861 size_t replay_size = x->replay_esn ?
1862 xfrm_replay_state_esn_len(x->replay_esn) :
1863 sizeof(struct xfrm_replay_state);
1864
Thomas Graf7deb2262007-08-22 13:57:39 -07001865 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001866 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001867 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001868 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001869 + nla_total_size(4) /* XFRM_AE_RTHR */
1870 + nla_total_size(4); /* XFRM_AE_ETHR */
1871}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001872
David S. Miller214e0052011-02-24 00:02:38 -05001873static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001874{
1875 struct xfrm_aevent_id *id;
1876 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001877 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001878
Eric W. Biederman15e47302012-09-07 20:12:54 +00001879 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001880 if (nlh == NULL)
1881 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001882
Thomas Graf7b67c852007-08-22 13:53:52 -07001883 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001884 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001885 id->sa_id.spi = x->id.spi;
1886 id->sa_id.family = x->props.family;
1887 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001888 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001889 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001890 id->flags = c->data.aevent;
1891
David S. Millerd0fde792012-03-29 04:02:26 -04001892 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001893 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1894 xfrm_replay_state_esn_len(x->replay_esn),
1895 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001896 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001897 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1898 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001899 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001900 if (err)
1901 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001902 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1903 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001904 if (err)
1905 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001906
David S. Miller1d1e34d2012-06-27 21:57:03 -07001907 if (id->flags & XFRM_AE_RTHR) {
1908 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1909 if (err)
1910 goto out_cancel;
1911 }
1912 if (id->flags & XFRM_AE_ETHR) {
1913 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1914 x->replay_maxage * 10 / HZ);
1915 if (err)
1916 goto out_cancel;
1917 }
1918 err = xfrm_mark_put(skb, &x->mark);
1919 if (err)
1920 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001921
Johannes Berg053c0952015-01-16 22:09:00 +01001922 nlmsg_end(skb, nlh);
1923 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001924
David S. Miller1d1e34d2012-06-27 21:57:03 -07001925out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001926 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001927 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001928}
1929
Christoph Hellwig22e70052007-01-02 15:22:30 -08001930static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001931 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001932{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001933 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001934 struct xfrm_state *x;
1935 struct sk_buff *r_skb;
1936 int err;
1937 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001938 u32 mark;
1939 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001940 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001941 struct xfrm_usersa_id *id = &p->sa_id;
1942
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001943 mark = xfrm_mark_get(attrs, &m);
1944
1945 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001946 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001947 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001948
1949 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1950 if (r_skb == NULL) {
1951 xfrm_state_put(x);
1952 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001953 }
1954
1955 /*
1956 * XXX: is this lock really needed - none of the other
1957 * gets lock (the concern is things getting updated
1958 * while we are still reading) - jhs
1959 */
1960 spin_lock_bh(&x->lock);
1961 c.data.aevent = p->flags;
1962 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001963 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964
1965 if (build_aevent(r_skb, x, &c) < 0)
1966 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001967 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001968 spin_unlock_bh(&x->lock);
1969 xfrm_state_put(x);
1970 return err;
1971}
1972
Christoph Hellwig22e70052007-01-02 15:22:30 -08001973static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001974 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001975{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001976 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001977 struct xfrm_state *x;
1978 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001979 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001980 u32 mark = 0;
1981 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001982 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001983 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001984 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001985 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001986 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1987 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001988
Michael Rossberg4e077232015-09-29 11:25:08 +02001989 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001990 return err;
1991
1992 /* pedantic mode - thou shalt sayeth replaceth */
1993 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1994 return err;
1995
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001996 mark = xfrm_mark_get(attrs, &m);
1997
1998 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 -08001999 if (x == NULL)
2000 return -ESRCH;
2001
2002 if (x->km.state != XFRM_STATE_VALID)
2003 goto out;
2004
Steffen Klassert4479ff72013-09-09 09:39:01 +02002005 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002006 if (err)
2007 goto out;
2008
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002009 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002010 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002011 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002012
2013 c.event = nlh->nlmsg_type;
2014 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002015 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002016 c.data.aevent = XFRM_AE_CU;
2017 km_state_notify(x, &c);
2018 err = 0;
2019out:
2020 xfrm_state_put(x);
2021 return err;
2022}
2023
Christoph Hellwig22e70052007-01-02 15:22:30 -08002024static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002025 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002027 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002028 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002029 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002030 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002031
Thomas Graf35a7aa02007-08-22 14:00:40 -07002032 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002033 if (err)
2034 return err;
2035
Tetsuo Handa2e710292014-04-22 21:48:30 +09002036 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002037 if (err) {
2038 if (err == -ESRCH) /* empty table */
2039 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002040 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002041 }
2042
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002043 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002044 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002045 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002046 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002047 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002048 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return 0;
2050}
2051
Christoph Hellwig22e70052007-01-02 15:22:30 -08002052static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002053 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002054{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002055 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002056 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002057 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002058 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002059 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002060 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002061 struct xfrm_mark m;
2062 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002063
Thomas Graf35a7aa02007-08-22 14:00:40 -07002064 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002065 if (err)
2066 return err;
2067
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002068 err = verify_policy_dir(p->dir);
2069 if (err)
2070 return err;
2071
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002072 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002073 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002074 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002075 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002076 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002077
Thomas Graf35a7aa02007-08-22 14:00:40 -07002078 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002079 if (err)
2080 return err;
2081
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002082 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002083 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002084 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002085
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002086 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002087 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002088 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002089 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002090 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002091 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002092 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002093 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002094 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002095 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002096
Timo Teräsea2dea92010-03-31 00:17:05 +00002097 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002098 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002099
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002100 err = 0;
2101 if (up->hard) {
2102 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002103 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002104 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002105 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002106
2107out:
2108 xfrm_pol_put(xp);
2109 return err;
2110}
2111
Christoph Hellwig22e70052007-01-02 15:22:30 -08002112static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002113 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002114{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002115 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002116 struct xfrm_state *x;
2117 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002118 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002119 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002120 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002121 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002122
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002123 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 -08002124
David S. Miller3a765aa2007-02-26 14:52:21 -08002125 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002126 if (x == NULL)
2127 return err;
2128
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002129 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002130 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002131 if (x->km.state != XFRM_STATE_VALID)
2132 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002133 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002134
Joy Latten161a09e2006-11-27 13:11:54 -06002135 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002136 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002137 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002138 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002139 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002140out:
2141 spin_unlock_bh(&x->lock);
2142 xfrm_state_put(x);
2143 return err;
2144}
2145
Christoph Hellwig22e70052007-01-02 15:22:30 -08002146static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002147 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002148{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002149 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002150 struct xfrm_policy *xp;
2151 struct xfrm_user_tmpl *ut;
2152 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002153 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002154 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002155
Thomas Graf7b67c852007-08-22 13:53:52 -07002156 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002157 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002158 int err = -ENOMEM;
2159
2160 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002161 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002162
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002163 xfrm_mark_get(attrs, &mark);
2164
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002165 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002166 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002167 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002168
2169 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002170 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002171 if (!xp)
2172 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002173
2174 memcpy(&x->id, &ua->id, sizeof(ua->id));
2175 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2176 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002177 xp->mark.m = x->mark.m = mark.m;
2178 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002179 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002180 /* extract the templates and for each call km_key */
2181 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2182 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2183 memcpy(&x->id, &t->id, sizeof(x->id));
2184 x->props.mode = t->mode;
2185 x->props.reqid = t->reqid;
2186 x->props.family = ut->family;
2187 t->aalgos = ua->aalgos;
2188 t->ealgos = ua->ealgos;
2189 t->calgos = ua->calgos;
2190 err = km_query(x, t, xp);
2191
2192 }
2193
2194 kfree(x);
2195 kfree(xp);
2196
2197 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002198
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002199free_state:
2200 kfree(x);
2201nomem:
2202 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002203}
2204
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002205#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002207 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002208 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002209{
Thomas Graf5424f322007-08-22 14:01:33 -07002210 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002211 struct xfrm_user_migrate *um;
2212 int i, num_migrate;
2213
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002214 if (k != NULL) {
2215 struct xfrm_user_kmaddress *uk;
2216
2217 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2218 memcpy(&k->local, &uk->local, sizeof(k->local));
2219 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2220 k->family = uk->family;
2221 k->reserved = uk->reserved;
2222 }
2223
Thomas Graf5424f322007-08-22 14:01:33 -07002224 um = nla_data(rt);
2225 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002226
2227 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2228 return -EINVAL;
2229
2230 for (i = 0; i < num_migrate; i++, um++, ma++) {
2231 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2232 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2233 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2234 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2235
2236 ma->proto = um->proto;
2237 ma->mode = um->mode;
2238 ma->reqid = um->reqid;
2239
2240 ma->old_family = um->old_family;
2241 ma->new_family = um->new_family;
2242 }
2243
2244 *num = i;
2245 return 0;
2246}
2247
2248static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002249 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002250{
Thomas Graf7b67c852007-08-22 13:53:52 -07002251 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002252 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002253 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254 u8 type;
2255 int err;
2256 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002257 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002258
Thomas Graf35a7aa02007-08-22 14:00:40 -07002259 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002260 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002261
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002262 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2263
Thomas Graf5424f322007-08-22 14:01:33 -07002264 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002265 if (err)
2266 return err;
2267
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002268 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002269 if (err)
2270 return err;
2271
2272 if (!n)
2273 return 0;
2274
Fan Du8d549c42013-11-07 17:47:49 +08002275 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002276
2277 return 0;
2278}
2279#else
2280static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002281 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002282{
2283 return -ENOPROTOOPT;
2284}
2285#endif
2286
2287#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002288static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002289{
2290 struct xfrm_user_migrate um;
2291
2292 memset(&um, 0, sizeof(um));
2293 um.proto = m->proto;
2294 um.mode = m->mode;
2295 um.reqid = m->reqid;
2296 um.old_family = m->old_family;
2297 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2298 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2299 um.new_family = m->new_family;
2300 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2301 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2302
Thomas Grafc0144be2007-08-22 13:55:43 -07002303 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002304}
2305
David S. Miller183cad12011-02-24 00:28:01 -05002306static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002307{
2308 struct xfrm_user_kmaddress uk;
2309
2310 memset(&uk, 0, sizeof(uk));
2311 uk.family = k->family;
2312 uk.reserved = k->reserved;
2313 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002314 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002315
2316 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2317}
2318
2319static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002320{
2321 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002322 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2323 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2324 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002325}
2326
David S. Miller183cad12011-02-24 00:28:01 -05002327static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2328 int num_migrate, const struct xfrm_kmaddress *k,
2329 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002330{
David S. Miller183cad12011-02-24 00:28:01 -05002331 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002332 struct xfrm_userpolicy_id *pol_id;
2333 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002334 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002335
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002336 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2337 if (nlh == NULL)
2338 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002339
Thomas Graf7b67c852007-08-22 13:53:52 -07002340 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002341 /* copy data from selector, dir, and type to the pol_id */
2342 memset(pol_id, 0, sizeof(*pol_id));
2343 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2344 pol_id->dir = dir;
2345
David S. Miller1d1e34d2012-06-27 21:57:03 -07002346 if (k != NULL) {
2347 err = copy_to_user_kmaddress(k, skb);
2348 if (err)
2349 goto out_cancel;
2350 }
2351 err = copy_to_user_policy_type(type, skb);
2352 if (err)
2353 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002354 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002355 err = copy_to_user_migrate(mp, skb);
2356 if (err)
2357 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002358 }
2359
Johannes Berg053c0952015-01-16 22:09:00 +01002360 nlmsg_end(skb, nlh);
2361 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002362
2363out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002364 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002365 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002366}
2367
David S. Miller183cad12011-02-24 00:28:01 -05002368static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2369 const struct xfrm_migrate *m, int num_migrate,
2370 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002371{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002372 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002373 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002374
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002375 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002376 if (skb == NULL)
2377 return -ENOMEM;
2378
2379 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002380 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002381 BUG();
2382
Michal Kubecek21ee5432014-06-03 10:26:06 +02002383 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002384}
2385#else
David S. Miller183cad12011-02-24 00:28:01 -05002386static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2387 const struct xfrm_migrate *m, int num_migrate,
2388 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002389{
2390 return -ENOPROTOOPT;
2391}
2392#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002393
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002394#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002395
2396static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002397 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002398 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2399 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2400 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2401 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2402 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2403 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002404 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002405 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002406 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002407 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002408 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002409 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002410 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002411 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2412 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002413 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002414 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002415 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002416 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002417 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418};
2419
Thomas Graf492b5582005-05-03 14:26:40 -07002420#undef XMSGSIZE
2421
Thomas Grafcf5cb792007-08-22 13:59:04 -07002422static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002423 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2424 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2425 [XFRMA_LASTUSED] = { .type = NLA_U64},
2426 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002427 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002428 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2429 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2430 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2431 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2432 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2433 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2434 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2435 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2436 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2437 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2438 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2439 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2440 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2441 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002442 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002443 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002444 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002445 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002446 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002447 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002448 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002449};
2450
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002451static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2452 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2453 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2454};
2455
Mathias Krause05600a72013-02-24 14:10:27 +01002456static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002457 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002458 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002460 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002461 const struct nla_policy *nla_pol;
2462 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002463} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2464 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2465 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2466 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002467 .dump = xfrm_dump_sa,
2468 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002469 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2470 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2471 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002472 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002473 .dump = xfrm_dump_policy,
2474 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002475 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002476 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002477 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002478 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2479 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002480 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002481 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2482 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002483 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2484 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002485 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002486 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002487 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2488 .nla_pol = xfrma_spd_policy,
2489 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002490 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491};
2492
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002493static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002495 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002496 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002497 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002498 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Fan Du74005992015-01-27 17:00:29 +08002500#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002501 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002502 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002503#endif
2504
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002507 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 type -= XFRM_MSG_BASE;
2510 link = &xfrm_dispatch[type];
2511
2512 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002513 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002514 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Thomas Graf492b5582005-05-03 14:26:40 -07002516 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2517 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002518 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002520 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002522 {
2523 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002524 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002525 .dump = link->dump,
2526 .done = link->done,
2527 };
2528 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
2531
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002532 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2533 link->nla_max ? : XFRMA_MAX,
2534 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002535 if (err < 0)
2536 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002539 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Thomas Graf5424f322007-08-22 14:01:33 -07002541 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002544static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
Fan Du283bc9f2013-11-07 17:47:50 +08002546 struct net *net = sock_net(skb->sk);
2547
2548 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002549 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002550 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
2552
Thomas Graf7deb2262007-08-22 13:57:39 -07002553static inline size_t xfrm_expire_msgsize(void)
2554{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002555 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2556 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002557}
2558
David S. Miller214e0052011-02-24 00:02:38 -05002559static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
2561 struct xfrm_user_expire *ue;
2562 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002563 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Eric W. Biederman15e47302012-09-07 20:12:54 +00002565 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002566 if (nlh == NULL)
2567 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Thomas Graf7b67c852007-08-22 13:53:52 -07002569 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002571 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
David S. Miller1d1e34d2012-06-27 21:57:03 -07002573 err = xfrm_mark_put(skb, &x->mark);
2574 if (err)
2575 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002576
Johannes Berg053c0952015-01-16 22:09:00 +01002577 nlmsg_end(skb, nlh);
2578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579}
2580
David S. Miller214e0052011-02-24 00:02:38 -05002581static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002583 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 struct sk_buff *skb;
2585
Thomas Graf7deb2262007-08-22 13:57:39 -07002586 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (skb == NULL)
2588 return -ENOMEM;
2589
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002590 if (build_expire(skb, x, c) < 0) {
2591 kfree_skb(skb);
2592 return -EMSGSIZE;
2593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Michal Kubecek21ee5432014-06-03 10:26:06 +02002595 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596}
2597
David S. Miller214e0052011-02-24 00:02:38 -05002598static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002599{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002600 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002601 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002602
Steffen Klassertd8647b72011-03-08 00:10:27 +00002603 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002604 if (skb == NULL)
2605 return -ENOMEM;
2606
2607 if (build_aevent(skb, x, c) < 0)
2608 BUG();
2609
Michal Kubecek21ee5432014-06-03 10:26:06 +02002610 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002611}
2612
David S. Miller214e0052011-02-24 00:02:38 -05002613static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002614{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002615 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002616 struct xfrm_usersa_flush *p;
2617 struct nlmsghdr *nlh;
2618 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002619 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002620
Thomas Graf7deb2262007-08-22 13:57:39 -07002621 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002622 if (skb == NULL)
2623 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002624
Eric W. Biederman15e47302012-09-07 20:12:54 +00002625 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002626 if (nlh == NULL) {
2627 kfree_skb(skb);
2628 return -EMSGSIZE;
2629 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002630
Thomas Graf7b67c852007-08-22 13:53:52 -07002631 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002632 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002633
Thomas Graf98250692007-08-22 12:47:26 -07002634 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002635
Michal Kubecek21ee5432014-06-03 10:26:06 +02002636 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002637}
2638
Thomas Graf7deb2262007-08-22 13:57:39 -07002639static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002640{
Thomas Graf7deb2262007-08-22 13:57:39 -07002641 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002642 if (x->aead)
2643 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002644 if (x->aalg) {
2645 l += nla_total_size(sizeof(struct xfrm_algo) +
2646 (x->aalg->alg_key_len + 7) / 8);
2647 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2648 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002649 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002650 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002651 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002652 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002653 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002654 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002655 if (x->tfcpad)
2656 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002657 if (x->replay_esn)
2658 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002659 else
2660 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002661 if (x->security)
2662 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2663 x->security->ctx_len);
2664 if (x->coaddr)
2665 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002666 if (x->props.extra_flags)
2667 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002668
Herbert Xud26f3982007-11-13 21:47:08 -08002669 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002670 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002671
2672 return l;
2673}
2674
David S. Miller214e0052011-02-24 00:02:38 -05002675static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002676{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002677 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002678 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002679 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002680 struct nlmsghdr *nlh;
2681 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002682 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002683 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002684
2685 headlen = sizeof(*p);
2686 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002687 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002688 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002689 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002690 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002691 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692
Thomas Graf7deb2262007-08-22 13:57:39 -07002693 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002694 if (skb == NULL)
2695 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002696
Eric W. Biederman15e47302012-09-07 20:12:54 +00002697 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002698 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002699 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002700 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002701
Thomas Graf7b67c852007-08-22 13:53:52 -07002702 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002703 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002704 struct nlattr *attr;
2705
Thomas Graf7b67c852007-08-22 13:53:52 -07002706 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002707 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2708 id->spi = x->id.spi;
2709 id->family = x->props.family;
2710 id->proto = x->id.proto;
2711
Thomas Grafc0144be2007-08-22 13:55:43 -07002712 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002713 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002714 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002715 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002716
2717 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002718 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002719 err = copy_to_user_state_extra(x, p, skb);
2720 if (err)
2721 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002722
Thomas Graf98250692007-08-22 12:47:26 -07002723 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002724
Michal Kubecek21ee5432014-06-03 10:26:06 +02002725 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002726
David S. Miller1d1e34d2012-06-27 21:57:03 -07002727out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002728 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002729 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002730}
2731
David S. Miller214e0052011-02-24 00:02:38 -05002732static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002733{
2734
2735 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002736 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002737 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002738 case XFRM_MSG_NEWAE:
2739 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002740 case XFRM_MSG_DELSA:
2741 case XFRM_MSG_UPDSA:
2742 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002743 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002744 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002745 return xfrm_notify_sa_flush(c);
2746 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002747 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2748 c->event);
2749 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002750 }
2751
2752 return 0;
2753
2754}
2755
Thomas Graf7deb2262007-08-22 13:57:39 -07002756static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2757 struct xfrm_policy *xp)
2758{
2759 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2760 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002761 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002762 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2763 + userpolicy_type_attrsize();
2764}
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002767 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002769 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 struct xfrm_user_acquire *ua;
2771 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002772 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002774 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2775 if (nlh == NULL)
2776 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Thomas Graf7b67c852007-08-22 13:53:52 -07002778 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 memcpy(&ua->id, &x->id, sizeof(ua->id));
2780 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2781 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002782 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 ua->aalgos = xt->aalgos;
2784 ua->ealgos = xt->ealgos;
2785 ua->calgos = xt->calgos;
2786 ua->seq = x->km.seq = seq;
2787
David S. Miller1d1e34d2012-06-27 21:57:03 -07002788 err = copy_to_user_tmpl(xp, skb);
2789 if (!err)
2790 err = copy_to_user_state_sec_ctx(x, skb);
2791 if (!err)
2792 err = copy_to_user_policy_type(xp->type, skb);
2793 if (!err)
2794 err = xfrm_mark_put(skb, &xp->mark);
2795 if (err) {
2796 nlmsg_cancel(skb, nlh);
2797 return err;
2798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Johannes Berg053c0952015-01-16 22:09:00 +01002800 nlmsg_end(skb, nlh);
2801 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
2804static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002805 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002807 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Thomas Graf7deb2262007-08-22 13:57:39 -07002810 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (skb == NULL)
2812 return -ENOMEM;
2813
Fan Du65e07362012-08-15 10:13:47 +08002814 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 BUG();
2816
Michal Kubecek21ee5432014-06-03 10:26:06 +02002817 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818}
2819
2820/* User gives us xfrm_user_policy_info followed by an array of 0
2821 * or more templates.
2822 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002823static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 u8 *data, int len, int *dir)
2825{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002826 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2828 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2829 struct xfrm_policy *xp;
2830 int nr;
2831
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002832 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 case AF_INET:
2834 if (opt != IP_XFRM_POLICY) {
2835 *dir = -EOPNOTSUPP;
2836 return NULL;
2837 }
2838 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002839#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 case AF_INET6:
2841 if (opt != IPV6_XFRM_POLICY) {
2842 *dir = -EOPNOTSUPP;
2843 return NULL;
2844 }
2845 break;
2846#endif
2847 default:
2848 *dir = -EINVAL;
2849 return NULL;
2850 }
2851
2852 *dir = -EINVAL;
2853
2854 if (len < sizeof(*p) ||
2855 verify_newpolicy_info(p))
2856 return NULL;
2857
2858 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002859 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 return NULL;
2861
Herbert Xua4f1bac2005-07-26 15:43:17 -07002862 if (p->dir > XFRM_POLICY_OUT)
2863 return NULL;
2864
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002865 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 if (xp == NULL) {
2867 *dir = -ENOBUFS;
2868 return NULL;
2869 }
2870
2871 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002872 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 copy_templates(xp, ut, nr);
2874
2875 *dir = p->dir;
2876
2877 return xp;
2878}
2879
Thomas Graf7deb2262007-08-22 13:57:39 -07002880static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2881{
2882 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2883 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2884 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002885 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002886 + userpolicy_type_attrsize();
2887}
2888
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002890 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
2892 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002893 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002894 struct nlmsghdr *nlh;
2895 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Eric W. Biederman15e47302012-09-07 20:12:54 +00002897 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002898 if (nlh == NULL)
2899 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Thomas Graf7b67c852007-08-22 13:53:52 -07002901 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002903 err = copy_to_user_tmpl(xp, skb);
2904 if (!err)
2905 err = copy_to_user_sec_ctx(xp, skb);
2906 if (!err)
2907 err = copy_to_user_policy_type(xp->type, skb);
2908 if (!err)
2909 err = xfrm_mark_put(skb, &xp->mark);
2910 if (err) {
2911 nlmsg_cancel(skb, nlh);
2912 return err;
2913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 upe->hard = !!hard;
2915
Johannes Berg053c0952015-01-16 22:09:00 +01002916 nlmsg_end(skb, nlh);
2917 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918}
2919
David S. Miller214e0052011-02-24 00:02:38 -05002920static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002922 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Thomas Graf7deb2262007-08-22 13:57:39 -07002925 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 if (skb == NULL)
2927 return -ENOMEM;
2928
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002929 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 BUG();
2931
Michal Kubecek21ee5432014-06-03 10:26:06 +02002932 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933}
2934
David S. Miller214e0052011-02-24 00:02:38 -05002935static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002936{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002937 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002938 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002939 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002940 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002941 struct nlmsghdr *nlh;
2942 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002943 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002944
2945 headlen = sizeof(*p);
2946 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002947 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002948 headlen = sizeof(*id);
2949 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002950 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002951 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002952 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002953
Thomas Graf7deb2262007-08-22 13:57:39 -07002954 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002955 if (skb == NULL)
2956 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002957
Eric W. Biederman15e47302012-09-07 20:12:54 +00002958 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002959 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002960 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002961 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002962
Thomas Graf7b67c852007-08-22 13:53:52 -07002963 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002964 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002965 struct nlattr *attr;
2966
Thomas Graf7b67c852007-08-22 13:53:52 -07002967 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002968 memset(id, 0, sizeof(*id));
2969 id->dir = dir;
2970 if (c->data.byid)
2971 id->index = xp->index;
2972 else
2973 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2974
Thomas Grafc0144be2007-08-22 13:55:43 -07002975 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002976 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002977 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002978 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002979
2980 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002981 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002982
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002983 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002984 err = copy_to_user_tmpl(xp, skb);
2985 if (!err)
2986 err = copy_to_user_policy_type(xp->type, skb);
2987 if (!err)
2988 err = xfrm_mark_put(skb, &xp->mark);
2989 if (err)
2990 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002991
Thomas Graf98250692007-08-22 12:47:26 -07002992 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002993
Michal Kubecek21ee5432014-06-03 10:26:06 +02002994 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002995
David S. Miller1d1e34d2012-06-27 21:57:03 -07002996out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002997 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002998 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002999}
3000
David S. Miller214e0052011-02-24 00:02:38 -05003001static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003002{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003003 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003004 struct nlmsghdr *nlh;
3005 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003006 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003007
Thomas Graf7deb2262007-08-22 13:57:39 -07003008 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003009 if (skb == NULL)
3010 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003011
Eric W. Biederman15e47302012-09-07 20:12:54 +00003012 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003013 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003014 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003015 goto out_free_skb;
3016 err = copy_to_user_policy_type(c->data.type, skb);
3017 if (err)
3018 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003019
Thomas Graf98250692007-08-22 12:47:26 -07003020 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003021
Michal Kubecek21ee5432014-06-03 10:26:06 +02003022 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003023
David S. Miller1d1e34d2012-06-27 21:57:03 -07003024out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003025 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003026 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003027}
3028
David S. Miller214e0052011-02-24 00:02:38 -05003029static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003030{
3031
3032 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003033 case XFRM_MSG_NEWPOLICY:
3034 case XFRM_MSG_UPDPOLICY:
3035 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003036 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003037 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003038 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003039 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003040 return xfrm_exp_policy_notify(xp, dir, c);
3041 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003042 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3043 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003044 }
3045
3046 return 0;
3047
3048}
3049
Thomas Graf7deb2262007-08-22 13:57:39 -07003050static inline size_t xfrm_report_msgsize(void)
3051{
3052 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3053}
3054
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003055static int build_report(struct sk_buff *skb, u8 proto,
3056 struct xfrm_selector *sel, xfrm_address_t *addr)
3057{
3058 struct xfrm_user_report *ur;
3059 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003060
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003061 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3062 if (nlh == NULL)
3063 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003064
Thomas Graf7b67c852007-08-22 13:53:52 -07003065 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003066 ur->proto = proto;
3067 memcpy(&ur->sel, sel, sizeof(ur->sel));
3068
David S. Miller1d1e34d2012-06-27 21:57:03 -07003069 if (addr) {
3070 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3071 if (err) {
3072 nlmsg_cancel(skb, nlh);
3073 return err;
3074 }
3075 }
Johannes Berg053c0952015-01-16 22:09:00 +01003076 nlmsg_end(skb, nlh);
3077 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003078}
3079
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003080static int xfrm_send_report(struct net *net, u8 proto,
3081 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003082{
3083 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003084
Thomas Graf7deb2262007-08-22 13:57:39 -07003085 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003086 if (skb == NULL)
3087 return -ENOMEM;
3088
3089 if (build_report(skb, proto, sel, addr) < 0)
3090 BUG();
3091
Michal Kubecek21ee5432014-06-03 10:26:06 +02003092 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003093}
3094
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003095static inline size_t xfrm_mapping_msgsize(void)
3096{
3097 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3098}
3099
3100static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3101 xfrm_address_t *new_saddr, __be16 new_sport)
3102{
3103 struct xfrm_user_mapping *um;
3104 struct nlmsghdr *nlh;
3105
3106 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3107 if (nlh == NULL)
3108 return -EMSGSIZE;
3109
3110 um = nlmsg_data(nlh);
3111
3112 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3113 um->id.spi = x->id.spi;
3114 um->id.family = x->props.family;
3115 um->id.proto = x->id.proto;
3116 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3117 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3118 um->new_sport = new_sport;
3119 um->old_sport = x->encap->encap_sport;
3120 um->reqid = x->props.reqid;
3121
Johannes Berg053c0952015-01-16 22:09:00 +01003122 nlmsg_end(skb, nlh);
3123 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003124}
3125
3126static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3127 __be16 sport)
3128{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003129 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003130 struct sk_buff *skb;
3131
3132 if (x->id.proto != IPPROTO_ESP)
3133 return -EINVAL;
3134
3135 if (!x->encap)
3136 return -EINVAL;
3137
3138 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3139 if (skb == NULL)
3140 return -ENOMEM;
3141
3142 if (build_mapping(skb, x, ipaddr, sport) < 0)
3143 BUG();
3144
Michal Kubecek21ee5432014-06-03 10:26:06 +02003145 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003146}
3147
Horia Geanta0f245582014-02-12 16:20:06 +02003148static bool xfrm_is_alive(const struct km_event *c)
3149{
3150 return (bool)xfrm_acquire_is_on(c->net);
3151}
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153static struct xfrm_mgr netlink_mgr = {
3154 .id = "netlink",
3155 .notify = xfrm_send_state_notify,
3156 .acquire = xfrm_send_acquire,
3157 .compile_policy = xfrm_compile_policy,
3158 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003159 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003160 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003161 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003162 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163};
3164
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003165static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166{
Patrick McHardybe336902006-03-20 22:40:54 -08003167 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003168 struct netlink_kernel_cfg cfg = {
3169 .groups = XFRMNLGRP_MAX,
3170 .input = xfrm_netlink_rcv,
3171 };
Patrick McHardybe336902006-03-20 22:40:54 -08003172
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003173 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003174 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003176 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003177 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 return 0;
3179}
3180
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003181static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003182{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003183 struct net *net;
3184 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003185 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003186 synchronize_net();
3187 list_for_each_entry(net, net_exit_list, exit_list)
3188 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003189}
3190
3191static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003192 .init = xfrm_user_net_init,
3193 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003194};
3195
3196static int __init xfrm_user_init(void)
3197{
3198 int rv;
3199
3200 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3201
3202 rv = register_pernet_subsys(&xfrm_user_net_ops);
3203 if (rv < 0)
3204 return rv;
3205 rv = xfrm_register_km(&netlink_mgr);
3206 if (rv < 0)
3207 unregister_pernet_subsys(&xfrm_user_net_ops);
3208 return rv;
3209}
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211static void __exit xfrm_user_exit(void)
3212{
3213 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003214 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215}
3216
3217module_init(xfrm_user_init);
3218module_exit(xfrm_user_exit);
3219MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003220MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003221