blob: e6cfaa680ef3d9cd0efb7b98ee41f0caccdbdce0 [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 Beltrami0a694522006-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
Martin Willi4447bb32009-11-25 00:29:52 +0000851static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
852{
853 struct xfrm_algo *algo;
854 struct nlattr *nla;
855
856 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
857 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
858 if (!nla)
859 return -EMSGSIZE;
860
861 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000862 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000863 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
864 algo->alg_key_len = auth->alg_key_len;
865
866 return 0;
867}
868
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200869static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
870{
871 int ret = 0;
872
873 if (m->v | m->m) {
874 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
875 if (!ret)
876 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
877 }
878 return ret;
879}
880
Herbert Xu68325d32007-10-09 13:30:57 -0700881/* Don't change this without updating xfrm_sa_len! */
882static int copy_to_user_state_extra(struct xfrm_state *x,
883 struct xfrm_usersa_info *p,
884 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700886 int ret = 0;
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 copy_to_user_state(x, p);
889
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100890 if (x->props.extra_flags) {
891 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
892 x->props.extra_flags);
893 if (ret)
894 goto out;
895 }
896
David S. Miller1d1e34d2012-06-27 21:57:03 -0700897 if (x->coaddr) {
898 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
899 if (ret)
900 goto out;
901 }
902 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200903 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
904 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700905 if (ret)
906 goto out;
907 }
908 if (x->aead) {
909 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
910 if (ret)
911 goto out;
912 }
913 if (x->aalg) {
914 ret = copy_to_user_auth(x->aalg, skb);
915 if (!ret)
916 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
917 xfrm_alg_auth_len(x->aalg), x->aalg);
918 if (ret)
919 goto out;
920 }
921 if (x->ealg) {
922 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
923 if (ret)
924 goto out;
925 }
926 if (x->calg) {
927 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
928 if (ret)
929 goto out;
930 }
931 if (x->encap) {
932 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
933 if (ret)
934 goto out;
935 }
936 if (x->tfcpad) {
937 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
938 if (ret)
939 goto out;
940 }
941 ret = xfrm_mark_put(skb, &x->mark);
942 if (ret)
943 goto out;
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200944
945 ret = xfrm_smark_put(skb, &x->props.smark);
946 if (ret)
947 goto out;
948
dingzhif293a5e2014-10-30 09:39:36 +0100949 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700950 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
951 xfrm_replay_state_esn_len(x->replay_esn),
952 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100953 else
954 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
955 &x->replay);
956 if (ret)
957 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200958 if(x->xso.dev)
959 ret = copy_user_offload(&x->xso, skb);
960 if (ret)
961 goto out;
Steffen Klassert7e652642018-06-12 14:07:07 +0200962 if (x->if_id) {
963 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900964 if (ret)
965 goto out;
966 }
Steffen Klassert85981122017-08-31 10:37:00 +0200967 if (x->security)
968 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700969out:
970 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700971}
972
973static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
974{
975 struct xfrm_dump_info *sp = ptr;
976 struct sk_buff *in_skb = sp->in_skb;
977 struct sk_buff *skb = sp->out_skb;
978 struct xfrm_usersa_info *p;
979 struct nlmsghdr *nlh;
980 int err;
981
Eric W. Biederman15e47302012-09-07 20:12:54 +0000982 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700983 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
984 if (nlh == NULL)
985 return -EMSGSIZE;
986
987 p = nlmsg_data(nlh);
988
989 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700990 if (err) {
991 nlmsg_cancel(skb, nlh);
992 return err;
993 }
Thomas Graf98250692007-08-22 12:47:26 -0700994 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Timo Teras4c563f72008-02-28 21:31:08 -0800998static int xfrm_dump_sa_done(struct netlink_callback *cb)
999{
1000 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001001 struct sock *sk = cb->skb->sk;
1002 struct net *net = sock_net(sk);
1003
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001004 if (cb->args[0])
1005 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001006 return 0;
1007}
1008
Nicolas Dichteld3623092014-02-14 15:30:36 +01001009static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
1011{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001012 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001013 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct xfrm_dump_info info;
1015
Timo Teras4c563f72008-02-28 21:31:08 -08001016 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
1017 sizeof(cb->args) - sizeof(cb->args[0]));
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 info.in_skb = cb->skb;
1020 info.out_skb = skb;
1021 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1022 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001023
1024 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +01001025 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001026 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001027 u8 proto = 0;
1028 int err;
1029
Johannes Berg8cb08172019-04-26 14:07:28 +02001030 err = nlmsg_parse_deprecated(cb->nlh, 0, attrs, XFRMA_MAX,
1031 xfrma_policy, cb->extack);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001032 if (err < 0)
1033 return err;
1034
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001035 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001036 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1037 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001038 if (filter == NULL)
1039 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001040 }
1041
1042 if (attrs[XFRMA_PROTO])
1043 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1044
1045 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001046 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001047 }
1048
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001049 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 return skb->len;
1052}
1053
1054static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1055 struct xfrm_state *x, u32 seq)
1056{
1057 struct xfrm_dump_info info;
1058 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001059 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Thomas Graf7deb2262007-08-22 13:57:39 -07001061 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (!skb)
1063 return ERR_PTR(-ENOMEM);
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 info.in_skb = in_skb;
1066 info.out_skb = skb;
1067 info.nlmsg_seq = seq;
1068 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Mathias Krause864745d2012-09-13 11:41:26 +00001070 err = dump_one_state(x, 0, &info);
1071 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001073 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075
1076 return skb;
1077}
1078
Michal Kubecek21ee5432014-06-03 10:26:06 +02001079/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1080 * Must be called with RCU read lock.
1081 */
1082static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1083 u32 pid, unsigned int group)
1084{
1085 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1086
Florian Westphal86126b72018-06-25 14:00:07 +02001087 if (!nlsk) {
1088 kfree_skb(skb);
1089 return -EPIPE;
1090 }
1091
1092 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001093}
1094
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001095static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001096{
1097 return NLMSG_ALIGN(4)
1098 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001099 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1100 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1101 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001102}
1103
Alexey Dobriyane0710412010-01-23 13:37:10 +00001104static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001105 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001106{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001107 struct xfrmk_spdinfo si;
1108 struct xfrmu_spdinfo spc;
1109 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001110 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001111 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001112 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001113 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001114 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001115
Eric W. Biederman15e47302012-09-07 20:12:54 +00001116 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001117 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001118 return -EMSGSIZE;
1119
1120 f = nlmsg_data(nlh);
1121 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001122 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001123 spc.incnt = si.incnt;
1124 spc.outcnt = si.outcnt;
1125 spc.fwdcnt = si.fwdcnt;
1126 spc.inscnt = si.inscnt;
1127 spc.outscnt = si.outscnt;
1128 spc.fwdscnt = si.fwdscnt;
1129 sph.spdhcnt = si.spdhcnt;
1130 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001131
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001132 do {
1133 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1134
1135 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1136 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1137 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1138 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1139 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1140
David S. Miller1d1e34d2012-06-27 21:57:03 -07001141 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1142 if (!err)
1143 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001144 if (!err)
1145 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1146 if (!err)
1147 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001148 if (err) {
1149 nlmsg_cancel(skb, nlh);
1150 return err;
1151 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001152
Johannes Berg053c0952015-01-16 22:09:00 +01001153 nlmsg_end(skb, nlh);
1154 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001155}
1156
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001157static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1158 struct nlattr **attrs)
1159{
1160 struct net *net = sock_net(skb->sk);
1161 struct xfrmu_spdhthresh *thresh4 = NULL;
1162 struct xfrmu_spdhthresh *thresh6 = NULL;
1163
1164 /* selector prefixlen thresholds to hash policies */
1165 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1166 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1167
1168 if (nla_len(rta) < sizeof(*thresh4))
1169 return -EINVAL;
1170 thresh4 = nla_data(rta);
1171 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1172 return -EINVAL;
1173 }
1174 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1175 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1176
1177 if (nla_len(rta) < sizeof(*thresh6))
1178 return -EINVAL;
1179 thresh6 = nla_data(rta);
1180 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1181 return -EINVAL;
1182 }
1183
1184 if (thresh4 || thresh6) {
1185 write_seqlock(&net->xfrm.policy_hthresh.lock);
1186 if (thresh4) {
1187 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1188 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1189 }
1190 if (thresh6) {
1191 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1192 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1193 }
1194 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1195
1196 xfrm_policy_hash_rebuild(net);
1197 }
1198
1199 return 0;
1200}
1201
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001202static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001203 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001204{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001205 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001206 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001207 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001208 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001209 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001210 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001211
Thomas Graf7deb2262007-08-22 13:57:39 -07001212 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001213 if (r_skb == NULL)
1214 return -ENOMEM;
1215
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001216 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1217 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001218
Eric W. Biederman15e47302012-09-07 20:12:54 +00001219 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001220}
1221
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001222static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001223{
1224 return NLMSG_ALIGN(4)
1225 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1226 + nla_total_size(4); /* XFRMA_SAD_CNT */
1227}
1228
Alexey Dobriyane0710412010-01-23 13:37:10 +00001229static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001230 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001231{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001232 struct xfrmk_sadinfo si;
1233 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001234 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001235 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001236 u32 *f;
1237
Eric W. Biederman15e47302012-09-07 20:12:54 +00001238 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001239 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001240 return -EMSGSIZE;
1241
1242 f = nlmsg_data(nlh);
1243 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001244 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001245
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001246 sh.sadhmcnt = si.sadhmcnt;
1247 sh.sadhcnt = si.sadhcnt;
1248
David S. Miller1d1e34d2012-06-27 21:57:03 -07001249 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1250 if (!err)
1251 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1252 if (err) {
1253 nlmsg_cancel(skb, nlh);
1254 return err;
1255 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001256
Johannes Berg053c0952015-01-16 22:09:00 +01001257 nlmsg_end(skb, nlh);
1258 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001259}
1260
1261static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001262 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001263{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001264 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001265 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001266 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001267 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001268 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001269 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001270
Thomas Graf7deb2262007-08-22 13:57:39 -07001271 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001272 if (r_skb == NULL)
1273 return -ENOMEM;
1274
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001275 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1276 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001277
Eric W. Biederman15e47302012-09-07 20:12:54 +00001278 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001279}
1280
Christoph Hellwig22e70052007-01-02 15:22:30 -08001281static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001282 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001284 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001285 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct xfrm_state *x;
1287 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001288 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001290 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (x == NULL)
1292 goto out_noput;
1293
1294 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1295 if (IS_ERR(resp_skb)) {
1296 err = PTR_ERR(resp_skb);
1297 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001298 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
1300 xfrm_state_put(x);
1301out_noput:
1302 return err;
1303}
1304
Christoph Hellwig22e70052007-01-02 15:22:30 -08001305static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001306 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001308 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct xfrm_state *x;
1310 struct xfrm_userspi_info *p;
1311 struct sk_buff *resp_skb;
1312 xfrm_address_t *daddr;
1313 int family;
1314 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001315 u32 mark;
1316 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001317 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Thomas Graf7b67c852007-08-22 13:53:52 -07001319 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001320 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (err)
1322 goto out_noput;
1323
1324 family = p->info.family;
1325 daddr = &p->info.id.daddr;
1326
1327 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001328
1329 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001330
1331 if (attrs[XFRMA_IF_ID])
1332 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001335 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001336 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 xfrm_state_put(x);
1338 x = NULL;
1339 }
1340 }
1341
1342 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001343 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klassert7e652642018-06-12 14:07:07 +02001344 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 &p->info.saddr, 1,
1346 family);
1347 err = -ENOENT;
1348 if (x == NULL)
1349 goto out_noput;
1350
Herbert Xu658b2192007-10-09 13:29:52 -07001351 err = xfrm_alloc_spi(x, p->min, p->max);
1352 if (err)
1353 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Herbert Xu658b2192007-10-09 13:29:52 -07001355 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (IS_ERR(resp_skb)) {
1357 err = PTR_ERR(resp_skb);
1358 goto out;
1359 }
1360
Eric W. Biederman15e47302012-09-07 20:12:54 +00001361 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363out:
1364 xfrm_state_put(x);
1365out_noput:
1366 return err;
1367}
1368
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001369static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 switch (dir) {
1372 case XFRM_POLICY_IN:
1373 case XFRM_POLICY_OUT:
1374 case XFRM_POLICY_FWD:
1375 break;
1376
1377 default:
1378 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 return 0;
1382}
1383
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001384static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001385{
1386 switch (type) {
1387 case XFRM_POLICY_TYPE_MAIN:
1388#ifdef CONFIG_XFRM_SUB_POLICY
1389 case XFRM_POLICY_TYPE_SUB:
1390#endif
1391 break;
1392
1393 default:
1394 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001395 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001396
1397 return 0;
1398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1401{
Fan Due682adf02013-11-07 17:47:48 +08001402 int ret;
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 switch (p->share) {
1405 case XFRM_SHARE_ANY:
1406 case XFRM_SHARE_SESSION:
1407 case XFRM_SHARE_USER:
1408 case XFRM_SHARE_UNIQUE:
1409 break;
1410
1411 default:
1412 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 switch (p->action) {
1416 case XFRM_POLICY_ALLOW:
1417 case XFRM_POLICY_BLOCK:
1418 break;
1419
1420 default:
1421 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 switch (p->sel.family) {
1425 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +02001426 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1427 return -EINVAL;
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 break;
1430
1431 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001432#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +02001433 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1434 return -EINVAL;
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 break;
1437#else
1438 return -EAFNOSUPPORT;
1439#endif
1440
1441 default:
1442 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Fan Due682adf02013-11-07 17:47:48 +08001445 ret = verify_policy_dir(p->dir);
1446 if (ret)
1447 return ret;
YueHaibingb805d78d2019-02-28 15:18:59 +08001448 if (p->index && (xfrm_policy_id2dir(p->index) != p->dir))
Fan Due682adf02013-11-07 17:47:48 +08001449 return -EINVAL;
1450
1451 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
Thomas Graf5424f322007-08-22 14:01:33 -07001454static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001455{
Thomas Graf5424f322007-08-22 14:01:33 -07001456 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001457 struct xfrm_user_sec_ctx *uctx;
1458
1459 if (!rt)
1460 return 0;
1461
Thomas Graf5424f322007-08-22 14:01:33 -07001462 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001463 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001464}
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1467 int nr)
1468{
1469 int i;
1470
1471 xp->xfrm_nr = nr;
1472 for (i = 0; i < nr; i++, ut++) {
1473 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1474
1475 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1476 memcpy(&t->saddr, &ut->saddr,
1477 sizeof(xfrm_address_t));
1478 t->reqid = ut->reqid;
1479 t->mode = ut->mode;
1480 t->share = ut->share;
1481 t->optional = ut->optional;
1482 t->aalgos = ut->aalgos;
1483 t->ealgos = ut->ealgos;
1484 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001485 /* If all masks are ~0, then we allow all algorithms. */
1486 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001487 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489}
1490
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001491static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1492{
Steffen Klassert732706a2017-12-08 08:07:25 +01001493 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001494 int i;
1495
1496 if (nr > XFRM_MAX_DEPTH)
1497 return -EINVAL;
1498
Steffen Klassert732706a2017-12-08 08:07:25 +01001499 prev_family = family;
1500
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001501 for (i = 0; i < nr; i++) {
1502 /* We never validated the ut->family value, so many
1503 * applications simply leave it at zero. The check was
1504 * never made and ut->family was ignored because all
1505 * templates could be assumed to have the same family as
1506 * the policy itself. Now that we will have ipv4-in-ipv6
1507 * and ipv6-in-ipv4 tunnels, this is no longer true.
1508 */
1509 if (!ut[i].family)
1510 ut[i].family = family;
1511
Florian Westphal35e6103862019-01-09 14:37:34 +01001512 switch (ut[i].mode) {
1513 case XFRM_MODE_TUNNEL:
1514 case XFRM_MODE_BEET:
1515 break;
1516 default:
1517 if (ut[i].family != prev_family)
1518 return -EINVAL;
1519 break;
1520 }
Sean Tranchetti32bf94f2018-09-19 13:54:56 -06001521 if (ut[i].mode >= XFRM_MODE_MAX)
1522 return -EINVAL;
1523
Steffen Klassert732706a2017-12-08 08:07:25 +01001524 prev_family = ut[i].family;
1525
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001526 switch (ut[i].family) {
1527 case AF_INET:
1528 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001529#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001530 case AF_INET6:
1531 break;
1532#endif
1533 default:
1534 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001535 }
Cong Wang6a53b752017-11-27 11:15:16 -08001536
Cong Wangdbb24832019-03-22 16:26:19 -07001537 if (!xfrm_id_proto_valid(ut[i].id.proto))
Cong Wang6a53b752017-11-27 11:15:16 -08001538 return -EINVAL;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001539 }
1540
1541 return 0;
1542}
1543
Thomas Graf5424f322007-08-22 14:01:33 -07001544static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Thomas Graf5424f322007-08-22 14:01:33 -07001546 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 if (!rt) {
1549 pol->xfrm_nr = 0;
1550 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001551 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1552 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001553 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001555 err = validate_tmpl(nr, utmpl, pol->family);
1556 if (err)
1557 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Thomas Graf5424f322007-08-22 14:01:33 -07001559 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
1561 return 0;
1562}
1563
Thomas Graf5424f322007-08-22 14:01:33 -07001564static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001565{
Thomas Graf5424f322007-08-22 14:01:33 -07001566 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001567 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001568 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001569 int err;
1570
1571 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001572 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001573 type = upt->type;
1574 }
1575
1576 err = verify_policy_type(type);
1577 if (err)
1578 return err;
1579
1580 *tp = type;
1581 return 0;
1582}
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1585{
1586 xp->priority = p->priority;
1587 xp->index = p->index;
1588 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1589 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1590 xp->action = p->action;
1591 xp->flags = p->flags;
1592 xp->family = p->sel.family;
1593 /* XXX xp->share = p->share; */
1594}
1595
1596static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1597{
Mathias Krause7b789832012-09-19 11:33:40 +00001598 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1600 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1601 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1602 p->priority = xp->priority;
1603 p->index = xp->index;
1604 p->sel.family = xp->family;
1605 p->dir = dir;
1606 p->action = xp->action;
1607 p->flags = xp->flags;
1608 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1609}
1610
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001611static 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 -07001612{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001613 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 int err;
1615
1616 if (!xp) {
1617 *errp = -ENOMEM;
1618 return NULL;
1619 }
1620
1621 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001622
Thomas Graf35a7aa02007-08-22 14:00:40 -07001623 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001624 if (err)
1625 goto error;
1626
Thomas Graf35a7aa02007-08-22 14:00:40 -07001627 if (!(err = copy_from_user_tmpl(xp, attrs)))
1628 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001629 if (err)
1630 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001632 xfrm_mark_get(attrs, &xp->mark);
1633
Steffen Klassert7e652642018-06-12 14:07:07 +02001634 if (attrs[XFRMA_IF_ID])
1635 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001638 error:
1639 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001640 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001641 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001642 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
Christoph Hellwig22e70052007-01-02 15:22:30 -08001645static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001646 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001648 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001649 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001651 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 int err;
1653 int excl;
1654
1655 err = verify_newpolicy_info(p);
1656 if (err)
1657 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001658 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001659 if (err)
1660 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001662 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (!xp)
1664 return err;
1665
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001666 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001667 * Aha! this is anti-netlink really i.e more pfkey derived
1668 * in netlink excl is a flag and you wouldnt need
1669 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1671 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001672 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001675 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 kfree(xp);
1677 return err;
1678 }
1679
Herbert Xuf60f6b82005-06-18 22:44:37 -07001680 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001681 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001682 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001683 km_policy_notify(xp, p->dir, &c);
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 xfrm_pol_put(xp);
1686
1687 return 0;
1688}
1689
1690static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1691{
1692 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1693 int i;
1694
1695 if (xp->xfrm_nr == 0)
1696 return 0;
1697
1698 for (i = 0; i < xp->xfrm_nr; i++) {
1699 struct xfrm_user_tmpl *up = &vec[i];
1700 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1701
Mathias Krause1f868402012-09-19 11:33:41 +00001702 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001704 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1706 up->reqid = kp->reqid;
1707 up->mode = kp->mode;
1708 up->share = kp->share;
1709 up->optional = kp->optional;
1710 up->aalgos = kp->aalgos;
1711 up->ealgos = kp->ealgos;
1712 up->calgos = kp->calgos;
1713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Thomas Grafc0144be2007-08-22 13:55:43 -07001715 return nla_put(skb, XFRMA_TMPL,
1716 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001717}
1718
Serge Hallyn0d681622006-07-24 23:30:44 -07001719static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1720{
1721 if (x->security) {
1722 return copy_sec_ctx(x->security, skb);
1723 }
1724 return 0;
1725}
1726
1727static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1728{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001729 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001730 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001731 return 0;
1732}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001733static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001734{
1735#ifdef CONFIG_XFRM_SUB_POLICY
1736 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1737#else
1738 return 0;
1739#endif
1740}
Serge Hallyn0d681622006-07-24 23:30:44 -07001741
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001742#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001743static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001744{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001745 struct xfrm_userpolicy_type upt;
1746
1747 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1748 memset(&upt, 0, sizeof(upt));
1749 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001750
Thomas Grafc0144be2007-08-22 13:55:43 -07001751 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001752}
1753
1754#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001755static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001756{
1757 return 0;
1758}
1759#endif
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1762{
1763 struct xfrm_dump_info *sp = ptr;
1764 struct xfrm_userpolicy_info *p;
1765 struct sk_buff *in_skb = sp->in_skb;
1766 struct sk_buff *skb = sp->out_skb;
1767 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001768 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Eric W. Biederman15e47302012-09-07 20:12:54 +00001770 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001771 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1772 if (nlh == NULL)
1773 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Thomas Graf7b67c852007-08-22 13:53:52 -07001775 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001777 err = copy_to_user_tmpl(xp, skb);
1778 if (!err)
1779 err = copy_to_user_sec_ctx(xp, skb);
1780 if (!err)
1781 err = copy_to_user_policy_type(xp->type, skb);
1782 if (!err)
1783 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001784 if (!err)
1785 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001786 if (err) {
1787 nlmsg_cancel(skb, nlh);
1788 return err;
1789 }
Thomas Graf98250692007-08-22 12:47:26 -07001790 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
Timo Teras4c563f72008-02-28 21:31:08 -08001794static int xfrm_dump_policy_done(struct netlink_callback *cb)
1795{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001796 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001797 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001798
Fan Du283bc9f2013-11-07 17:47:50 +08001799 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001800 return 0;
1801}
1802
Herbert Xu1137b5e2017-10-19 20:51:10 +08001803static int xfrm_dump_policy_start(struct netlink_callback *cb)
1804{
1805 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1806
1807 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1808
1809 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1810 return 0;
1811}
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1814{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001815 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001816 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 struct xfrm_dump_info info;
1818
1819 info.in_skb = cb->skb;
1820 info.out_skb = skb;
1821 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1822 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001823
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001824 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 return skb->len;
1827}
1828
1829static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1830 struct xfrm_policy *xp,
1831 int dir, u32 seq)
1832{
1833 struct xfrm_dump_info info;
1834 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Thomas Graf7deb2262007-08-22 13:57:39 -07001837 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 if (!skb)
1839 return ERR_PTR(-ENOMEM);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 info.in_skb = in_skb;
1842 info.out_skb = skb;
1843 info.nlmsg_seq = seq;
1844 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Mathias Krausec2546372012-09-14 09:58:32 +00001846 err = dump_one_policy(xp, dir, 0, &info);
1847 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001849 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851
1852 return skb;
1853}
1854
Christoph Hellwig22e70052007-01-02 15:22:30 -08001855static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001856 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001858 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 struct xfrm_policy *xp;
1860 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001861 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001863 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001865 struct xfrm_mark m;
1866 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001867 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Thomas Graf7b67c852007-08-22 13:53:52 -07001869 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1871
Thomas Graf35a7aa02007-08-22 14:00:40 -07001872 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001873 if (err)
1874 return err;
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 err = verify_policy_dir(p->dir);
1877 if (err)
1878 return err;
1879
Steffen Klassert7e652642018-06-12 14:07:07 +02001880 if (attrs[XFRMA_IF_ID])
1881 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02001884 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001885 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001886 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001887 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001888
Thomas Graf35a7aa02007-08-22 14:00:40 -07001889 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001890 if (err)
1891 return err;
1892
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001893 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001894 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001895 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001896
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001897 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001898 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001899 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001900 }
Steffen Klassert7e652642018-06-12 14:07:07 +02001901 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001902 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001903 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (xp == NULL)
1906 return -ENOENT;
1907
1908 if (!delete) {
1909 struct sk_buff *resp_skb;
1910
1911 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1912 if (IS_ERR(resp_skb)) {
1913 err = PTR_ERR(resp_skb);
1914 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001915 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001916 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001918 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001919 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001920
1921 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001922 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001923
Herbert Xue7443892005-06-18 22:44:18 -07001924 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001925 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001926 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001927 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001928 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001931out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001932 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return err;
1934}
1935
Christoph Hellwig22e70052007-01-02 15:22:30 -08001936static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001937 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001939 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001940 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001941 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001942 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Cong Wangf75a2802019-01-31 13:05:49 -08001944 err = xfrm_state_flush(net, p->proto, true, false);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001945 if (err) {
1946 if (err == -ESRCH) /* empty table */
1947 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001948 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001949 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001950 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001951 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001952 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001953 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001954 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001955 km_state_notify(NULL, &c);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 return 0;
1958}
1959
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001960static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001961{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001962 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001963 xfrm_replay_state_esn_len(x->replay_esn) :
1964 sizeof(struct xfrm_replay_state);
1965
Thomas Graf7deb2262007-08-22 13:57:39 -07001966 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001967 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001968 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001969 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001970 + nla_total_size(4) /* XFRM_AE_RTHR */
1971 + nla_total_size(4); /* XFRM_AE_ETHR */
1972}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001973
David S. Miller214e0052011-02-24 00:02:38 -05001974static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001975{
1976 struct xfrm_aevent_id *id;
1977 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001978 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001979
Eric W. Biederman15e47302012-09-07 20:12:54 +00001980 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001981 if (nlh == NULL)
1982 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001983
Thomas Graf7b67c852007-08-22 13:53:52 -07001984 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001985 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001986 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001987 id->sa_id.spi = x->id.spi;
1988 id->sa_id.family = x->props.family;
1989 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001990 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001991 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001992 id->flags = c->data.aevent;
1993
David S. Millerd0fde792012-03-29 04:02:26 -04001994 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001995 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1996 xfrm_replay_state_esn_len(x->replay_esn),
1997 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001998 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001999 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
2000 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04002001 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002002 if (err)
2003 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002004 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
2005 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002006 if (err)
2007 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002008
David S. Miller1d1e34d2012-06-27 21:57:03 -07002009 if (id->flags & XFRM_AE_RTHR) {
2010 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
2011 if (err)
2012 goto out_cancel;
2013 }
2014 if (id->flags & XFRM_AE_ETHR) {
2015 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
2016 x->replay_maxage * 10 / HZ);
2017 if (err)
2018 goto out_cancel;
2019 }
2020 err = xfrm_mark_put(skb, &x->mark);
2021 if (err)
2022 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002023
Steffen Klassert7e652642018-06-12 14:07:07 +02002024 err = xfrm_if_id_put(skb, x->if_id);
2025 if (err)
2026 goto out_cancel;
2027
Johannes Berg053c0952015-01-16 22:09:00 +01002028 nlmsg_end(skb, nlh);
2029 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002030
David S. Miller1d1e34d2012-06-27 21:57:03 -07002031out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002032 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002033 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002034}
2035
Christoph Hellwig22e70052007-01-02 15:22:30 -08002036static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002037 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002038{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002039 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002040 struct xfrm_state *x;
2041 struct sk_buff *r_skb;
2042 int err;
2043 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002044 u32 mark;
2045 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002046 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002047 struct xfrm_usersa_id *id = &p->sa_id;
2048
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002049 mark = xfrm_mark_get(attrs, &m);
2050
2051 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002052 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002053 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002054
2055 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2056 if (r_skb == NULL) {
2057 xfrm_state_put(x);
2058 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002059 }
2060
2061 /*
2062 * XXX: is this lock really needed - none of the other
2063 * gets lock (the concern is things getting updated
2064 * while we are still reading) - jhs
2065 */
2066 spin_lock_bh(&x->lock);
2067 c.data.aevent = p->flags;
2068 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002069 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002070
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002071 err = build_aevent(r_skb, x, &c);
2072 BUG_ON(err < 0);
2073
Eric W. Biederman15e47302012-09-07 20:12:54 +00002074 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002075 spin_unlock_bh(&x->lock);
2076 xfrm_state_put(x);
2077 return err;
2078}
2079
Christoph Hellwig22e70052007-01-02 15:22:30 -08002080static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002081 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002082{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002083 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002084 struct xfrm_state *x;
2085 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002086 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002087 u32 mark = 0;
2088 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002089 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002090 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002091 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002092 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002093 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2094 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002095
Michael Rossberg4e077232015-09-29 11:25:08 +02002096 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002097 return err;
2098
2099 /* pedantic mode - thou shalt sayeth replaceth */
2100 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2101 return err;
2102
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002103 mark = xfrm_mark_get(attrs, &m);
2104
2105 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 -08002106 if (x == NULL)
2107 return -ESRCH;
2108
2109 if (x->km.state != XFRM_STATE_VALID)
2110 goto out;
2111
Steffen Klassert4479ff72013-09-09 09:39:01 +02002112 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002113 if (err)
2114 goto out;
2115
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002116 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002117 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002118 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002119
2120 c.event = nlh->nlmsg_type;
2121 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002122 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002123 c.data.aevent = XFRM_AE_CU;
2124 km_state_notify(x, &c);
2125 err = 0;
2126out:
2127 xfrm_state_put(x);
2128 return err;
2129}
2130
Christoph Hellwig22e70052007-01-02 15:22:30 -08002131static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002132 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002134 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002135 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002136 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002137 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002138
Thomas Graf35a7aa02007-08-22 14:00:40 -07002139 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002140 if (err)
2141 return err;
2142
Tetsuo Handa2e710292014-04-22 21:48:30 +09002143 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002144 if (err) {
2145 if (err == -ESRCH) /* empty table */
2146 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002147 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002148 }
2149
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002150 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002151 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002152 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002153 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002154 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002155 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return 0;
2157}
2158
Christoph Hellwig22e70052007-01-02 15:22:30 -08002159static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002160 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002161{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002162 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002163 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002164 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002165 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002166 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002167 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002168 struct xfrm_mark m;
2169 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02002170 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002171
Thomas Graf35a7aa02007-08-22 14:00:40 -07002172 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002173 if (err)
2174 return err;
2175
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002176 err = verify_policy_dir(p->dir);
2177 if (err)
2178 return err;
2179
Steffen Klassert7e652642018-06-12 14:07:07 +02002180 if (attrs[XFRMA_IF_ID])
2181 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2182
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002183 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02002184 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002185 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002186 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002187 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002188
Thomas Graf35a7aa02007-08-22 14:00:40 -07002189 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002190 if (err)
2191 return err;
2192
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002193 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002194 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002195 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002196
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002197 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002198 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002199 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002200 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002201 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002202 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002203 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002204 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002205 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002206 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002207
Timo Teräsea2dea92010-03-31 00:17:05 +00002208 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002209 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002210
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002211 err = 0;
2212 if (up->hard) {
2213 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002214 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002215 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002216 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002217
2218out:
2219 xfrm_pol_put(xp);
2220 return err;
2221}
2222
Christoph Hellwig22e70052007-01-02 15:22:30 -08002223static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002224 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002225{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002226 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002227 struct xfrm_state *x;
2228 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002229 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002230 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002231 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002232 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002233
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002234 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002235
David S. Miller3a765aa2007-02-26 14:52:21 -08002236 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002237 if (x == NULL)
2238 return err;
2239
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002240 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002241 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002242 if (x->km.state != XFRM_STATE_VALID)
2243 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002244 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002245
Joy Latten161a09e2006-11-27 13:11:54 -06002246 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002247 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002248 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002249 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002250 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002251out:
2252 spin_unlock_bh(&x->lock);
2253 xfrm_state_put(x);
2254 return err;
2255}
2256
Christoph Hellwig22e70052007-01-02 15:22:30 -08002257static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002258 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002259{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002260 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002261 struct xfrm_policy *xp;
2262 struct xfrm_user_tmpl *ut;
2263 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002264 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002265 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002266
Thomas Graf7b67c852007-08-22 13:53:52 -07002267 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002268 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002269 int err = -ENOMEM;
2270
2271 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002272 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002273
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002274 xfrm_mark_get(attrs, &mark);
2275
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002276 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002277 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002278 goto free_state;
Xin Longa1a7e3a2020-02-09 21:16:38 +08002279 err = verify_sec_ctx_len(attrs);
2280 if (err)
2281 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002282
2283 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002284 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002285 if (!xp)
2286 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002287
2288 memcpy(&x->id, &ua->id, sizeof(ua->id));
2289 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2290 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002291 xp->mark.m = x->mark.m = mark.m;
2292 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002293 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002294 /* extract the templates and for each call km_key */
2295 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2296 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2297 memcpy(&x->id, &t->id, sizeof(x->id));
2298 x->props.mode = t->mode;
2299 x->props.reqid = t->reqid;
2300 x->props.family = ut->family;
2301 t->aalgos = ua->aalgos;
2302 t->ealgos = ua->ealgos;
2303 t->calgos = ua->calgos;
2304 err = km_query(x, t, xp);
2305
2306 }
2307
Mathias Krause4a135e52018-11-21 21:09:23 +01002308 xfrm_state_free(x);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002309 kfree(xp);
2310
2311 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002312
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002313free_state:
Mathias Krause4a135e52018-11-21 21:09:23 +01002314 xfrm_state_free(x);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002315nomem:
2316 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002317}
2318
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002319#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002320static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002321 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002322 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002323{
Thomas Graf5424f322007-08-22 14:01:33 -07002324 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002325 struct xfrm_user_migrate *um;
2326 int i, num_migrate;
2327
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002328 if (k != NULL) {
2329 struct xfrm_user_kmaddress *uk;
2330
2331 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2332 memcpy(&k->local, &uk->local, sizeof(k->local));
2333 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2334 k->family = uk->family;
2335 k->reserved = uk->reserved;
2336 }
2337
Thomas Graf5424f322007-08-22 14:01:33 -07002338 um = nla_data(rt);
2339 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002340
2341 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2342 return -EINVAL;
2343
2344 for (i = 0; i < num_migrate; i++, um++, ma++) {
2345 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2346 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2347 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2348 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2349
2350 ma->proto = um->proto;
2351 ma->mode = um->mode;
2352 ma->reqid = um->reqid;
2353
2354 ma->old_family = um->old_family;
2355 ma->new_family = um->new_family;
2356 }
2357
2358 *num = i;
2359 return 0;
2360}
2361
2362static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002363 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364{
Thomas Graf7b67c852007-08-22 13:53:52 -07002365 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002366 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002367 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002368 u8 type;
2369 int err;
2370 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002371 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002372 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002373
Thomas Graf35a7aa02007-08-22 14:00:40 -07002374 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002375 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002376
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002377 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2378
Thomas Graf5424f322007-08-22 14:01:33 -07002379 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002380 if (err)
2381 return err;
2382
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002383 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002384 if (err)
2385 return err;
2386
2387 if (!n)
2388 return 0;
2389
Antony Antony4ab47d42017-06-06 12:12:13 +02002390 if (attrs[XFRMA_ENCAP]) {
2391 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2392 sizeof(*encap), GFP_KERNEL);
2393 if (!encap)
2394 return 0;
2395 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002396
Antony Antony4ab47d42017-06-06 12:12:13 +02002397 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2398
2399 kfree(encap);
2400
2401 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002402}
2403#else
2404static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002405 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002406{
2407 return -ENOPROTOOPT;
2408}
2409#endif
2410
2411#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002412static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002413{
2414 struct xfrm_user_migrate um;
2415
2416 memset(&um, 0, sizeof(um));
2417 um.proto = m->proto;
2418 um.mode = m->mode;
2419 um.reqid = m->reqid;
2420 um.old_family = m->old_family;
2421 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2422 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2423 um.new_family = m->new_family;
2424 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2425 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2426
Thomas Grafc0144be2007-08-22 13:55:43 -07002427 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002428}
2429
David S. Miller183cad12011-02-24 00:28:01 -05002430static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002431{
2432 struct xfrm_user_kmaddress uk;
2433
2434 memset(&uk, 0, sizeof(uk));
2435 uk.family = k->family;
2436 uk.reserved = k->reserved;
2437 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002438 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002439
2440 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2441}
2442
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002443static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2444 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002445{
2446 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002447 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002448 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002449 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2450 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002451}
2452
David S. Miller183cad12011-02-24 00:28:01 -05002453static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2454 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002455 const struct xfrm_selector *sel,
2456 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002457{
David S. Miller183cad12011-02-24 00:28:01 -05002458 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002459 struct xfrm_userpolicy_id *pol_id;
2460 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002461 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002462
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002463 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2464 if (nlh == NULL)
2465 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002466
Thomas Graf7b67c852007-08-22 13:53:52 -07002467 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002468 /* copy data from selector, dir, and type to the pol_id */
2469 memset(pol_id, 0, sizeof(*pol_id));
2470 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2471 pol_id->dir = dir;
2472
David S. Miller1d1e34d2012-06-27 21:57:03 -07002473 if (k != NULL) {
2474 err = copy_to_user_kmaddress(k, skb);
2475 if (err)
2476 goto out_cancel;
2477 }
Antony Antony8bafd732017-06-06 12:12:14 +02002478 if (encap) {
2479 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2480 if (err)
2481 goto out_cancel;
2482 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002483 err = copy_to_user_policy_type(type, skb);
2484 if (err)
2485 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002486 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002487 err = copy_to_user_migrate(mp, skb);
2488 if (err)
2489 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002490 }
2491
Johannes Berg053c0952015-01-16 22:09:00 +01002492 nlmsg_end(skb, nlh);
2493 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002494
2495out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002496 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002497 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002498}
2499
David S. Miller183cad12011-02-24 00:28:01 -05002500static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2501 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002502 const struct xfrm_kmaddress *k,
2503 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002504{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002505 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002506 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002507 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002508
Antony Antony8bafd732017-06-06 12:12:14 +02002509 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2510 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002511 if (skb == NULL)
2512 return -ENOMEM;
2513
2514 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002515 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2516 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002517
Michal Kubecek21ee5432014-06-03 10:26:06 +02002518 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002519}
2520#else
David S. Miller183cad12011-02-24 00:28:01 -05002521static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2522 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002523 const struct xfrm_kmaddress *k,
2524 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002525{
2526 return -ENOPROTOOPT;
2527}
2528#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002529
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002530#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002531
2532static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002533 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002534 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2535 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2536 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2537 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2538 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2539 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002540 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002541 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002542 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002543 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002544 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002545 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002546 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002547 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2548 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002549 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002550 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002551 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002552 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002553 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554};
2555
Thomas Graf492b5582005-05-03 14:26:40 -07002556#undef XMSGSIZE
2557
Thomas Grafcf5cb792007-08-22 13:59:04 -07002558static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002559 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2560 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2561 [XFRMA_LASTUSED] = { .type = NLA_U64},
2562 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002563 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002564 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2565 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2566 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2567 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2568 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2569 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2570 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2571 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2572 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2573 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2574 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2575 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2576 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2577 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002578 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002579 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002580 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002581 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002582 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002583 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002584 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002585 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002586 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2587 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002588 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002589};
2590
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002591static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2592 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2593 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2594};
2595
Mathias Krause05600a72013-02-24 14:10:27 +01002596static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002597 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002598 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002600 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002601 const struct nla_policy *nla_pol;
2602 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002603} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2604 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2605 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2606 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002607 .dump = xfrm_dump_sa,
2608 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002609 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2610 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2611 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002612 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002613 .dump = xfrm_dump_policy,
2614 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002615 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002616 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002617 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002618 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2619 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002620 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002621 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2622 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002623 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2624 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002625 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002626 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002627 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2628 .nla_pol = xfrma_spd_policy,
2629 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002630 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631};
2632
Johannes Berg2d4bc932017-04-12 14:34:04 +02002633static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2634 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002636 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002637 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002638 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002639 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002641 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002642 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002646 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
2648 type -= XFRM_MSG_BASE;
2649 link = &xfrm_dispatch[type];
2650
2651 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002652 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002653 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Thomas Graf492b5582005-05-03 14:26:40 -07002655 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2656 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002657 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002659 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002661 {
2662 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002663 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002664 .dump = link->dump,
2665 .done = link->done,
2666 };
2667 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 }
2670
Johannes Berg8cb08172019-04-26 14:07:28 +02002671 err = nlmsg_parse_deprecated(nlh, xfrm_msg_min[type], attrs,
2672 link->nla_max ? : XFRMA_MAX,
2673 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002674 if (err < 0)
2675 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002678 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Thomas Graf5424f322007-08-22 14:01:33 -07002680 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681}
2682
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002683static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684{
Fan Du283bc9f2013-11-07 17:47:50 +08002685 struct net *net = sock_net(skb->sk);
2686
2687 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002688 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002689 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002692static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002693{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002694 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2695 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002696}
2697
David S. Miller214e0052011-02-24 00:02:38 -05002698static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699{
2700 struct xfrm_user_expire *ue;
2701 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002702 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Eric W. Biederman15e47302012-09-07 20:12:54 +00002704 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002705 if (nlh == NULL)
2706 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Thomas Graf7b67c852007-08-22 13:53:52 -07002708 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002710 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002711 /* clear the padding bytes */
2712 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
David S. Miller1d1e34d2012-06-27 21:57:03 -07002714 err = xfrm_mark_put(skb, &x->mark);
2715 if (err)
2716 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002717
Steffen Klassert7e652642018-06-12 14:07:07 +02002718 err = xfrm_if_id_put(skb, x->if_id);
2719 if (err)
2720 return err;
2721
Johannes Berg053c0952015-01-16 22:09:00 +01002722 nlmsg_end(skb, nlh);
2723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
David S. Miller214e0052011-02-24 00:02:38 -05002726static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002728 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 struct sk_buff *skb;
2730
Thomas Graf7deb2262007-08-22 13:57:39 -07002731 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 if (skb == NULL)
2733 return -ENOMEM;
2734
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002735 if (build_expire(skb, x, c) < 0) {
2736 kfree_skb(skb);
2737 return -EMSGSIZE;
2738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Michal Kubecek21ee5432014-06-03 10:26:06 +02002740 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
David S. Miller214e0052011-02-24 00:02:38 -05002743static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002744{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002745 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002746 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002747 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002748
Steffen Klassertd8647b72011-03-08 00:10:27 +00002749 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002750 if (skb == NULL)
2751 return -ENOMEM;
2752
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002753 err = build_aevent(skb, x, c);
2754 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002755
Michal Kubecek21ee5432014-06-03 10:26:06 +02002756 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002757}
2758
David S. Miller214e0052011-02-24 00:02:38 -05002759static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002760{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002761 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762 struct xfrm_usersa_flush *p;
2763 struct nlmsghdr *nlh;
2764 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002765 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766
Thomas Graf7deb2262007-08-22 13:57:39 -07002767 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002768 if (skb == NULL)
2769 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002770
Eric W. Biederman15e47302012-09-07 20:12:54 +00002771 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002772 if (nlh == NULL) {
2773 kfree_skb(skb);
2774 return -EMSGSIZE;
2775 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002776
Thomas Graf7b67c852007-08-22 13:53:52 -07002777 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002778 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002779
Thomas Graf98250692007-08-22 12:47:26 -07002780 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002781
Michal Kubecek21ee5432014-06-03 10:26:06 +02002782 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002783}
2784
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002785static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002786{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002787 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002788 if (x->aead)
2789 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002790 if (x->aalg) {
2791 l += nla_total_size(sizeof(struct xfrm_algo) +
2792 (x->aalg->alg_key_len + 7) / 8);
2793 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2794 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002795 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002796 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002797 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002798 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002799 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002800 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002801 if (x->tfcpad)
2802 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002803 if (x->replay_esn)
2804 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002805 else
2806 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002807 if (x->security)
2808 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2809 x->security->ctx_len);
2810 if (x->coaddr)
2811 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002812 if (x->props.extra_flags)
2813 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002814 if (x->xso.dev)
2815 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002816 if (x->props.smark.v | x->props.smark.m) {
2817 l += nla_total_size(sizeof(x->props.smark.v));
2818 l += nla_total_size(sizeof(x->props.smark.m));
2819 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002820 if (x->if_id)
2821 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002822
Herbert Xud26f3982007-11-13 21:47:08 -08002823 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002824 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002825
2826 return l;
2827}
2828
David S. Miller214e0052011-02-24 00:02:38 -05002829static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002830{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002831 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002832 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002833 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002834 struct nlmsghdr *nlh;
2835 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002836 unsigned int len = xfrm_sa_len(x);
2837 unsigned int headlen;
2838 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002839
2840 headlen = sizeof(*p);
2841 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002842 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002843 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002844 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002845 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002846 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002847
Thomas Graf7deb2262007-08-22 13:57:39 -07002848 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002849 if (skb == NULL)
2850 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002851
Eric W. Biederman15e47302012-09-07 20:12:54 +00002852 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002853 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002854 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002855 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002856
Thomas Graf7b67c852007-08-22 13:53:52 -07002857 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002858 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002859 struct nlattr *attr;
2860
Thomas Graf7b67c852007-08-22 13:53:52 -07002861 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002862 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002863 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2864 id->spi = x->id.spi;
2865 id->family = x->props.family;
2866 id->proto = x->id.proto;
2867
Thomas Grafc0144be2007-08-22 13:55:43 -07002868 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002869 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002870 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002871 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002872
2873 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002874 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002875 err = copy_to_user_state_extra(x, p, skb);
2876 if (err)
2877 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002878
Thomas Graf98250692007-08-22 12:47:26 -07002879 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002880
Michal Kubecek21ee5432014-06-03 10:26:06 +02002881 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882
David S. Miller1d1e34d2012-06-27 21:57:03 -07002883out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002884 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002885 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002886}
2887
David S. Miller214e0052011-02-24 00:02:38 -05002888static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002889{
2890
2891 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002892 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002893 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002894 case XFRM_MSG_NEWAE:
2895 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002896 case XFRM_MSG_DELSA:
2897 case XFRM_MSG_UPDSA:
2898 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002899 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002900 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002901 return xfrm_notify_sa_flush(c);
2902 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002903 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2904 c->event);
2905 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002906 }
2907
2908 return 0;
2909
2910}
2911
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002912static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2913 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002914{
2915 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2916 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002917 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002918 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2919 + userpolicy_type_attrsize();
2920}
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002923 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002925 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 struct xfrm_user_acquire *ua;
2927 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002928 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002930 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2931 if (nlh == NULL)
2932 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Thomas Graf7b67c852007-08-22 13:53:52 -07002934 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 memcpy(&ua->id, &x->id, sizeof(ua->id));
2936 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2937 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002938 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 ua->aalgos = xt->aalgos;
2940 ua->ealgos = xt->ealgos;
2941 ua->calgos = xt->calgos;
2942 ua->seq = x->km.seq = seq;
2943
David S. Miller1d1e34d2012-06-27 21:57:03 -07002944 err = copy_to_user_tmpl(xp, skb);
2945 if (!err)
2946 err = copy_to_user_state_sec_ctx(x, skb);
2947 if (!err)
2948 err = copy_to_user_policy_type(xp->type, skb);
2949 if (!err)
2950 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02002951 if (!err)
2952 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002953 if (err) {
2954 nlmsg_cancel(skb, nlh);
2955 return err;
2956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Johannes Berg053c0952015-01-16 22:09:00 +01002958 nlmsg_end(skb, nlh);
2959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
2962static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002963 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002965 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002967 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Thomas Graf7deb2262007-08-22 13:57:39 -07002969 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 if (skb == NULL)
2971 return -ENOMEM;
2972
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002973 err = build_acquire(skb, x, xt, xp);
2974 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Michal Kubecek21ee5432014-06-03 10:26:06 +02002976 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977}
2978
2979/* User gives us xfrm_user_policy_info followed by an array of 0
2980 * or more templates.
2981 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002982static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 u8 *data, int len, int *dir)
2984{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002985 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2987 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2988 struct xfrm_policy *xp;
2989 int nr;
2990
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002991 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 case AF_INET:
2993 if (opt != IP_XFRM_POLICY) {
2994 *dir = -EOPNOTSUPP;
2995 return NULL;
2996 }
2997 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002998#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 case AF_INET6:
3000 if (opt != IPV6_XFRM_POLICY) {
3001 *dir = -EOPNOTSUPP;
3002 return NULL;
3003 }
3004 break;
3005#endif
3006 default:
3007 *dir = -EINVAL;
3008 return NULL;
3009 }
3010
3011 *dir = -EINVAL;
3012
3013 if (len < sizeof(*p) ||
3014 verify_newpolicy_info(p))
3015 return NULL;
3016
3017 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08003018 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 return NULL;
3020
Herbert Xua4f1bac2005-07-26 15:43:17 -07003021 if (p->dir > XFRM_POLICY_OUT)
3022 return NULL;
3023
Herbert Xu2f09a4d2010-08-14 22:38:09 -07003024 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 if (xp == NULL) {
3026 *dir = -ENOBUFS;
3027 return NULL;
3028 }
3029
3030 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07003031 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 copy_templates(xp, ut, nr);
3033
3034 *dir = p->dir;
3035
3036 return xp;
3037}
3038
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003039static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003040{
3041 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3042 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3043 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003044 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003045 + userpolicy_type_attrsize();
3046}
3047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003049 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050{
3051 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003052 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003053 struct nlmsghdr *nlh;
3054 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Eric W. Biederman15e47302012-09-07 20:12:54 +00003056 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003057 if (nlh == NULL)
3058 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Thomas Graf7b67c852007-08-22 13:53:52 -07003060 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003062 err = copy_to_user_tmpl(xp, skb);
3063 if (!err)
3064 err = copy_to_user_sec_ctx(xp, skb);
3065 if (!err)
3066 err = copy_to_user_policy_type(xp->type, skb);
3067 if (!err)
3068 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003069 if (!err)
3070 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003071 if (err) {
3072 nlmsg_cancel(skb, nlh);
3073 return err;
3074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 upe->hard = !!hard;
3076
Johannes Berg053c0952015-01-16 22:09:00 +01003077 nlmsg_end(skb, nlh);
3078 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
David S. Miller214e0052011-02-24 00:02:38 -05003081static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003083 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003085 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Thomas Graf7deb2262007-08-22 13:57:39 -07003087 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 if (skb == NULL)
3089 return -ENOMEM;
3090
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003091 err = build_polexpire(skb, xp, dir, c);
3092 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Michal Kubecek21ee5432014-06-03 10:26:06 +02003094 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095}
3096
David S. Miller214e0052011-02-24 00:02:38 -05003097static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003098{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003099 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003100 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003101 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003102 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003103 struct nlmsghdr *nlh;
3104 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003105 unsigned int headlen;
3106 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003107
3108 headlen = sizeof(*p);
3109 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003110 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003111 headlen = sizeof(*id);
3112 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003113 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003114 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003115 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003116
Thomas Graf7deb2262007-08-22 13:57:39 -07003117 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003118 if (skb == NULL)
3119 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003120
Eric W. Biederman15e47302012-09-07 20:12:54 +00003121 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003122 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003123 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003124 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003125
Thomas Graf7b67c852007-08-22 13:53:52 -07003126 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003127 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003128 struct nlattr *attr;
3129
Thomas Graf7b67c852007-08-22 13:53:52 -07003130 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003131 memset(id, 0, sizeof(*id));
3132 id->dir = dir;
3133 if (c->data.byid)
3134 id->index = xp->index;
3135 else
3136 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3137
Thomas Grafc0144be2007-08-22 13:55:43 -07003138 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003139 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003140 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003141 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003142
3143 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003144 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003145
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003146 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003147 err = copy_to_user_tmpl(xp, skb);
3148 if (!err)
3149 err = copy_to_user_policy_type(xp->type, skb);
3150 if (!err)
3151 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003152 if (!err)
3153 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003154 if (err)
3155 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003156
Thomas Graf98250692007-08-22 12:47:26 -07003157 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003158
Michal Kubecek21ee5432014-06-03 10:26:06 +02003159 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003160
David S. Miller1d1e34d2012-06-27 21:57:03 -07003161out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003162 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003163 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003164}
3165
David S. Miller214e0052011-02-24 00:02:38 -05003166static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003167{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003168 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003169 struct nlmsghdr *nlh;
3170 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003171 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003172
Thomas Graf7deb2262007-08-22 13:57:39 -07003173 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003174 if (skb == NULL)
3175 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003176
Eric W. Biederman15e47302012-09-07 20:12:54 +00003177 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003178 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003179 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003180 goto out_free_skb;
3181 err = copy_to_user_policy_type(c->data.type, skb);
3182 if (err)
3183 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003184
Thomas Graf98250692007-08-22 12:47:26 -07003185 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003186
Michal Kubecek21ee5432014-06-03 10:26:06 +02003187 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003188
David S. Miller1d1e34d2012-06-27 21:57:03 -07003189out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003190 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003191 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003192}
3193
David S. Miller214e0052011-02-24 00:02:38 -05003194static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003195{
3196
3197 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003198 case XFRM_MSG_NEWPOLICY:
3199 case XFRM_MSG_UPDPOLICY:
3200 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003201 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003202 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003203 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003204 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003205 return xfrm_exp_policy_notify(xp, dir, c);
3206 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003207 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3208 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003209 }
3210
3211 return 0;
3212
3213}
3214
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003215static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003216{
3217 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3218}
3219
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003220static int build_report(struct sk_buff *skb, u8 proto,
3221 struct xfrm_selector *sel, xfrm_address_t *addr)
3222{
3223 struct xfrm_user_report *ur;
3224 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003225
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003226 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3227 if (nlh == NULL)
3228 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003229
Thomas Graf7b67c852007-08-22 13:53:52 -07003230 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003231 ur->proto = proto;
3232 memcpy(&ur->sel, sel, sizeof(ur->sel));
3233
David S. Miller1d1e34d2012-06-27 21:57:03 -07003234 if (addr) {
3235 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3236 if (err) {
3237 nlmsg_cancel(skb, nlh);
3238 return err;
3239 }
3240 }
Johannes Berg053c0952015-01-16 22:09:00 +01003241 nlmsg_end(skb, nlh);
3242 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003243}
3244
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003245static int xfrm_send_report(struct net *net, u8 proto,
3246 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003247{
3248 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003249 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003250
Thomas Graf7deb2262007-08-22 13:57:39 -07003251 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003252 if (skb == NULL)
3253 return -ENOMEM;
3254
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003255 err = build_report(skb, proto, sel, addr);
3256 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003257
Michal Kubecek21ee5432014-06-03 10:26:06 +02003258 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003259}
3260
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003261static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003262{
3263 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3264}
3265
3266static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3267 xfrm_address_t *new_saddr, __be16 new_sport)
3268{
3269 struct xfrm_user_mapping *um;
3270 struct nlmsghdr *nlh;
3271
3272 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3273 if (nlh == NULL)
3274 return -EMSGSIZE;
3275
3276 um = nlmsg_data(nlh);
3277
3278 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3279 um->id.spi = x->id.spi;
3280 um->id.family = x->props.family;
3281 um->id.proto = x->id.proto;
3282 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3283 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3284 um->new_sport = new_sport;
3285 um->old_sport = x->encap->encap_sport;
3286 um->reqid = x->props.reqid;
3287
Johannes Berg053c0952015-01-16 22:09:00 +01003288 nlmsg_end(skb, nlh);
3289 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003290}
3291
3292static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3293 __be16 sport)
3294{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003295 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003296 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003297 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003298
3299 if (x->id.proto != IPPROTO_ESP)
3300 return -EINVAL;
3301
3302 if (!x->encap)
3303 return -EINVAL;
3304
3305 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3306 if (skb == NULL)
3307 return -ENOMEM;
3308
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003309 err = build_mapping(skb, x, ipaddr, sport);
3310 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003311
Michal Kubecek21ee5432014-06-03 10:26:06 +02003312 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003313}
3314
Horia Geanta0f245582014-02-12 16:20:06 +02003315static bool xfrm_is_alive(const struct km_event *c)
3316{
3317 return (bool)xfrm_acquire_is_on(c->net);
3318}
3319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 .notify = xfrm_send_state_notify,
3322 .acquire = xfrm_send_acquire,
3323 .compile_policy = xfrm_compile_policy,
3324 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003325 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003326 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003327 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003328 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329};
3330
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003331static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332{
Patrick McHardybe336902006-03-20 22:40:54 -08003333 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003334 struct netlink_kernel_cfg cfg = {
3335 .groups = XFRMNLGRP_MAX,
3336 .input = xfrm_netlink_rcv,
3337 };
Patrick McHardybe336902006-03-20 22:40:54 -08003338
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003339 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003340 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003342 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003343 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 return 0;
3345}
3346
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003347static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003348{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003349 struct net *net;
3350 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003351 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003352 synchronize_net();
3353 list_for_each_entry(net, net_exit_list, exit_list)
3354 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003355}
3356
3357static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003358 .init = xfrm_user_net_init,
3359 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003360};
3361
3362static int __init xfrm_user_init(void)
3363{
3364 int rv;
3365
3366 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3367
3368 rv = register_pernet_subsys(&xfrm_user_net_ops);
3369 if (rv < 0)
3370 return rv;
3371 rv = xfrm_register_km(&netlink_mgr);
3372 if (rv < 0)
3373 unregister_pernet_subsys(&xfrm_user_net_ops);
3374 return rv;
3375}
3376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377static void __exit xfrm_user_exit(void)
3378{
3379 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003380 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381}
3382
3383module_init(xfrm_user_init);
3384module_exit(xfrm_user_exit);
3385MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003386MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);