blob: 0727ac853b5509e0500c93db77ecc113bf358612 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* xfrm_user.c: User interface to configure xfrm engine.
3 *
4 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
5 *
6 * Changes:
7 * Mitsuru KANDA @USAGI
8 * Kazunori MIYAZAWA @USAGI
9 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
10 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Herbert Xu9409f382006-08-06 19:49:12 +100014#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/types.h>
18#include <linux/slab.h>
19#include <linux/socket.h>
20#include <linux/string.h>
21#include <linux/net.h>
22#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/pfkeyv2.h>
24#include <linux/ipsec.h>
25#include <linux/init.h>
26#include <linux/security.h>
27#include <net/sock.h>
28#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010029#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000030#include <net/ah.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080031#include <linux/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000032#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070033#include <linux/in6.h>
34#endif
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040035#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Thomas Graf5424f322007-08-22 14:01:33 -070037static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Thomas Graf5424f322007-08-22 14:01:33 -070039 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 struct xfrm_algo *algp;
41
42 if (!rt)
43 return 0;
44
Thomas Graf5424f322007-08-22 14:01:33 -070045 algp = nla_data(rt);
Alexey Dobriyan06cd22f2017-09-21 23:46:30 +030046 if (nla_len(rt) < (int)xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070047 return -EINVAL;
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 switch (type) {
50 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 break;
54
55 default:
56 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Herbert Xu633439f2017-04-06 16:16:10 +080059 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61}
62
Martin Willi4447bb32009-11-25 00:29:52 +000063static int verify_auth_trunc(struct nlattr **attrs)
64{
65 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
66 struct xfrm_algo_auth *algp;
67
68 if (!rt)
69 return 0;
70
71 algp = nla_data(rt);
Alexey Dobriyan1bd963a2017-09-21 23:47:09 +030072 if (nla_len(rt) < (int)xfrm_alg_auth_len(algp))
Martin Willi4447bb32009-11-25 00:29:52 +000073 return -EINVAL;
74
Herbert Xu633439f2017-04-06 16:16:10 +080075 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Martin Willi4447bb32009-11-25 00:29:52 +000076 return 0;
77}
78
Herbert Xu1a6509d2008-01-28 19:37:29 -080079static int verify_aead(struct nlattr **attrs)
80{
81 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
82 struct xfrm_algo_aead *algp;
83
84 if (!rt)
85 return 0;
86
87 algp = nla_data(rt);
Alexey Dobriyan373b8ee2017-09-21 23:45:43 +030088 if (nla_len(rt) < (int)aead_len(algp))
Herbert Xu1a6509d2008-01-28 19:37:29 -080089 return -EINVAL;
90
Herbert Xu633439f2017-04-06 16:16:10 +080091 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Herbert Xu1a6509d2008-01-28 19:37:29 -080092 return 0;
93}
94
Thomas Graf5424f322007-08-22 14:01:33 -070095static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070096 xfrm_address_t **addrp)
97{
Thomas Graf5424f322007-08-22 14:01:33 -070098 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070099
Thomas Grafcf5cb792007-08-22 13:59:04 -0700100 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700101 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700102}
Trent Jaegerdf718372005-12-13 23:12:27 -0800103
Thomas Graf5424f322007-08-22 14:01:33 -0700104static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800105{
Thomas Graf5424f322007-08-22 14:01:33 -0700106 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800107 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800108
109 if (!rt)
110 return 0;
111
Thomas Graf5424f322007-08-22 14:01:33 -0700112 uctx = nla_data(rt);
Xin Long171d4492020-02-09 21:15:29 +0800113 if (uctx->len > nla_len(rt) ||
114 uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800115 return -EINVAL;
116
117 return 0;
118}
119
Steffen Klassertd8647b72011-03-08 00:10:27 +0000120static inline int verify_replay(struct xfrm_usersa_info *p,
121 struct nlattr **attrs)
122{
123 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000124 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000125
126 if (!rt)
Florian Westphald97ca5d2018-02-12 14:42:01 +0100127 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
128
129 rs = nla_data(rt);
130
131 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
132 return -EINVAL;
133
134 if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) &&
135 nla_len(rt) != sizeof(*rs))
136 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000137
Fan Du01714102014-01-18 09:54:28 +0800138 /* As only ESP and AH support ESN feature. */
139 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000140 return -EINVAL;
141
Steffen Klassertd8647b72011-03-08 00:10:27 +0000142 if (p->replay_window != 0)
143 return -EINVAL;
144
145 return 0;
146}
Trent Jaegerdf718372005-12-13 23:12:27 -0800147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700149 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 int err;
152
153 err = -EINVAL;
154 switch (p->family) {
155 case AF_INET:
Anirudh Guptab38ff402019-05-21 20:59:47 +0530156 break;
157
158 case AF_INET6:
159#if IS_ENABLED(CONFIG_IPV6)
160 break;
161#else
162 err = -EAFNOSUPPORT;
163 goto out;
164#endif
165
166 default:
167 goto out;
168 }
169
170 switch (p->sel.family) {
Nicolas Dichtelb8d6d002019-06-14 11:13:55 +0200171 case AF_UNSPEC:
172 break;
173
Anirudh Guptab38ff402019-05-21 20:59:47 +0530174 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +0200175 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
176 goto out;
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 break;
179
180 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000181#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +0200182 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
183 goto out;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 break;
186#else
187 err = -EAFNOSUPPORT;
188 goto out;
189#endif
190
191 default:
192 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 err = -EINVAL;
196 switch (p->id.proto) {
197 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000198 if ((!attrs[XFRMA_ALG_AUTH] &&
199 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800200 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700201 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000202 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200203 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 goto out;
205 break;
206
207 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800208 if (attrs[XFRMA_ALG_COMP])
209 goto out;
210 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000211 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800212 !attrs[XFRMA_ALG_CRYPT] &&
213 !attrs[XFRMA_ALG_AEAD])
214 goto out;
215 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000216 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800217 attrs[XFRMA_ALG_CRYPT]) &&
218 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000220 if (attrs[XFRMA_TFCPAD] &&
221 p->mode != XFRM_MODE_TUNNEL)
222 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 break;
224
225 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700226 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800227 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700228 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000229 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000230 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200231 attrs[XFRMA_TFCPAD] ||
232 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 goto out;
234 break;
235
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000236#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700237 case IPPROTO_DSTOPTS:
238 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if (attrs[XFRMA_ALG_COMP] ||
240 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000241 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800242 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700243 attrs[XFRMA_ALG_CRYPT] ||
244 attrs[XFRMA_ENCAP] ||
245 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000246 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700247 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700248 goto out;
249 break;
250#endif
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 default:
253 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Herbert Xu1a6509d2008-01-28 19:37:29 -0800256 if ((err = verify_aead(attrs)))
257 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000258 if ((err = verify_auth_trunc(attrs)))
259 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700260 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700262 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700264 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700266 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800267 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000268 if ((err = verify_replay(p, attrs)))
269 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 err = -EINVAL;
272 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700273 case XFRM_MODE_TRANSPORT:
274 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700275 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a69452c2006-10-03 23:47:05 -0700276 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 break;
278
279 default:
280 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 err = 0;
284
285out:
286 return err;
287}
288
289static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800290 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700291 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct xfrm_algo *p, *ualg;
294 struct xfrm_algo_desc *algo;
295
296 if (!rta)
297 return 0;
298
Thomas Graf5424f322007-08-22 14:01:33 -0700299 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 algo = get_byname(ualg->alg_name, 1);
302 if (!algo)
303 return -ENOSYS;
304 *props = algo->desc.sadb_alg_id;
305
Eric Dumazet0f99be02008-01-08 23:39:06 -0800306 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!p)
308 return -ENOMEM;
309
Herbert Xu04ff1262006-08-13 08:50:00 +1000310 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *algpp = p;
312 return 0;
313}
314
Herbert Xu69b01372015-05-27 16:03:45 +0800315static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
316{
317 struct xfrm_algo *p, *ualg;
318 struct xfrm_algo_desc *algo;
319
320 if (!rta)
321 return 0;
322
323 ualg = nla_data(rta);
324
325 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
326 if (!algo)
327 return -ENOSYS;
328 x->props.ealgo = algo->desc.sadb_alg_id;
329
330 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
331 if (!p)
332 return -ENOMEM;
333
334 strcpy(p->alg_name, algo->name);
335 x->ealg = p;
336 x->geniv = algo->uinfo.encr.geniv;
337 return 0;
338}
339
Martin Willi4447bb32009-11-25 00:29:52 +0000340static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
341 struct nlattr *rta)
342{
343 struct xfrm_algo *ualg;
344 struct xfrm_algo_auth *p;
345 struct xfrm_algo_desc *algo;
346
347 if (!rta)
348 return 0;
349
350 ualg = nla_data(rta);
351
352 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
353 if (!algo)
354 return -ENOSYS;
355 *props = algo->desc.sadb_alg_id;
356
357 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
358 if (!p)
359 return -ENOMEM;
360
361 strcpy(p->alg_name, algo->name);
362 p->alg_key_len = ualg->alg_key_len;
363 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
364 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
365
366 *algpp = p;
367 return 0;
368}
369
370static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
371 struct nlattr *rta)
372{
373 struct xfrm_algo_auth *p, *ualg;
374 struct xfrm_algo_desc *algo;
375
376 if (!rta)
377 return 0;
378
379 ualg = nla_data(rta);
380
381 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
382 if (!algo)
383 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800384 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000385 return -EINVAL;
386 *props = algo->desc.sadb_alg_id;
387
388 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
389 if (!p)
390 return -ENOMEM;
391
392 strcpy(p->alg_name, algo->name);
393 if (!p->alg_trunc_len)
394 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
395
396 *algpp = p;
397 return 0;
398}
399
Herbert Xu69b01372015-05-27 16:03:45 +0800400static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800401{
402 struct xfrm_algo_aead *p, *ualg;
403 struct xfrm_algo_desc *algo;
404
405 if (!rta)
406 return 0;
407
408 ualg = nla_data(rta);
409
410 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
411 if (!algo)
412 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800413 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800414
415 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
416 if (!p)
417 return -ENOMEM;
418
419 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800420 x->aead = p;
421 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800422 return 0;
423}
424
Steffen Klasserte2b19122011-03-28 19:47:30 +0000425static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
426 struct nlattr *rp)
427{
428 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300429 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000430
431 if (!replay_esn || !rp)
432 return 0;
433
434 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000435 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000436
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000437 /* Check the overall length and the internal bitmap length to avoid
438 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300439 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000440 xfrm_replay_state_esn_len(replay_esn) != ulen ||
441 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000442 return -EINVAL;
443
Andy Whitcroft677e8062017-03-22 07:29:31 +0000444 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
445 return -EINVAL;
446
Steffen Klasserte2b19122011-03-28 19:47:30 +0000447 return 0;
448}
449
Steffen Klassertd8647b72011-03-08 00:10:27 +0000450static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
451 struct xfrm_replay_state_esn **preplay_esn,
452 struct nlattr *rta)
453{
454 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300455 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000456
457 if (!rta)
458 return 0;
459
460 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000461 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300462 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000463
Mathias Krauseecd79182012-09-20 10:01:49 +0000464 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000465 if (!p)
466 return -ENOMEM;
467
Mathias Krauseecd79182012-09-20 10:01:49 +0000468 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000469 if (!pp) {
470 kfree(p);
471 return -ENOMEM;
472 }
473
Mathias Krauseecd79182012-09-20 10:01:49 +0000474 memcpy(p, up, ulen);
475 memcpy(pp, up, ulen);
476
Steffen Klassertd8647b72011-03-08 00:10:27 +0000477 *replay_esn = p;
478 *preplay_esn = pp;
479
480 return 0;
481}
482
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300483static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800484{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300485 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800486
487 if (xfrm_ctx) {
488 len += sizeof(struct xfrm_user_sec_ctx);
489 len += xfrm_ctx->ctx_len;
490 }
491 return len;
492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
495{
496 memcpy(&x->id, &p->id, sizeof(x->id));
497 memcpy(&x->sel, &p->sel, sizeof(x->sel));
498 memcpy(&x->lft, &p->lft, sizeof(x->lft));
499 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800500 x->props.replay_window = min_t(unsigned int, p->replay_window,
501 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 x->props.reqid = p->reqid;
503 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700504 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700506
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700507 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700508 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800511/*
512 * someday when pfkey also has support, we could have the code
513 * somehow made shareable and move it to xfrm_state.c - JHS
514 *
515*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000516static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
517 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800518{
Thomas Graf5424f322007-08-22 14:01:33 -0700519 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000520 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700521 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
522 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
523 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800524
Steffen Klassertd8647b72011-03-08 00:10:27 +0000525 if (re) {
526 struct xfrm_replay_state_esn *replay_esn;
527 replay_esn = nla_data(re);
528 memcpy(x->replay_esn, replay_esn,
529 xfrm_replay_state_esn_len(replay_esn));
530 memcpy(x->preplay_esn, replay_esn,
531 xfrm_replay_state_esn_len(replay_esn));
532 }
533
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800534 if (rp) {
535 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700536 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800537 memcpy(&x->replay, replay, sizeof(*replay));
538 memcpy(&x->preplay, replay, sizeof(*replay));
539 }
540
541 if (lt) {
542 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700543 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800544 x->curlft.bytes = ltime->bytes;
545 x->curlft.packets = ltime->packets;
546 x->curlft.add_time = ltime->add_time;
547 x->curlft.use_time = ltime->use_time;
548 }
549
Thomas Grafcf5cb792007-08-22 13:59:04 -0700550 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700551 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800552
Thomas Grafcf5cb792007-08-22 13:59:04 -0700553 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700554 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800555}
556
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200557static void xfrm_smark_init(struct nlattr **attrs, struct xfrm_mark *m)
558{
559 if (attrs[XFRMA_SET_MARK]) {
560 m->v = nla_get_u32(attrs[XFRMA_SET_MARK]);
561 if (attrs[XFRMA_SET_MARK_MASK])
562 m->m = nla_get_u32(attrs[XFRMA_SET_MARK_MASK]);
563 else
564 m->m = 0xffffffff;
565 } else {
566 m->v = m->m = 0;
567 }
568}
569
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800570static struct xfrm_state *xfrm_state_construct(struct net *net,
571 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700572 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int *errp)
574{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800575 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int err = -ENOMEM;
577
578 if (!x)
579 goto error_no_put;
580
581 copy_from_user_state(x, p);
582
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100583 if (attrs[XFRMA_SA_EXTRA_FLAGS])
584 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
585
Herbert Xu69b01372015-05-27 16:03:45 +0800586 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800587 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000588 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
589 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000591 if (!x->props.aalgo) {
592 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
593 attrs[XFRMA_ALG_AUTH])))
594 goto error;
595 }
Herbert Xu69b01372015-05-27 16:03:45 +0800596 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 goto error;
598 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
599 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700600 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700602
603 if (attrs[XFRMA_ENCAP]) {
604 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
605 sizeof(*x->encap), GFP_KERNEL);
606 if (x->encap == NULL)
607 goto error;
608 }
609
Martin Willi35d28562010-12-08 04:37:49 +0000610 if (attrs[XFRMA_TFCPAD])
611 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
612
Thomas Graffd211502007-09-06 03:28:08 -0700613 if (attrs[XFRMA_COADDR]) {
614 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
615 sizeof(*x->coaddr), GFP_KERNEL);
616 if (x->coaddr == NULL)
617 goto error;
618 }
619
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000620 xfrm_mark_get(attrs, &x->mark);
621
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200622 xfrm_smark_init(attrs, &x->props.smark);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900623
Steffen Klassert7e652642018-06-12 14:07:07 +0200624 if (attrs[XFRMA_IF_ID])
625 x->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700626
Ilan Tayariffdb5212017-08-01 12:49:08 +0300627 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (err)
629 goto error;
630
Mathias Krause2f30ea52016-09-08 18:09:57 +0200631 if (attrs[XFRMA_SEC_CTX]) {
632 err = security_xfrm_state_alloc(x,
633 nla_data(attrs[XFRMA_SEC_CTX]));
634 if (err)
635 goto error;
636 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800637
Steffen Klassertd8647b72011-03-08 00:10:27 +0000638 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
639 attrs[XFRMA_REPLAY_ESN_VAL])))
640 goto error;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800643 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800644 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800645 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800646
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000647 if ((err = xfrm_init_replay(x)))
648 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800649
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000650 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000651 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Yossi Kupermancc015722018-01-17 15:52:41 +0200653 /* configure the hardware if offload is requested */
654 if (attrs[XFRMA_OFFLOAD_DEV]) {
655 err = xfrm_dev_state_add(net, x,
656 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
657 if (err)
658 goto error;
659 }
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return x;
662
663error:
664 x->km.state = XFRM_STATE_DEAD;
665 xfrm_state_put(x);
666error_no_put:
667 *errp = err;
668 return NULL;
669}
670
Christoph Hellwig22e70052007-01-02 15:22:30 -0800671static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700672 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800674 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700675 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct xfrm_state *x;
677 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700678 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Thomas Graf35a7aa02007-08-22 14:00:40 -0700680 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (err)
682 return err;
683
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800684 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (!x)
686 return err;
687
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700688 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
690 err = xfrm_state_add(x);
691 else
692 err = xfrm_state_update(x);
693
Tetsuo Handa2e710292014-04-22 21:48:30 +0900694 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (err < 0) {
697 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200698 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800699 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700700 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
Yossi Kupermancc015722018-01-17 15:52:41 +0200703 if (x->km.state == XFRM_STATE_VOID)
704 x->km.state = XFRM_STATE_VALID;
705
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700706 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000707 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700708 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700709
710 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700711out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700712 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return err;
714}
715
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800716static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
717 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700718 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700719 int *errp)
720{
721 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000722 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700723 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000724 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700725
726 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
727 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000728 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700729 } else {
730 xfrm_address_t *saddr = NULL;
731
Thomas Graf35a7aa02007-08-22 14:00:40 -0700732 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700733 if (!saddr) {
734 err = -EINVAL;
735 goto out;
736 }
737
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800738 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000739 x = xfrm_state_lookup_byaddr(net, mark,
740 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800741 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700742 }
743
744 out:
745 if (!x && errp)
746 *errp = err;
747 return x;
748}
749
Christoph Hellwig22e70052007-01-02 15:22:30 -0800750static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700751 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800753 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700755 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700756 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700757 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800759 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700761 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
David S. Miller6f68dc32006-06-08 23:58:52 -0700763 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700764 goto out;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700767 err = -EPERM;
768 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700771 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600772
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700773 if (err < 0)
774 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700775
776 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000777 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700778 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700779 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700781out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900782 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700783 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700784 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
788{
Mathias Krausef778a632012-09-19 11:33:39 +0000789 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 memcpy(&p->id, &x->id, sizeof(p->id));
791 memcpy(&p->sel, &x->sel, sizeof(p->sel));
792 memcpy(&p->lft, &x->lft, sizeof(p->lft));
793 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400794 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
795 put_unaligned(x->stats.replay, &p->stats.replay);
796 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700797 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 p->mode = x->props.mode;
799 p->replay_window = x->props.replay_window;
800 p->reqid = x->props.reqid;
801 p->family = x->props.family;
802 p->flags = x->props.flags;
803 p->seq = x->km.seq;
804}
805
806struct xfrm_dump_info {
807 struct sk_buff *in_skb;
808 struct sk_buff *out_skb;
809 u32 nlmsg_seq;
810 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811};
812
Thomas Grafc0144be2007-08-22 13:55:43 -0700813static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
814{
Thomas Grafc0144be2007-08-22 13:55:43 -0700815 struct xfrm_user_sec_ctx *uctx;
816 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700817 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700818
819 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
820 if (attr == NULL)
821 return -EMSGSIZE;
822
823 uctx = nla_data(attr);
824 uctx->exttype = XFRMA_SEC_CTX;
825 uctx->len = ctx_size;
826 uctx->ctx_doi = s->ctx_doi;
827 uctx->ctx_alg = s->ctx_alg;
828 uctx->ctx_len = s->ctx_len;
829 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
830
831 return 0;
832}
833
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200834static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
835{
836 struct xfrm_user_offload *xuo;
837 struct nlattr *attr;
838
839 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
840 if (attr == NULL)
841 return -EMSGSIZE;
842
843 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200844 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200845 xuo->ifindex = xso->dev->ifindex;
846 xuo->flags = xso->flags;
847
848 return 0;
849}
850
Antony Antonyc7a58992020-11-17 17:47:23 +0100851static bool xfrm_redact(void)
852{
853 return IS_ENABLED(CONFIG_SECURITY) &&
854 security_locked_down(LOCKDOWN_XFRM_SECRET);
855}
856
Martin Willi4447bb32009-11-25 00:29:52 +0000857static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
858{
859 struct xfrm_algo *algo;
Antony Antonyc7a58992020-11-17 17:47:23 +0100860 struct xfrm_algo_auth *ap;
Martin Willi4447bb32009-11-25 00:29:52 +0000861 struct nlattr *nla;
Antony Antonyc7a58992020-11-17 17:47:23 +0100862 bool redact_secret = xfrm_redact();
Martin Willi4447bb32009-11-25 00:29:52 +0000863
864 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
865 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
866 if (!nla)
867 return -EMSGSIZE;
Martin Willi4447bb32009-11-25 00:29:52 +0000868 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000869 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Antony Antonyc7a58992020-11-17 17:47:23 +0100870
871 if (redact_secret && auth->alg_key_len)
872 memset(algo->alg_key, 0, (auth->alg_key_len + 7) / 8);
873 else
874 memcpy(algo->alg_key, auth->alg_key,
875 (auth->alg_key_len + 7) / 8);
Martin Willi4447bb32009-11-25 00:29:52 +0000876 algo->alg_key_len = auth->alg_key_len;
877
Antony Antonyc7a58992020-11-17 17:47:23 +0100878 nla = nla_reserve(skb, XFRMA_ALG_AUTH_TRUNC, xfrm_alg_auth_len(auth));
879 if (!nla)
880 return -EMSGSIZE;
881 ap = nla_data(nla);
882 memcpy(ap, auth, sizeof(struct xfrm_algo_auth));
883 if (redact_secret && auth->alg_key_len)
884 memset(ap->alg_key, 0, (auth->alg_key_len + 7) / 8);
885 else
886 memcpy(ap->alg_key, auth->alg_key,
887 (auth->alg_key_len + 7) / 8);
888 return 0;
889}
890
891static int copy_to_user_aead(struct xfrm_algo_aead *aead, struct sk_buff *skb)
892{
893 struct nlattr *nla = nla_reserve(skb, XFRMA_ALG_AEAD, aead_len(aead));
894 struct xfrm_algo_aead *ap;
895 bool redact_secret = xfrm_redact();
896
897 if (!nla)
898 return -EMSGSIZE;
899
900 ap = nla_data(nla);
901 memcpy(ap, aead, sizeof(*aead));
902
903 if (redact_secret && aead->alg_key_len)
904 memset(ap->alg_key, 0, (aead->alg_key_len + 7) / 8);
905 else
906 memcpy(ap->alg_key, aead->alg_key,
907 (aead->alg_key_len + 7) / 8);
908 return 0;
909}
910
911static int copy_to_user_ealg(struct xfrm_algo *ealg, struct sk_buff *skb)
912{
913 struct xfrm_algo *ap;
914 bool redact_secret = xfrm_redact();
915 struct nlattr *nla = nla_reserve(skb, XFRMA_ALG_CRYPT,
916 xfrm_alg_len(ealg));
917 if (!nla)
918 return -EMSGSIZE;
919
920 ap = nla_data(nla);
921 memcpy(ap, ealg, sizeof(*ealg));
922
923 if (redact_secret && ealg->alg_key_len)
924 memset(ap->alg_key, 0, (ealg->alg_key_len + 7) / 8);
925 else
926 memcpy(ap->alg_key, ealg->alg_key,
927 (ealg->alg_key_len + 7) / 8);
928
Martin Willi4447bb32009-11-25 00:29:52 +0000929 return 0;
930}
931
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200932static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
933{
934 int ret = 0;
935
936 if (m->v | m->m) {
937 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
938 if (!ret)
939 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
940 }
941 return ret;
942}
943
Herbert Xu68325d32007-10-09 13:30:57 -0700944/* Don't change this without updating xfrm_sa_len! */
945static int copy_to_user_state_extra(struct xfrm_state *x,
946 struct xfrm_usersa_info *p,
947 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700949 int ret = 0;
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 copy_to_user_state(x, p);
952
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100953 if (x->props.extra_flags) {
954 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
955 x->props.extra_flags);
956 if (ret)
957 goto out;
958 }
959
David S. Miller1d1e34d2012-06-27 21:57:03 -0700960 if (x->coaddr) {
961 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
962 if (ret)
963 goto out;
964 }
965 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200966 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
967 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700968 if (ret)
969 goto out;
970 }
971 if (x->aead) {
Antony Antonyc7a58992020-11-17 17:47:23 +0100972 ret = copy_to_user_aead(x->aead, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700973 if (ret)
974 goto out;
975 }
976 if (x->aalg) {
977 ret = copy_to_user_auth(x->aalg, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700978 if (ret)
979 goto out;
980 }
981 if (x->ealg) {
Antony Antonyc7a58992020-11-17 17:47:23 +0100982 ret = copy_to_user_ealg(x->ealg, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700983 if (ret)
984 goto out;
985 }
986 if (x->calg) {
987 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
988 if (ret)
989 goto out;
990 }
991 if (x->encap) {
992 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
993 if (ret)
994 goto out;
995 }
996 if (x->tfcpad) {
997 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
998 if (ret)
999 goto out;
1000 }
1001 ret = xfrm_mark_put(skb, &x->mark);
1002 if (ret)
1003 goto out;
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02001004
1005 ret = xfrm_smark_put(skb, &x->props.smark);
1006 if (ret)
1007 goto out;
1008
dingzhif293a5e2014-10-30 09:39:36 +01001009 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -07001010 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1011 xfrm_replay_state_esn_len(x->replay_esn),
1012 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +01001013 else
1014 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1015 &x->replay);
1016 if (ret)
1017 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +02001018 if(x->xso.dev)
1019 ret = copy_user_offload(&x->xso, skb);
1020 if (ret)
1021 goto out;
Steffen Klassert7e652642018-06-12 14:07:07 +02001022 if (x->if_id) {
1023 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09001024 if (ret)
1025 goto out;
1026 }
Steffen Klassert85981122017-08-31 10:37:00 +02001027 if (x->security)
1028 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001029out:
1030 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -07001031}
1032
1033static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
1034{
1035 struct xfrm_dump_info *sp = ptr;
1036 struct sk_buff *in_skb = sp->in_skb;
1037 struct sk_buff *skb = sp->out_skb;
Dmitry Safonov5f3eea62020-09-21 15:36:53 +01001038 struct xfrm_translator *xtr;
Herbert Xu68325d32007-10-09 13:30:57 -07001039 struct xfrm_usersa_info *p;
1040 struct nlmsghdr *nlh;
1041 int err;
1042
Eric W. Biederman15e47302012-09-07 20:12:54 +00001043 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -07001044 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
1045 if (nlh == NULL)
1046 return -EMSGSIZE;
1047
1048 p = nlmsg_data(nlh);
1049
1050 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001051 if (err) {
1052 nlmsg_cancel(skb, nlh);
1053 return err;
1054 }
Thomas Graf98250692007-08-22 12:47:26 -07001055 nlmsg_end(skb, nlh);
Dmitry Safonov5f3eea62020-09-21 15:36:53 +01001056
1057 xtr = xfrm_get_translator();
1058 if (xtr) {
1059 err = xtr->alloc_compat(skb, nlh);
1060
1061 xfrm_put_translator(xtr);
1062 if (err) {
1063 nlmsg_cancel(skb, nlh);
1064 return err;
1065 }
1066 }
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
Timo Teras4c563f72008-02-28 21:31:08 -08001071static int xfrm_dump_sa_done(struct netlink_callback *cb)
1072{
1073 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001074 struct sock *sk = cb->skb->sk;
1075 struct net *net = sock_net(sk);
1076
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001077 if (cb->args[0])
1078 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001079 return 0;
1080}
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
1083{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001084 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001085 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 struct xfrm_dump_info info;
1087
Timo Teras4c563f72008-02-28 21:31:08 -08001088 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
1089 sizeof(cb->args) - sizeof(cb->args[0]));
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 info.in_skb = cb->skb;
1092 info.out_skb = skb;
1093 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1094 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001095
1096 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +01001097 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001098 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001099 u8 proto = 0;
1100 int err;
1101
Johannes Berg8cb08172019-04-26 14:07:28 +02001102 err = nlmsg_parse_deprecated(cb->nlh, 0, attrs, XFRMA_MAX,
1103 xfrma_policy, cb->extack);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001104 if (err < 0)
1105 return err;
1106
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001107 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001108 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1109 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001110 if (filter == NULL)
1111 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001112 }
1113
1114 if (attrs[XFRMA_PROTO])
1115 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1116
1117 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001118 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001119 }
1120
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001121 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 return skb->len;
1124}
1125
1126static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1127 struct xfrm_state *x, u32 seq)
1128{
1129 struct xfrm_dump_info info;
1130 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001131 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Thomas Graf7deb2262007-08-22 13:57:39 -07001133 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (!skb)
1135 return ERR_PTR(-ENOMEM);
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 info.in_skb = in_skb;
1138 info.out_skb = skb;
1139 info.nlmsg_seq = seq;
1140 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Mathias Krause864745d2012-09-13 11:41:26 +00001142 err = dump_one_state(x, 0, &info);
1143 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001145 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
1148 return skb;
1149}
1150
Michal Kubecek21ee5432014-06-03 10:26:06 +02001151/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1152 * Must be called with RCU read lock.
1153 */
1154static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1155 u32 pid, unsigned int group)
1156{
1157 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
Dmitry Safonov5461fc02020-09-21 15:36:52 +01001158 struct xfrm_translator *xtr;
Michal Kubecek21ee5432014-06-03 10:26:06 +02001159
Florian Westphal86126b72018-06-25 14:00:07 +02001160 if (!nlsk) {
1161 kfree_skb(skb);
1162 return -EPIPE;
1163 }
1164
Dmitry Safonov5461fc02020-09-21 15:36:52 +01001165 xtr = xfrm_get_translator();
1166 if (xtr) {
1167 int err = xtr->alloc_compat(skb, nlmsg_hdr(skb));
1168
1169 xfrm_put_translator(xtr);
1170 if (err) {
1171 kfree_skb(skb);
1172 return err;
1173 }
1174 }
1175
Florian Westphal86126b72018-06-25 14:00:07 +02001176 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001177}
1178
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001179static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001180{
1181 return NLMSG_ALIGN(4)
1182 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001183 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1184 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1185 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001186}
1187
Alexey Dobriyane0710412010-01-23 13:37:10 +00001188static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001189 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001190{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001191 struct xfrmk_spdinfo si;
1192 struct xfrmu_spdinfo spc;
1193 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001194 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001195 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001196 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001197 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001198 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001199
Eric W. Biederman15e47302012-09-07 20:12:54 +00001200 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001201 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001202 return -EMSGSIZE;
1203
1204 f = nlmsg_data(nlh);
1205 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001206 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001207 spc.incnt = si.incnt;
1208 spc.outcnt = si.outcnt;
1209 spc.fwdcnt = si.fwdcnt;
1210 spc.inscnt = si.inscnt;
1211 spc.outscnt = si.outscnt;
1212 spc.fwdscnt = si.fwdscnt;
1213 sph.spdhcnt = si.spdhcnt;
1214 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001215
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001216 do {
1217 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1218
1219 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1220 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1221 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1222 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1223 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1224
David S. Miller1d1e34d2012-06-27 21:57:03 -07001225 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1226 if (!err)
1227 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001228 if (!err)
1229 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1230 if (!err)
1231 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001232 if (err) {
1233 nlmsg_cancel(skb, nlh);
1234 return err;
1235 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001236
Johannes Berg053c0952015-01-16 22:09:00 +01001237 nlmsg_end(skb, nlh);
1238 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001239}
1240
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001241static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1242 struct nlattr **attrs)
1243{
1244 struct net *net = sock_net(skb->sk);
1245 struct xfrmu_spdhthresh *thresh4 = NULL;
1246 struct xfrmu_spdhthresh *thresh6 = NULL;
1247
1248 /* selector prefixlen thresholds to hash policies */
1249 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1250 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1251
1252 if (nla_len(rta) < sizeof(*thresh4))
1253 return -EINVAL;
1254 thresh4 = nla_data(rta);
1255 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1256 return -EINVAL;
1257 }
1258 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1259 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1260
1261 if (nla_len(rta) < sizeof(*thresh6))
1262 return -EINVAL;
1263 thresh6 = nla_data(rta);
1264 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1265 return -EINVAL;
1266 }
1267
1268 if (thresh4 || thresh6) {
1269 write_seqlock(&net->xfrm.policy_hthresh.lock);
1270 if (thresh4) {
1271 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1272 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1273 }
1274 if (thresh6) {
1275 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1276 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1277 }
1278 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1279
1280 xfrm_policy_hash_rebuild(net);
1281 }
1282
1283 return 0;
1284}
1285
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001286static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001287 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001288{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001289 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001290 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001291 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001292 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001293 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001294 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001295
Thomas Graf7deb2262007-08-22 13:57:39 -07001296 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001297 if (r_skb == NULL)
1298 return -ENOMEM;
1299
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001300 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1301 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001302
Eric W. Biederman15e47302012-09-07 20:12:54 +00001303 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001304}
1305
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001306static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001307{
1308 return NLMSG_ALIGN(4)
1309 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1310 + nla_total_size(4); /* XFRMA_SAD_CNT */
1311}
1312
Alexey Dobriyane0710412010-01-23 13:37:10 +00001313static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001314 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001315{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001316 struct xfrmk_sadinfo si;
1317 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001318 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001319 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001320 u32 *f;
1321
Eric W. Biederman15e47302012-09-07 20:12:54 +00001322 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001323 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001324 return -EMSGSIZE;
1325
1326 f = nlmsg_data(nlh);
1327 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001328 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001329
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001330 sh.sadhmcnt = si.sadhmcnt;
1331 sh.sadhcnt = si.sadhcnt;
1332
David S. Miller1d1e34d2012-06-27 21:57:03 -07001333 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1334 if (!err)
1335 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1336 if (err) {
1337 nlmsg_cancel(skb, nlh);
1338 return err;
1339 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001340
Johannes Berg053c0952015-01-16 22:09:00 +01001341 nlmsg_end(skb, nlh);
1342 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001343}
1344
1345static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001346 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001347{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001348 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001349 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001350 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001351 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001352 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001353 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001354
Thomas Graf7deb2262007-08-22 13:57:39 -07001355 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001356 if (r_skb == NULL)
1357 return -ENOMEM;
1358
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001359 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1360 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001361
Eric W. Biederman15e47302012-09-07 20:12:54 +00001362 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001363}
1364
Christoph Hellwig22e70052007-01-02 15:22:30 -08001365static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001366 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001368 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001369 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 struct xfrm_state *x;
1371 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001372 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001374 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (x == NULL)
1376 goto out_noput;
1377
1378 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1379 if (IS_ERR(resp_skb)) {
1380 err = PTR_ERR(resp_skb);
1381 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001382 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384 xfrm_state_put(x);
1385out_noput:
1386 return err;
1387}
1388
Christoph Hellwig22e70052007-01-02 15:22:30 -08001389static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001390 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001392 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct xfrm_state *x;
1394 struct xfrm_userspi_info *p;
Dmitry Safonov5f3eea62020-09-21 15:36:53 +01001395 struct xfrm_translator *xtr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 struct sk_buff *resp_skb;
1397 xfrm_address_t *daddr;
1398 int family;
1399 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001400 u32 mark;
1401 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001402 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Thomas Graf7b67c852007-08-22 13:53:52 -07001404 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001405 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (err)
1407 goto out_noput;
1408
1409 family = p->info.family;
1410 daddr = &p->info.id.daddr;
1411
1412 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001413
1414 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001415
1416 if (attrs[XFRMA_IF_ID])
1417 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001420 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001421 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 xfrm_state_put(x);
1423 x = NULL;
1424 }
1425 }
1426
1427 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001428 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klassert7e652642018-06-12 14:07:07 +02001429 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 &p->info.saddr, 1,
1431 family);
1432 err = -ENOENT;
1433 if (x == NULL)
1434 goto out_noput;
1435
Herbert Xu658b2192007-10-09 13:29:52 -07001436 err = xfrm_alloc_spi(x, p->min, p->max);
1437 if (err)
1438 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Herbert Xu658b2192007-10-09 13:29:52 -07001440 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (IS_ERR(resp_skb)) {
1442 err = PTR_ERR(resp_skb);
1443 goto out;
1444 }
1445
Dmitry Safonov5f3eea62020-09-21 15:36:53 +01001446 xtr = xfrm_get_translator();
1447 if (xtr) {
1448 err = xtr->alloc_compat(skb, nlmsg_hdr(skb));
1449
1450 xfrm_put_translator(xtr);
1451 if (err) {
1452 kfree_skb(resp_skb);
1453 goto out;
1454 }
1455 }
1456
Eric W. Biederman15e47302012-09-07 20:12:54 +00001457 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459out:
1460 xfrm_state_put(x);
1461out_noput:
1462 return err;
1463}
1464
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001465static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 switch (dir) {
1468 case XFRM_POLICY_IN:
1469 case XFRM_POLICY_OUT:
1470 case XFRM_POLICY_FWD:
1471 break;
1472
1473 default:
1474 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 return 0;
1478}
1479
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001480static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001481{
1482 switch (type) {
1483 case XFRM_POLICY_TYPE_MAIN:
1484#ifdef CONFIG_XFRM_SUB_POLICY
1485 case XFRM_POLICY_TYPE_SUB:
1486#endif
1487 break;
1488
1489 default:
1490 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001491 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001492
1493 return 0;
1494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1497{
Fan Due682adf02013-11-07 17:47:48 +08001498 int ret;
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 switch (p->share) {
1501 case XFRM_SHARE_ANY:
1502 case XFRM_SHARE_SESSION:
1503 case XFRM_SHARE_USER:
1504 case XFRM_SHARE_UNIQUE:
1505 break;
1506
1507 default:
1508 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 switch (p->action) {
1512 case XFRM_POLICY_ALLOW:
1513 case XFRM_POLICY_BLOCK:
1514 break;
1515
1516 default:
1517 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 switch (p->sel.family) {
1521 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +02001522 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1523 return -EINVAL;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 break;
1526
1527 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001528#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +02001529 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1530 return -EINVAL;
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 break;
1533#else
1534 return -EAFNOSUPPORT;
1535#endif
1536
1537 default:
1538 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Fan Due682adf02013-11-07 17:47:48 +08001541 ret = verify_policy_dir(p->dir);
1542 if (ret)
1543 return ret;
YueHaibingb805d78d2019-02-28 15:18:59 +08001544 if (p->index && (xfrm_policy_id2dir(p->index) != p->dir))
Fan Due682adf02013-11-07 17:47:48 +08001545 return -EINVAL;
1546
1547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Thomas Graf5424f322007-08-22 14:01:33 -07001550static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001551{
Thomas Graf5424f322007-08-22 14:01:33 -07001552 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001553 struct xfrm_user_sec_ctx *uctx;
1554
1555 if (!rt)
1556 return 0;
1557
Thomas Graf5424f322007-08-22 14:01:33 -07001558 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001559 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1563 int nr)
1564{
1565 int i;
1566
1567 xp->xfrm_nr = nr;
1568 for (i = 0; i < nr; i++, ut++) {
1569 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1570
1571 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1572 memcpy(&t->saddr, &ut->saddr,
1573 sizeof(xfrm_address_t));
1574 t->reqid = ut->reqid;
1575 t->mode = ut->mode;
1576 t->share = ut->share;
1577 t->optional = ut->optional;
1578 t->aalgos = ut->aalgos;
1579 t->ealgos = ut->ealgos;
1580 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001581 /* If all masks are ~0, then we allow all algorithms. */
1582 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001583 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585}
1586
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001587static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1588{
Steffen Klassert732706a2017-12-08 08:07:25 +01001589 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001590 int i;
1591
1592 if (nr > XFRM_MAX_DEPTH)
1593 return -EINVAL;
1594
Steffen Klassert732706a2017-12-08 08:07:25 +01001595 prev_family = family;
1596
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001597 for (i = 0; i < nr; i++) {
1598 /* We never validated the ut->family value, so many
1599 * applications simply leave it at zero. The check was
1600 * never made and ut->family was ignored because all
1601 * templates could be assumed to have the same family as
1602 * the policy itself. Now that we will have ipv4-in-ipv6
1603 * and ipv6-in-ipv4 tunnels, this is no longer true.
1604 */
1605 if (!ut[i].family)
1606 ut[i].family = family;
1607
Florian Westphal35e6103862019-01-09 14:37:34 +01001608 switch (ut[i].mode) {
1609 case XFRM_MODE_TUNNEL:
1610 case XFRM_MODE_BEET:
1611 break;
1612 default:
1613 if (ut[i].family != prev_family)
1614 return -EINVAL;
1615 break;
1616 }
Sean Tranchetti32bf94f2018-09-19 13:54:56 -06001617 if (ut[i].mode >= XFRM_MODE_MAX)
1618 return -EINVAL;
1619
Steffen Klassert732706a2017-12-08 08:07:25 +01001620 prev_family = ut[i].family;
1621
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001622 switch (ut[i].family) {
1623 case AF_INET:
1624 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001625#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001626 case AF_INET6:
1627 break;
1628#endif
1629 default:
1630 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001631 }
Cong Wang6a53b752017-11-27 11:15:16 -08001632
Cong Wangdbb24832019-03-22 16:26:19 -07001633 if (!xfrm_id_proto_valid(ut[i].id.proto))
Cong Wang6a53b752017-11-27 11:15:16 -08001634 return -EINVAL;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001635 }
1636
1637 return 0;
1638}
1639
Thomas Graf5424f322007-08-22 14:01:33 -07001640static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
Thomas Graf5424f322007-08-22 14:01:33 -07001642 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 if (!rt) {
1645 pol->xfrm_nr = 0;
1646 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001647 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1648 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001649 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001651 err = validate_tmpl(nr, utmpl, pol->family);
1652 if (err)
1653 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Thomas Graf5424f322007-08-22 14:01:33 -07001655 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657 return 0;
1658}
1659
Thomas Graf5424f322007-08-22 14:01:33 -07001660static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001661{
Thomas Graf5424f322007-08-22 14:01:33 -07001662 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001663 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001664 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001665 int err;
1666
1667 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001668 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001669 type = upt->type;
1670 }
1671
1672 err = verify_policy_type(type);
1673 if (err)
1674 return err;
1675
1676 *tp = type;
1677 return 0;
1678}
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1681{
1682 xp->priority = p->priority;
1683 xp->index = p->index;
1684 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1685 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1686 xp->action = p->action;
1687 xp->flags = p->flags;
1688 xp->family = p->sel.family;
1689 /* XXX xp->share = p->share; */
1690}
1691
1692static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1693{
Mathias Krause7b789832012-09-19 11:33:40 +00001694 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1696 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1697 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1698 p->priority = xp->priority;
1699 p->index = xp->index;
1700 p->sel.family = xp->family;
1701 p->dir = dir;
1702 p->action = xp->action;
1703 p->flags = xp->flags;
1704 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1705}
1706
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001707static 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 -07001708{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001709 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 int err;
1711
1712 if (!xp) {
1713 *errp = -ENOMEM;
1714 return NULL;
1715 }
1716
1717 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001718
Thomas Graf35a7aa02007-08-22 14:00:40 -07001719 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001720 if (err)
1721 goto error;
1722
Thomas Graf35a7aa02007-08-22 14:00:40 -07001723 if (!(err = copy_from_user_tmpl(xp, attrs)))
1724 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001725 if (err)
1726 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001728 xfrm_mark_get(attrs, &xp->mark);
1729
Steffen Klassert7e652642018-06-12 14:07:07 +02001730 if (attrs[XFRMA_IF_ID])
1731 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001734 error:
1735 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001736 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001737 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001738 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
Christoph Hellwig22e70052007-01-02 15:22:30 -08001741static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001742 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001744 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001745 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001747 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 int err;
1749 int excl;
1750
1751 err = verify_newpolicy_info(p);
1752 if (err)
1753 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001754 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001755 if (err)
1756 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001758 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (!xp)
1760 return err;
1761
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001762 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001763 * Aha! this is anti-netlink really i.e more pfkey derived
1764 * in netlink excl is a flag and you wouldnt need
1765 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1767 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001768 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001771 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 kfree(xp);
1773 return err;
1774 }
1775
Herbert Xuf60f6b82005-06-18 22:44:37 -07001776 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001777 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001778 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001779 km_policy_notify(xp, p->dir, &c);
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 xfrm_pol_put(xp);
1782
1783 return 0;
1784}
1785
1786static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1787{
1788 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1789 int i;
1790
1791 if (xp->xfrm_nr == 0)
1792 return 0;
1793
1794 for (i = 0; i < xp->xfrm_nr; i++) {
1795 struct xfrm_user_tmpl *up = &vec[i];
1796 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1797
Mathias Krause1f868402012-09-19 11:33:41 +00001798 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001800 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1802 up->reqid = kp->reqid;
1803 up->mode = kp->mode;
1804 up->share = kp->share;
1805 up->optional = kp->optional;
1806 up->aalgos = kp->aalgos;
1807 up->ealgos = kp->ealgos;
1808 up->calgos = kp->calgos;
1809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Thomas Grafc0144be2007-08-22 13:55:43 -07001811 return nla_put(skb, XFRMA_TMPL,
1812 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001813}
1814
Serge Hallyn0d681622006-07-24 23:30:44 -07001815static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1816{
1817 if (x->security) {
1818 return copy_sec_ctx(x->security, skb);
1819 }
1820 return 0;
1821}
1822
1823static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1824{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001825 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001826 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001827 return 0;
1828}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001829static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001830{
1831#ifdef CONFIG_XFRM_SUB_POLICY
1832 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1833#else
1834 return 0;
1835#endif
1836}
Serge Hallyn0d681622006-07-24 23:30:44 -07001837
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001838#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001839static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001840{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001841 struct xfrm_userpolicy_type upt;
1842
1843 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1844 memset(&upt, 0, sizeof(upt));
1845 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001846
Thomas Grafc0144be2007-08-22 13:55:43 -07001847 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001848}
1849
1850#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001851static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001852{
1853 return 0;
1854}
1855#endif
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1858{
1859 struct xfrm_dump_info *sp = ptr;
1860 struct xfrm_userpolicy_info *p;
1861 struct sk_buff *in_skb = sp->in_skb;
1862 struct sk_buff *skb = sp->out_skb;
Dmitry Safonov5f3eea62020-09-21 15:36:53 +01001863 struct xfrm_translator *xtr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001865 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Eric W. Biederman15e47302012-09-07 20:12:54 +00001867 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001868 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1869 if (nlh == NULL)
1870 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Thomas Graf7b67c852007-08-22 13:53:52 -07001872 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001874 err = copy_to_user_tmpl(xp, skb);
1875 if (!err)
1876 err = copy_to_user_sec_ctx(xp, skb);
1877 if (!err)
1878 err = copy_to_user_policy_type(xp->type, skb);
1879 if (!err)
1880 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001881 if (!err)
1882 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001883 if (err) {
1884 nlmsg_cancel(skb, nlh);
1885 return err;
1886 }
Thomas Graf98250692007-08-22 12:47:26 -07001887 nlmsg_end(skb, nlh);
Dmitry Safonov5f3eea62020-09-21 15:36:53 +01001888
1889 xtr = xfrm_get_translator();
1890 if (xtr) {
1891 err = xtr->alloc_compat(skb, nlh);
1892
1893 xfrm_put_translator(xtr);
1894 if (err) {
1895 nlmsg_cancel(skb, nlh);
1896 return err;
1897 }
1898 }
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901}
1902
Timo Teras4c563f72008-02-28 21:31:08 -08001903static int xfrm_dump_policy_done(struct netlink_callback *cb)
1904{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001905 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001906 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001907
Fan Du283bc9f2013-11-07 17:47:50 +08001908 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001909 return 0;
1910}
1911
Herbert Xu1137b5e2017-10-19 20:51:10 +08001912static int xfrm_dump_policy_start(struct netlink_callback *cb)
1913{
1914 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1915
1916 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1917
1918 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1919 return 0;
1920}
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1923{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001924 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001925 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 struct xfrm_dump_info info;
1927
1928 info.in_skb = cb->skb;
1929 info.out_skb = skb;
1930 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1931 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001932
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001933 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 return skb->len;
1936}
1937
1938static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1939 struct xfrm_policy *xp,
1940 int dir, u32 seq)
1941{
1942 struct xfrm_dump_info info;
1943 struct sk_buff *skb;
Mathias Krausec25463722012-09-14 09:58:32 +00001944 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Thomas Graf7deb2262007-08-22 13:57:39 -07001946 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (!skb)
1948 return ERR_PTR(-ENOMEM);
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 info.in_skb = in_skb;
1951 info.out_skb = skb;
1952 info.nlmsg_seq = seq;
1953 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Mathias Krausec25463722012-09-14 09:58:32 +00001955 err = dump_one_policy(xp, dir, 0, &info);
1956 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 kfree_skb(skb);
Mathias Krausec25463722012-09-14 09:58:32 +00001958 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960
1961 return skb;
1962}
1963
Christoph Hellwig22e70052007-01-02 15:22:30 -08001964static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001965 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001967 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 struct xfrm_policy *xp;
1969 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001970 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001972 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001974 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001975 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Thomas Graf7b67c852007-08-22 13:53:52 -07001977 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1979
Thomas Graf35a7aa02007-08-22 14:00:40 -07001980 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001981 if (err)
1982 return err;
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 err = verify_policy_dir(p->dir);
1985 if (err)
1986 return err;
1987
Steffen Klassert7e652642018-06-12 14:07:07 +02001988 if (attrs[XFRMA_IF_ID])
1989 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1990
Xin Long4f47e8ab2020-06-22 16:40:29 +08001991 xfrm_mark_get(attrs, &m);
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (p->index)
Xin Long4f47e8ab2020-06-22 16:40:29 +08001994 xp = xfrm_policy_byid(net, &m, if_id, type, p->dir,
1995 p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001996 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001997 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001998 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001999
Thomas Graf35a7aa02007-08-22 14:00:40 -07002000 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08002001 if (err)
2002 return err;
2003
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002004 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08002005 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002006 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08002007
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002008 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002009 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08002010 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002011 }
Xin Long4f47e8ab2020-06-22 16:40:29 +08002012 xp = xfrm_policy_bysel_ctx(net, &m, if_id, type, p->dir,
2013 &p->sel, ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002014 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08002015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (xp == NULL)
2017 return -ENOENT;
2018
2019 if (!delete) {
2020 struct sk_buff *resp_skb;
2021
2022 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
2023 if (IS_ERR(resp_skb)) {
2024 err = PTR_ERR(resp_skb);
2025 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002026 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002027 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002029 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09002030 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08002031
2032 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002033 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08002034
Herbert Xue7443892005-06-18 22:44:18 -07002035 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002036 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002037 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002038 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002039 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002042out:
Eric Parisef41aaa2007-03-07 15:37:58 -08002043 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return err;
2045}
2046
Christoph Hellwig22e70052007-01-02 15:22:30 -08002047static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002048 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002050 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002051 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07002052 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04002053 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Cong Wangf75a2802019-01-31 13:05:49 -08002055 err = xfrm_state_flush(net, p->proto, true, false);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00002056 if (err) {
2057 if (err == -ESRCH) /* empty table */
2058 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002059 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00002060 }
Herbert Xubf08867f92005-06-18 22:44:00 -07002061 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002062 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002063 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002064 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002065 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002066 km_state_notify(NULL, &c);
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return 0;
2069}
2070
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002071static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07002072{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002073 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00002074 xfrm_replay_state_esn_len(x->replay_esn) :
2075 sizeof(struct xfrm_replay_state);
2076
Thomas Graf7deb2262007-08-22 13:57:39 -07002077 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00002078 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002079 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002080 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002081 + nla_total_size(4) /* XFRM_AE_RTHR */
2082 + nla_total_size(4); /* XFRM_AE_ETHR */
2083}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002084
David S. Miller214e0052011-02-24 00:02:38 -05002085static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002086{
2087 struct xfrm_aevent_id *id;
2088 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002089 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002090
Eric W. Biederman15e47302012-09-07 20:12:54 +00002091 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002092 if (nlh == NULL)
2093 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002094
Thomas Graf7b67c852007-08-22 13:53:52 -07002095 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02002096 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08002097 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002098 id->sa_id.spi = x->id.spi;
2099 id->sa_id.family = x->props.family;
2100 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08002101 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08002102 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002103 id->flags = c->data.aevent;
2104
David S. Millerd0fde792012-03-29 04:02:26 -04002105 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002106 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
2107 xfrm_replay_state_esn_len(x->replay_esn),
2108 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04002109 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002110 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
2111 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04002112 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002113 if (err)
2114 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002115 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
2116 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002117 if (err)
2118 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002119
David S. Miller1d1e34d2012-06-27 21:57:03 -07002120 if (id->flags & XFRM_AE_RTHR) {
2121 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
2122 if (err)
2123 goto out_cancel;
2124 }
2125 if (id->flags & XFRM_AE_ETHR) {
2126 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
2127 x->replay_maxage * 10 / HZ);
2128 if (err)
2129 goto out_cancel;
2130 }
2131 err = xfrm_mark_put(skb, &x->mark);
2132 if (err)
2133 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002134
Steffen Klassert7e652642018-06-12 14:07:07 +02002135 err = xfrm_if_id_put(skb, x->if_id);
2136 if (err)
2137 goto out_cancel;
2138
Johannes Berg053c0952015-01-16 22:09:00 +01002139 nlmsg_end(skb, nlh);
2140 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002141
David S. Miller1d1e34d2012-06-27 21:57:03 -07002142out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002143 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002144 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002145}
2146
Christoph Hellwig22e70052007-01-02 15:22:30 -08002147static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002148 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002149{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002150 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002151 struct xfrm_state *x;
2152 struct sk_buff *r_skb;
2153 int err;
2154 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002155 u32 mark;
2156 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002157 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002158 struct xfrm_usersa_id *id = &p->sa_id;
2159
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002160 mark = xfrm_mark_get(attrs, &m);
2161
2162 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002163 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002164 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002165
2166 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2167 if (r_skb == NULL) {
2168 xfrm_state_put(x);
2169 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002170 }
2171
2172 /*
2173 * XXX: is this lock really needed - none of the other
2174 * gets lock (the concern is things getting updated
2175 * while we are still reading) - jhs
2176 */
2177 spin_lock_bh(&x->lock);
2178 c.data.aevent = p->flags;
2179 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002180 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002181
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002182 err = build_aevent(r_skb, x, &c);
2183 BUG_ON(err < 0);
2184
Eric W. Biederman15e47302012-09-07 20:12:54 +00002185 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002186 spin_unlock_bh(&x->lock);
2187 xfrm_state_put(x);
2188 return err;
2189}
2190
Christoph Hellwig22e70052007-01-02 15:22:30 -08002191static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002192 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002193{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002194 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002195 struct xfrm_state *x;
2196 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002197 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002198 u32 mark = 0;
2199 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002200 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002201 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002202 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002203 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002204 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2205 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002206
Michael Rossberg4e077232015-09-29 11:25:08 +02002207 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002208 return err;
2209
2210 /* pedantic mode - thou shalt sayeth replaceth */
2211 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2212 return err;
2213
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002214 mark = xfrm_mark_get(attrs, &m);
2215
2216 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 -08002217 if (x == NULL)
2218 return -ESRCH;
2219
2220 if (x->km.state != XFRM_STATE_VALID)
2221 goto out;
2222
Steffen Klassert4479ff72013-09-09 09:39:01 +02002223 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002224 if (err)
2225 goto out;
2226
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002227 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002228 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002229 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002230
2231 c.event = nlh->nlmsg_type;
2232 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002233 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002234 c.data.aevent = XFRM_AE_CU;
2235 km_state_notify(x, &c);
2236 err = 0;
2237out:
2238 xfrm_state_put(x);
2239 return err;
2240}
2241
Christoph Hellwig22e70052007-01-02 15:22:30 -08002242static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002243 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002245 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002246 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002247 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002248 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002249
Thomas Graf35a7aa02007-08-22 14:00:40 -07002250 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002251 if (err)
2252 return err;
2253
Tetsuo Handa2e710292014-04-22 21:48:30 +09002254 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002255 if (err) {
2256 if (err == -ESRCH) /* empty table */
2257 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002258 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002259 }
2260
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002261 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002262 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002263 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002264 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002265 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002266 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 return 0;
2268}
2269
Christoph Hellwig22e70052007-01-02 15:22:30 -08002270static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002271 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002272{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002273 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002274 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002275 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002276 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002277 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002278 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002279 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02002280 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002281
Thomas Graf35a7aa02007-08-22 14:00:40 -07002282 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002283 if (err)
2284 return err;
2285
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002286 err = verify_policy_dir(p->dir);
2287 if (err)
2288 return err;
2289
Steffen Klassert7e652642018-06-12 14:07:07 +02002290 if (attrs[XFRMA_IF_ID])
2291 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2292
Xin Long4f47e8ab2020-06-22 16:40:29 +08002293 xfrm_mark_get(attrs, &m);
2294
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002295 if (p->index)
Xin Long4f47e8ab2020-06-22 16:40:29 +08002296 xp = xfrm_policy_byid(net, &m, if_id, type, p->dir, p->index,
2297 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002298 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002299 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002300 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002301
Thomas Graf35a7aa02007-08-22 14:00:40 -07002302 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002303 if (err)
2304 return err;
2305
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002306 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002307 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002308 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002309
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002310 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002311 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002312 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002313 }
Xin Long4f47e8ab2020-06-22 16:40:29 +08002314 xp = xfrm_policy_bysel_ctx(net, &m, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002315 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002316 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002317 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002318 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002319 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002320
Timo Teräsea2dea9d2010-03-31 00:17:05 +00002321 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002322 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002323
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002324 err = 0;
2325 if (up->hard) {
2326 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002327 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002328 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002329 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002330
2331out:
2332 xfrm_pol_put(xp);
2333 return err;
2334}
2335
Christoph Hellwig22e70052007-01-02 15:22:30 -08002336static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002337 struct nlattr **attrs)
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002338{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002339 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002340 struct xfrm_state *x;
2341 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002342 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002343 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002344 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002345 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002346
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002347 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002348
David S. Miller3a765aa2007-02-26 14:52:21 -08002349 err = -ENOENT;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002350 if (x == NULL)
2351 return err;
2352
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002353 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002354 err = -EINVAL;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002355 if (x->km.state != XFRM_STATE_VALID)
2356 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002357 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002358
Joy Latten161a09e2006-11-27 13:11:54 -06002359 if (ue->hard) {
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002360 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002361 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002362 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002363 err = 0;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002364out:
2365 spin_unlock_bh(&x->lock);
2366 xfrm_state_put(x);
2367 return err;
2368}
2369
Christoph Hellwig22e70052007-01-02 15:22:30 -08002370static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002371 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002372{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002373 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002374 struct xfrm_policy *xp;
2375 struct xfrm_user_tmpl *ut;
2376 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002377 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002378 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002379
Thomas Graf7b67c852007-08-22 13:53:52 -07002380 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002381 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002382 int err = -ENOMEM;
2383
2384 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002385 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002386
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002387 xfrm_mark_get(attrs, &mark);
2388
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002389 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002390 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002391 goto free_state;
Xin Longa1a7e3a2020-02-09 21:16:38 +08002392 err = verify_sec_ctx_len(attrs);
2393 if (err)
2394 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002395
2396 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002397 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002398 if (!xp)
2399 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002400
2401 memcpy(&x->id, &ua->id, sizeof(ua->id));
2402 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2403 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002404 xp->mark.m = x->mark.m = mark.m;
2405 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002406 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002407 /* extract the templates and for each call km_key */
2408 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2409 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2410 memcpy(&x->id, &t->id, sizeof(x->id));
2411 x->props.mode = t->mode;
2412 x->props.reqid = t->reqid;
2413 x->props.family = ut->family;
2414 t->aalgos = ua->aalgos;
2415 t->ealgos = ua->ealgos;
2416 t->calgos = ua->calgos;
2417 err = km_query(x, t, xp);
2418
2419 }
2420
Mathias Krause4a135e52018-11-21 21:09:23 +01002421 xfrm_state_free(x);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002422 kfree(xp);
2423
2424 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002425
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002426free_state:
Mathias Krause4a135e52018-11-21 21:09:23 +01002427 xfrm_state_free(x);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002428nomem:
2429 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002430}
2431
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002432#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002433static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002434 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002435 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002436{
Thomas Graf5424f322007-08-22 14:01:33 -07002437 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002438 struct xfrm_user_migrate *um;
2439 int i, num_migrate;
2440
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002441 if (k != NULL) {
2442 struct xfrm_user_kmaddress *uk;
2443
2444 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2445 memcpy(&k->local, &uk->local, sizeof(k->local));
2446 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2447 k->family = uk->family;
2448 k->reserved = uk->reserved;
2449 }
2450
Thomas Graf5424f322007-08-22 14:01:33 -07002451 um = nla_data(rt);
2452 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002453
2454 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2455 return -EINVAL;
2456
2457 for (i = 0; i < num_migrate; i++, um++, ma++) {
2458 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2459 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2460 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2461 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2462
2463 ma->proto = um->proto;
2464 ma->mode = um->mode;
2465 ma->reqid = um->reqid;
2466
2467 ma->old_family = um->old_family;
2468 ma->new_family = um->new_family;
2469 }
2470
2471 *num = i;
2472 return 0;
2473}
2474
2475static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002476 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002477{
Thomas Graf7b67c852007-08-22 13:53:52 -07002478 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002479 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002480 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002481 u8 type;
2482 int err;
2483 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002484 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002485 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002486
Thomas Graf35a7aa02007-08-22 14:00:40 -07002487 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002488 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002489
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002490 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2491
Thomas Graf5424f322007-08-22 14:01:33 -07002492 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002493 if (err)
2494 return err;
2495
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002496 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002497 if (err)
2498 return err;
2499
2500 if (!n)
2501 return 0;
2502
Antony Antony4ab47d42017-06-06 12:12:13 +02002503 if (attrs[XFRMA_ENCAP]) {
2504 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2505 sizeof(*encap), GFP_KERNEL);
2506 if (!encap)
2507 return 0;
2508 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002509
Antony Antony4ab47d42017-06-06 12:12:13 +02002510 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2511
2512 kfree(encap);
2513
2514 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002515}
2516#else
2517static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002518 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002519{
2520 return -ENOPROTOOPT;
2521}
2522#endif
2523
2524#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002525static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002526{
2527 struct xfrm_user_migrate um;
2528
2529 memset(&um, 0, sizeof(um));
2530 um.proto = m->proto;
2531 um.mode = m->mode;
2532 um.reqid = m->reqid;
2533 um.old_family = m->old_family;
2534 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2535 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2536 um.new_family = m->new_family;
2537 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2538 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2539
Thomas Grafc0144be2007-08-22 13:55:43 -07002540 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002541}
2542
David S. Miller183cad12011-02-24 00:28:01 -05002543static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002544{
2545 struct xfrm_user_kmaddress uk;
2546
2547 memset(&uk, 0, sizeof(uk));
2548 uk.family = k->family;
2549 uk.reserved = k->reserved;
2550 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002551 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002552
2553 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2554}
2555
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002556static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2557 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002558{
2559 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002560 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002561 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002562 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2563 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002564}
2565
David S. Miller183cad12011-02-24 00:28:01 -05002566static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2567 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002568 const struct xfrm_selector *sel,
2569 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002570{
David S. Miller183cad12011-02-24 00:28:01 -05002571 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002572 struct xfrm_userpolicy_id *pol_id;
2573 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002574 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002575
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002576 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2577 if (nlh == NULL)
2578 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002579
Thomas Graf7b67c852007-08-22 13:53:52 -07002580 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002581 /* copy data from selector, dir, and type to the pol_id */
2582 memset(pol_id, 0, sizeof(*pol_id));
2583 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2584 pol_id->dir = dir;
2585
David S. Miller1d1e34d2012-06-27 21:57:03 -07002586 if (k != NULL) {
2587 err = copy_to_user_kmaddress(k, skb);
2588 if (err)
2589 goto out_cancel;
2590 }
Antony Antony8bafd732017-06-06 12:12:14 +02002591 if (encap) {
2592 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2593 if (err)
2594 goto out_cancel;
2595 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002596 err = copy_to_user_policy_type(type, skb);
2597 if (err)
2598 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002599 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002600 err = copy_to_user_migrate(mp, skb);
2601 if (err)
2602 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002603 }
2604
Johannes Berg053c0952015-01-16 22:09:00 +01002605 nlmsg_end(skb, nlh);
2606 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002607
2608out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002609 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002610 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002611}
2612
David S. Miller183cad12011-02-24 00:28:01 -05002613static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2614 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002615 const struct xfrm_kmaddress *k,
2616 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002617{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002618 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002619 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002620 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002621
Antony Antony8bafd732017-06-06 12:12:14 +02002622 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2623 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002624 if (skb == NULL)
2625 return -ENOMEM;
2626
2627 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002628 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2629 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002630
Michal Kubecek21ee5432014-06-03 10:26:06 +02002631 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002632}
2633#else
David S. Miller183cad12011-02-24 00:28:01 -05002634static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2635 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002636 const struct xfrm_kmaddress *k,
2637 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002638{
2639 return -ENOPROTOOPT;
2640}
2641#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002642
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002643#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002644
Dmitry Safonov5461fc02020-09-21 15:36:52 +01002645const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002646 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002647 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2648 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2649 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2650 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2651 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2652 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002653 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002654 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002655 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002656 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002657 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002658 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002659 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002660 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2661 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002662 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002663 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002664 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002665 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002666 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667};
Dmitry Safonov5461fc02020-09-21 15:36:52 +01002668EXPORT_SYMBOL_GPL(xfrm_msg_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Thomas Graf492b5582005-05-03 14:26:40 -07002670#undef XMSGSIZE
2671
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002672const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002673 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2674 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2675 [XFRMA_LASTUSED] = { .type = NLA_U64},
2676 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002677 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002678 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2679 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2680 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2681 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2682 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2683 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2684 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2685 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2686 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2687 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2688 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2689 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2690 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2691 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002692 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002693 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002694 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002695 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002696 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002697 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002698 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002699 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002700 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2701 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002702 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002703};
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002704EXPORT_SYMBOL_GPL(xfrma_policy);
Thomas Grafcf5cb792007-08-22 13:59:04 -07002705
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002706static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2707 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2708 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2709};
2710
Mathias Krause05600a72013-02-24 14:10:27 +01002711static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002712 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002713 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002715 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002716 const struct nla_policy *nla_pol;
2717 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002718} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2719 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2720 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2721 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002722 .dump = xfrm_dump_sa,
2723 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002724 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2725 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2726 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002727 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002728 .dump = xfrm_dump_policy,
2729 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002730 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002731 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002732 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002733 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2734 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002735 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002736 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2737 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002738 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2739 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002740 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002741 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002742 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2743 .nla_pol = xfrma_spd_policy,
2744 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002745 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746};
2747
Johannes Berg2d4bc932017-04-12 14:34:04 +02002748static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2749 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002751 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002752 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002753 const struct xfrm_link *link;
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002754 struct nlmsghdr *nlh64 = NULL;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002755 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002759 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 type -= XFRM_MSG_BASE;
2762 link = &xfrm_dispatch[type];
2763
2764 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002765 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002766 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002768 if (in_compat_syscall()) {
2769 struct xfrm_translator *xtr = xfrm_get_translator();
2770
2771 if (!xtr)
2772 return -EOPNOTSUPP;
2773
2774 nlh64 = xtr->rcv_msg_compat(nlh, link->nla_max,
2775 link->nla_pol, extack);
2776 xfrm_put_translator(xtr);
2777 if (IS_ERR(nlh64))
2778 return PTR_ERR(nlh64);
2779 if (nlh64)
2780 nlh = nlh64;
2781 }
2782
Thomas Graf492b5582005-05-03 14:26:40 -07002783 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2784 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002785 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002786 struct netlink_dump_control c = {
2787 .start = link->start,
2788 .dump = link->dump,
2789 .done = link->done,
2790 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002792 if (link->dump == NULL) {
2793 err = -EINVAL;
2794 goto err;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002795 }
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002796
2797 err = netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2798 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
2800
Johannes Berg8cb08172019-04-26 14:07:28 +02002801 err = nlmsg_parse_deprecated(nlh, xfrm_msg_min[type], attrs,
2802 link->nla_max ? : XFRMA_MAX,
2803 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002804 if (err < 0)
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002805 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002807 if (link->doit == NULL) {
2808 err = -EINVAL;
2809 goto err;
2810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Dmitry Safonov5106f4a2020-09-21 15:36:55 +01002812 err = link->doit(skb, nlh, attrs);
2813
2814err:
2815 kvfree(nlh64);
2816 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817}
2818
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002819static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Fan Du283bc9f2013-11-07 17:47:50 +08002821 struct net *net = sock_net(skb->sk);
2822
2823 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002824 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002825 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826}
2827
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002828static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002829{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002830 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2831 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002832}
2833
David S. Miller214e0052011-02-24 00:02:38 -05002834static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
2836 struct xfrm_user_expire *ue;
2837 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002838 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Eric W. Biederman15e47302012-09-07 20:12:54 +00002840 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002841 if (nlh == NULL)
2842 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Thomas Graf7b67c852007-08-22 13:53:52 -07002844 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002846 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002847 /* clear the padding bytes */
2848 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
David S. Miller1d1e34d2012-06-27 21:57:03 -07002850 err = xfrm_mark_put(skb, &x->mark);
2851 if (err)
2852 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002853
Steffen Klassert7e652642018-06-12 14:07:07 +02002854 err = xfrm_if_id_put(skb, x->if_id);
2855 if (err)
2856 return err;
2857
Johannes Berg053c0952015-01-16 22:09:00 +01002858 nlmsg_end(skb, nlh);
2859 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860}
2861
David S. Miller214e0052011-02-24 00:02:38 -05002862static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002864 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 struct sk_buff *skb;
2866
Thomas Graf7deb2262007-08-22 13:57:39 -07002867 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 if (skb == NULL)
2869 return -ENOMEM;
2870
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002871 if (build_expire(skb, x, c) < 0) {
2872 kfree_skb(skb);
2873 return -EMSGSIZE;
2874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Michal Kubecek21ee5432014-06-03 10:26:06 +02002876 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
David S. Miller214e0052011-02-24 00:02:38 -05002879static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002880{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002881 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002882 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002883 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002884
Steffen Klassertd8647b72011-03-08 00:10:27 +00002885 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002886 if (skb == NULL)
2887 return -ENOMEM;
2888
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002889 err = build_aevent(skb, x, c);
2890 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002891
Michal Kubecek21ee5432014-06-03 10:26:06 +02002892 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002893}
2894
David S. Miller214e0052011-02-24 00:02:38 -05002895static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002896{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002897 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002898 struct xfrm_usersa_flush *p;
2899 struct nlmsghdr *nlh;
2900 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002901 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002902
Thomas Graf7deb2262007-08-22 13:57:39 -07002903 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002904 if (skb == NULL)
2905 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002906
Eric W. Biederman15e47302012-09-07 20:12:54 +00002907 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002908 if (nlh == NULL) {
2909 kfree_skb(skb);
2910 return -EMSGSIZE;
2911 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002912
Thomas Graf7b67c852007-08-22 13:53:52 -07002913 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002914 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002915
Thomas Graf98250692007-08-22 12:47:26 -07002916 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002917
Michal Kubecek21ee5432014-06-03 10:26:06 +02002918 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002919}
2920
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002921static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002922{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002923 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002924 if (x->aead)
2925 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002926 if (x->aalg) {
2927 l += nla_total_size(sizeof(struct xfrm_algo) +
2928 (x->aalg->alg_key_len + 7) / 8);
2929 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2930 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002931 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002932 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002933 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002934 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002935 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002936 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002937 if (x->tfcpad)
2938 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002939 if (x->replay_esn)
2940 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002941 else
2942 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002943 if (x->security)
2944 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2945 x->security->ctx_len);
2946 if (x->coaddr)
2947 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002948 if (x->props.extra_flags)
2949 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002950 if (x->xso.dev)
2951 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002952 if (x->props.smark.v | x->props.smark.m) {
2953 l += nla_total_size(sizeof(x->props.smark.v));
2954 l += nla_total_size(sizeof(x->props.smark.m));
2955 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002956 if (x->if_id)
2957 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002958
Herbert Xud26f3982007-11-13 21:47:08 -08002959 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002960 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002961
2962 return l;
2963}
2964
David S. Miller214e0052011-02-24 00:02:38 -05002965static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002966{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002967 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002968 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002969 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002970 struct nlmsghdr *nlh;
2971 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002972 unsigned int len = xfrm_sa_len(x);
2973 unsigned int headlen;
2974 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002975
2976 headlen = sizeof(*p);
2977 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002978 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002979 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002980 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002981 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002982 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002983
Thomas Graf7deb2262007-08-22 13:57:39 -07002984 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002985 if (skb == NULL)
2986 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002987
Eric W. Biederman15e47302012-09-07 20:12:54 +00002988 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002989 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002990 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002991 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002992
Thomas Graf7b67c852007-08-22 13:53:52 -07002993 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002994 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002995 struct nlattr *attr;
2996
Thomas Graf7b67c852007-08-22 13:53:52 -07002997 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002998 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002999 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
3000 id->spi = x->id.spi;
3001 id->family = x->props.family;
3002 id->proto = x->id.proto;
3003
Thomas Grafc0144be2007-08-22 13:55:43 -07003004 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003005 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003006 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003007 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003008
3009 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003010 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07003011 err = copy_to_user_state_extra(x, p, skb);
3012 if (err)
3013 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003014
Thomas Graf98250692007-08-22 12:47:26 -07003015 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003016
Michal Kubecek21ee5432014-06-03 10:26:06 +02003017 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003018
David S. Miller1d1e34d2012-06-27 21:57:03 -07003019out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003020 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003021 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003022}
3023
David S. Miller214e0052011-02-24 00:02:38 -05003024static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003025{
3026
3027 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003028 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003029 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003030 case XFRM_MSG_NEWAE:
3031 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003032 case XFRM_MSG_DELSA:
3033 case XFRM_MSG_UPDSA:
3034 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003035 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003036 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003037 return xfrm_notify_sa_flush(c);
3038 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003039 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
3040 c->event);
3041 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003042 }
3043
3044 return 0;
3045
3046}
3047
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003048static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
3049 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003050{
3051 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
3052 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00003053 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003054 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
3055 + userpolicy_type_attrsize();
3056}
3057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08003059 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060{
David S. Miller1d1e34d2012-06-27 21:57:03 -07003061 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 struct xfrm_user_acquire *ua;
3063 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003064 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003066 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
3067 if (nlh == NULL)
3068 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Thomas Graf7b67c852007-08-22 13:53:52 -07003070 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 memcpy(&ua->id, &x->id, sizeof(ua->id));
3072 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
3073 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08003074 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 ua->aalgos = xt->aalgos;
3076 ua->ealgos = xt->ealgos;
3077 ua->calgos = xt->calgos;
3078 ua->seq = x->km.seq = seq;
3079
David S. Miller1d1e34d2012-06-27 21:57:03 -07003080 err = copy_to_user_tmpl(xp, skb);
3081 if (!err)
3082 err = copy_to_user_state_sec_ctx(x, skb);
3083 if (!err)
3084 err = copy_to_user_policy_type(xp->type, skb);
3085 if (!err)
3086 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003087 if (!err)
3088 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003089 if (err) {
3090 nlmsg_cancel(skb, nlh);
3091 return err;
3092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Johannes Berg053c0952015-01-16 22:09:00 +01003094 nlmsg_end(skb, nlh);
3095 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096}
3097
3098static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08003099 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003101 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003103 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Thomas Graf7deb2262007-08-22 13:57:39 -07003105 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 if (skb == NULL)
3107 return -ENOMEM;
3108
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003109 err = build_acquire(skb, x, xt, xp);
3110 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Michal Kubecek21ee5432014-06-03 10:26:06 +02003112 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113}
3114
3115/* User gives us xfrm_user_policy_info followed by an array of 0
3116 * or more templates.
3117 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07003118static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 u8 *data, int len, int *dir)
3120{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003121 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
3123 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
3124 struct xfrm_policy *xp;
3125 int nr;
3126
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07003127 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 case AF_INET:
3129 if (opt != IP_XFRM_POLICY) {
3130 *dir = -EOPNOTSUPP;
3131 return NULL;
3132 }
3133 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00003134#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 case AF_INET6:
3136 if (opt != IPV6_XFRM_POLICY) {
3137 *dir = -EOPNOTSUPP;
3138 return NULL;
3139 }
3140 break;
3141#endif
3142 default:
3143 *dir = -EINVAL;
3144 return NULL;
3145 }
3146
3147 *dir = -EINVAL;
3148
3149 if (len < sizeof(*p) ||
3150 verify_newpolicy_info(p))
3151 return NULL;
3152
3153 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08003154 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 return NULL;
3156
Herbert Xua4f1bac2005-07-26 15:43:17 -07003157 if (p->dir > XFRM_POLICY_OUT)
3158 return NULL;
3159
Herbert Xu2f09a4d2010-08-14 22:38:09 -07003160 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 if (xp == NULL) {
3162 *dir = -ENOBUFS;
3163 return NULL;
3164 }
3165
3166 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07003167 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 copy_templates(xp, ut, nr);
3169
3170 *dir = p->dir;
3171
3172 return xp;
3173}
3174
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003175static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003176{
3177 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3178 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3179 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003180 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003181 + userpolicy_type_attrsize();
3182}
3183
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003185 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
3187 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003188 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003189 struct nlmsghdr *nlh;
3190 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Eric W. Biederman15e47302012-09-07 20:12:54 +00003192 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003193 if (nlh == NULL)
3194 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Thomas Graf7b67c852007-08-22 13:53:52 -07003196 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003198 err = copy_to_user_tmpl(xp, skb);
3199 if (!err)
3200 err = copy_to_user_sec_ctx(xp, skb);
3201 if (!err)
3202 err = copy_to_user_policy_type(xp->type, skb);
3203 if (!err)
3204 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003205 if (!err)
3206 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003207 if (err) {
3208 nlmsg_cancel(skb, nlh);
3209 return err;
3210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 upe->hard = !!hard;
3212
Johannes Berg053c0952015-01-16 22:09:00 +01003213 nlmsg_end(skb, nlh);
3214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215}
3216
David S. Miller214e0052011-02-24 00:02:38 -05003217static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003219 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003221 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Thomas Graf7deb2262007-08-22 13:57:39 -07003223 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 if (skb == NULL)
3225 return -ENOMEM;
3226
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003227 err = build_polexpire(skb, xp, dir, c);
3228 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Michal Kubecek21ee5432014-06-03 10:26:06 +02003230 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
David S. Miller214e0052011-02-24 00:02:38 -05003233static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003234{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003235 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003236 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003237 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003238 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003239 struct nlmsghdr *nlh;
3240 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003241 unsigned int headlen;
3242 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003243
3244 headlen = sizeof(*p);
3245 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003246 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003247 headlen = sizeof(*id);
3248 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003249 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003250 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003251 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003252
Thomas Graf7deb2262007-08-22 13:57:39 -07003253 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003254 if (skb == NULL)
3255 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003256
Eric W. Biederman15e47302012-09-07 20:12:54 +00003257 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003258 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003259 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003260 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003261
Thomas Graf7b67c852007-08-22 13:53:52 -07003262 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003263 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003264 struct nlattr *attr;
3265
Thomas Graf7b67c852007-08-22 13:53:52 -07003266 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003267 memset(id, 0, sizeof(*id));
3268 id->dir = dir;
3269 if (c->data.byid)
3270 id->index = xp->index;
3271 else
3272 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3273
Thomas Grafc0144be2007-08-22 13:55:43 -07003274 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003275 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003276 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003277 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003278
3279 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003280 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003281
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003282 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003283 err = copy_to_user_tmpl(xp, skb);
3284 if (!err)
3285 err = copy_to_user_policy_type(xp->type, skb);
3286 if (!err)
3287 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003288 if (!err)
3289 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003290 if (err)
3291 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003292
Thomas Graf98250692007-08-22 12:47:26 -07003293 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003294
Michal Kubecek21ee5432014-06-03 10:26:06 +02003295 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003296
David S. Miller1d1e34d2012-06-27 21:57:03 -07003297out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003298 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003299 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003300}
3301
David S. Miller214e0052011-02-24 00:02:38 -05003302static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003303{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003304 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003305 struct nlmsghdr *nlh;
3306 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003307 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003308
Thomas Graf7deb2262007-08-22 13:57:39 -07003309 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003310 if (skb == NULL)
3311 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003312
Eric W. Biederman15e47302012-09-07 20:12:54 +00003313 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003314 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003315 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003316 goto out_free_skb;
3317 err = copy_to_user_policy_type(c->data.type, skb);
3318 if (err)
3319 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003320
Thomas Graf98250692007-08-22 12:47:26 -07003321 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003322
Michal Kubecek21ee5432014-06-03 10:26:06 +02003323 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003324
David S. Miller1d1e34d2012-06-27 21:57:03 -07003325out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003326 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003327 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003328}
3329
David S. Miller214e0052011-02-24 00:02:38 -05003330static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003331{
3332
3333 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003334 case XFRM_MSG_NEWPOLICY:
3335 case XFRM_MSG_UPDPOLICY:
3336 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003337 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003338 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003339 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003340 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003341 return xfrm_exp_policy_notify(xp, dir, c);
3342 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003343 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3344 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003345 }
3346
3347 return 0;
3348
3349}
3350
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003351static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003352{
3353 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3354}
3355
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003356static int build_report(struct sk_buff *skb, u8 proto,
3357 struct xfrm_selector *sel, xfrm_address_t *addr)
3358{
3359 struct xfrm_user_report *ur;
3360 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003361
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003362 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3363 if (nlh == NULL)
3364 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003365
Thomas Graf7b67c852007-08-22 13:53:52 -07003366 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003367 ur->proto = proto;
3368 memcpy(&ur->sel, sel, sizeof(ur->sel));
3369
David S. Miller1d1e34d2012-06-27 21:57:03 -07003370 if (addr) {
3371 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3372 if (err) {
3373 nlmsg_cancel(skb, nlh);
3374 return err;
3375 }
3376 }
Johannes Berg053c0952015-01-16 22:09:00 +01003377 nlmsg_end(skb, nlh);
3378 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003379}
3380
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003381static int xfrm_send_report(struct net *net, u8 proto,
3382 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003383{
3384 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003385 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003386
Thomas Graf7deb2262007-08-22 13:57:39 -07003387 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003388 if (skb == NULL)
3389 return -ENOMEM;
3390
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003391 err = build_report(skb, proto, sel, addr);
3392 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003393
Michal Kubecek21ee5432014-06-03 10:26:06 +02003394 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003395}
3396
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003397static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003398{
3399 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3400}
3401
3402static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3403 xfrm_address_t *new_saddr, __be16 new_sport)
3404{
3405 struct xfrm_user_mapping *um;
3406 struct nlmsghdr *nlh;
3407
3408 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3409 if (nlh == NULL)
3410 return -EMSGSIZE;
3411
3412 um = nlmsg_data(nlh);
3413
3414 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3415 um->id.spi = x->id.spi;
3416 um->id.family = x->props.family;
3417 um->id.proto = x->id.proto;
3418 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3419 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3420 um->new_sport = new_sport;
3421 um->old_sport = x->encap->encap_sport;
3422 um->reqid = x->props.reqid;
3423
Johannes Berg053c0952015-01-16 22:09:00 +01003424 nlmsg_end(skb, nlh);
3425 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003426}
3427
3428static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3429 __be16 sport)
3430{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003431 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003432 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003433 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003434
3435 if (x->id.proto != IPPROTO_ESP)
3436 return -EINVAL;
3437
3438 if (!x->encap)
3439 return -EINVAL;
3440
3441 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3442 if (skb == NULL)
3443 return -ENOMEM;
3444
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003445 err = build_mapping(skb, x, ipaddr, sport);
3446 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003447
Michal Kubecek21ee5432014-06-03 10:26:06 +02003448 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003449}
3450
Horia Geanta0f245582014-02-12 16:20:06 +02003451static bool xfrm_is_alive(const struct km_event *c)
3452{
3453 return (bool)xfrm_acquire_is_on(c->net);
3454}
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 .notify = xfrm_send_state_notify,
3458 .acquire = xfrm_send_acquire,
3459 .compile_policy = xfrm_compile_policy,
3460 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003461 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003462 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003463 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003464 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465};
3466
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003467static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Patrick McHardybe336902006-03-20 22:40:54 -08003469 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003470 struct netlink_kernel_cfg cfg = {
3471 .groups = XFRMNLGRP_MAX,
3472 .input = xfrm_netlink_rcv,
3473 };
Patrick McHardybe336902006-03-20 22:40:54 -08003474
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003475 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003476 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003478 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003479 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 return 0;
3481}
3482
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003483static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003484{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003485 struct net *net;
3486 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003487 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003488 synchronize_net();
3489 list_for_each_entry(net, net_exit_list, exit_list)
3490 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003491}
3492
3493static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003494 .init = xfrm_user_net_init,
3495 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003496};
3497
3498static int __init xfrm_user_init(void)
3499{
3500 int rv;
3501
3502 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3503
3504 rv = register_pernet_subsys(&xfrm_user_net_ops);
3505 if (rv < 0)
3506 return rv;
3507 rv = xfrm_register_km(&netlink_mgr);
3508 if (rv < 0)
3509 unregister_pernet_subsys(&xfrm_user_net_ops);
3510 return rv;
3511}
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513static void __exit xfrm_user_exit(void)
3514{
3515 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003516 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517}
3518
3519module_init(xfrm_user_init);
3520module_exit(xfrm_user_exit);
3521MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003522MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);