blob: b88ba45ff1ace6ff986cf214c9fd8d1b8730261d [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);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700113 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800114 return -EINVAL;
115
116 return 0;
117}
118
Steffen Klassertd8647b72011-03-08 00:10:27 +0000119static inline int verify_replay(struct xfrm_usersa_info *p,
120 struct nlattr **attrs)
121{
122 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000123 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000124
125 if (!rt)
Florian Westphald97ca5d2018-02-12 14:42:01 +0100126 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
127
128 rs = nla_data(rt);
129
130 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
131 return -EINVAL;
132
133 if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) &&
134 nla_len(rt) != sizeof(*rs))
135 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000136
Fan Du01714102014-01-18 09:54:28 +0800137 /* As only ESP and AH support ESN feature. */
138 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000139 return -EINVAL;
140
Steffen Klassertd8647b72011-03-08 00:10:27 +0000141 if (p->replay_window != 0)
142 return -EINVAL;
143
144 return 0;
145}
Trent Jaegerdf718372005-12-13 23:12:27 -0800146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700148 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 int err;
151
152 err = -EINVAL;
153 switch (p->family) {
154 case AF_INET:
Anirudh Guptab38ff402019-05-21 20:59:47 +0530155 break;
156
157 case AF_INET6:
158#if IS_ENABLED(CONFIG_IPV6)
159 break;
160#else
161 err = -EAFNOSUPPORT;
162 goto out;
163#endif
164
165 default:
166 goto out;
167 }
168
169 switch (p->sel.family) {
Nicolas Dichtelb8d6d002019-06-14 11:13:55 +0200170 case AF_UNSPEC:
171 break;
172
Anirudh Guptab38ff402019-05-21 20:59:47 +0530173 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +0200174 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
175 goto out;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 break;
178
179 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000180#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +0200181 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
182 goto out;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 break;
185#else
186 err = -EAFNOSUPPORT;
187 goto out;
188#endif
189
190 default:
191 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 err = -EINVAL;
195 switch (p->id.proto) {
196 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000197 if ((!attrs[XFRMA_ALG_AUTH] &&
198 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800199 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700200 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000201 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200202 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 goto out;
204 break;
205
206 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800207 if (attrs[XFRMA_ALG_COMP])
208 goto out;
209 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000210 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800211 !attrs[XFRMA_ALG_CRYPT] &&
212 !attrs[XFRMA_ALG_AEAD])
213 goto out;
214 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000215 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800216 attrs[XFRMA_ALG_CRYPT]) &&
217 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000219 if (attrs[XFRMA_TFCPAD] &&
220 p->mode != XFRM_MODE_TUNNEL)
221 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 break;
223
224 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800226 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700227 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000228 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000229 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200230 attrs[XFRMA_TFCPAD] ||
231 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto out;
233 break;
234
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000235#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700236 case IPPROTO_DSTOPTS:
237 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700238 if (attrs[XFRMA_ALG_COMP] ||
239 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000240 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800241 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 attrs[XFRMA_ALG_CRYPT] ||
243 attrs[XFRMA_ENCAP] ||
244 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000245 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700246 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700247 goto out;
248 break;
249#endif
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 default:
252 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Herbert Xu1a6509d2008-01-28 19:37:29 -0800255 if ((err = verify_aead(attrs)))
256 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000257 if ((err = verify_auth_trunc(attrs)))
258 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700259 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700261 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700263 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700265 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800266 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000267 if ((err = verify_replay(p, attrs)))
268 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 err = -EINVAL;
271 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700272 case XFRM_MODE_TRANSPORT:
273 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700274 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a69452c2006-10-03 23:47:05 -0700275 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 break;
277
278 default:
279 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 err = 0;
283
284out:
285 return err;
286}
287
288static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800289 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700290 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct xfrm_algo *p, *ualg;
293 struct xfrm_algo_desc *algo;
294
295 if (!rta)
296 return 0;
297
Thomas Graf5424f322007-08-22 14:01:33 -0700298 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 algo = get_byname(ualg->alg_name, 1);
301 if (!algo)
302 return -ENOSYS;
303 *props = algo->desc.sadb_alg_id;
304
Eric Dumazet0f99be02008-01-08 23:39:06 -0800305 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (!p)
307 return -ENOMEM;
308
Herbert Xu04ff1262006-08-13 08:50:00 +1000309 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 *algpp = p;
311 return 0;
312}
313
Herbert Xu69b01372015-05-27 16:03:45 +0800314static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
315{
316 struct xfrm_algo *p, *ualg;
317 struct xfrm_algo_desc *algo;
318
319 if (!rta)
320 return 0;
321
322 ualg = nla_data(rta);
323
324 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
325 if (!algo)
326 return -ENOSYS;
327 x->props.ealgo = algo->desc.sadb_alg_id;
328
329 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
330 if (!p)
331 return -ENOMEM;
332
333 strcpy(p->alg_name, algo->name);
334 x->ealg = p;
335 x->geniv = algo->uinfo.encr.geniv;
336 return 0;
337}
338
Martin Willi4447bb32009-11-25 00:29:52 +0000339static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
340 struct nlattr *rta)
341{
342 struct xfrm_algo *ualg;
343 struct xfrm_algo_auth *p;
344 struct xfrm_algo_desc *algo;
345
346 if (!rta)
347 return 0;
348
349 ualg = nla_data(rta);
350
351 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
352 if (!algo)
353 return -ENOSYS;
354 *props = algo->desc.sadb_alg_id;
355
356 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
357 if (!p)
358 return -ENOMEM;
359
360 strcpy(p->alg_name, algo->name);
361 p->alg_key_len = ualg->alg_key_len;
362 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
363 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
364
365 *algpp = p;
366 return 0;
367}
368
369static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
370 struct nlattr *rta)
371{
372 struct xfrm_algo_auth *p, *ualg;
373 struct xfrm_algo_desc *algo;
374
375 if (!rta)
376 return 0;
377
378 ualg = nla_data(rta);
379
380 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
381 if (!algo)
382 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800383 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000384 return -EINVAL;
385 *props = algo->desc.sadb_alg_id;
386
387 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
388 if (!p)
389 return -ENOMEM;
390
391 strcpy(p->alg_name, algo->name);
392 if (!p->alg_trunc_len)
393 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
394
395 *algpp = p;
396 return 0;
397}
398
Herbert Xu69b01372015-05-27 16:03:45 +0800399static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800400{
401 struct xfrm_algo_aead *p, *ualg;
402 struct xfrm_algo_desc *algo;
403
404 if (!rta)
405 return 0;
406
407 ualg = nla_data(rta);
408
409 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
410 if (!algo)
411 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800412 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800413
414 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
415 if (!p)
416 return -ENOMEM;
417
418 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800419 x->aead = p;
420 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800421 return 0;
422}
423
Steffen Klasserte2b19122011-03-28 19:47:30 +0000424static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
425 struct nlattr *rp)
426{
427 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300428 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000429
430 if (!replay_esn || !rp)
431 return 0;
432
433 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000434 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000435
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000436 /* Check the overall length and the internal bitmap length to avoid
437 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300438 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000439 xfrm_replay_state_esn_len(replay_esn) != ulen ||
440 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000441 return -EINVAL;
442
Andy Whitcroft677e8062017-03-22 07:29:31 +0000443 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
444 return -EINVAL;
445
Steffen Klasserte2b19122011-03-28 19:47:30 +0000446 return 0;
447}
448
Steffen Klassertd8647b72011-03-08 00:10:27 +0000449static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
450 struct xfrm_replay_state_esn **preplay_esn,
451 struct nlattr *rta)
452{
453 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300454 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000455
456 if (!rta)
457 return 0;
458
459 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000460 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300461 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000462
Mathias Krauseecd79182012-09-20 10:01:49 +0000463 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000464 if (!p)
465 return -ENOMEM;
466
Mathias Krauseecd79182012-09-20 10:01:49 +0000467 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000468 if (!pp) {
469 kfree(p);
470 return -ENOMEM;
471 }
472
Mathias Krauseecd79182012-09-20 10:01:49 +0000473 memcpy(p, up, ulen);
474 memcpy(pp, up, ulen);
475
Steffen Klassertd8647b72011-03-08 00:10:27 +0000476 *replay_esn = p;
477 *preplay_esn = pp;
478
479 return 0;
480}
481
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300482static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800483{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300484 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800485
486 if (xfrm_ctx) {
487 len += sizeof(struct xfrm_user_sec_ctx);
488 len += xfrm_ctx->ctx_len;
489 }
490 return len;
491}
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
494{
495 memcpy(&x->id, &p->id, sizeof(x->id));
496 memcpy(&x->sel, &p->sel, sizeof(x->sel));
497 memcpy(&x->lft, &p->lft, sizeof(x->lft));
498 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800499 x->props.replay_window = min_t(unsigned int, p->replay_window,
500 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 x->props.reqid = p->reqid;
502 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700503 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700505
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700506 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700507 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800510/*
511 * someday when pfkey also has support, we could have the code
512 * somehow made shareable and move it to xfrm_state.c - JHS
513 *
514*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000515static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
516 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800517{
Thomas Graf5424f322007-08-22 14:01:33 -0700518 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000519 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700520 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
521 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
522 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800523
Steffen Klassertd8647b72011-03-08 00:10:27 +0000524 if (re) {
525 struct xfrm_replay_state_esn *replay_esn;
526 replay_esn = nla_data(re);
527 memcpy(x->replay_esn, replay_esn,
528 xfrm_replay_state_esn_len(replay_esn));
529 memcpy(x->preplay_esn, replay_esn,
530 xfrm_replay_state_esn_len(replay_esn));
531 }
532
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800533 if (rp) {
534 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700535 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800536 memcpy(&x->replay, replay, sizeof(*replay));
537 memcpy(&x->preplay, replay, sizeof(*replay));
538 }
539
540 if (lt) {
541 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700542 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800543 x->curlft.bytes = ltime->bytes;
544 x->curlft.packets = ltime->packets;
545 x->curlft.add_time = ltime->add_time;
546 x->curlft.use_time = ltime->use_time;
547 }
548
Thomas Grafcf5cb792007-08-22 13:59:04 -0700549 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700550 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800551
Thomas Grafcf5cb792007-08-22 13:59:04 -0700552 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700553 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800554}
555
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200556static void xfrm_smark_init(struct nlattr **attrs, struct xfrm_mark *m)
557{
558 if (attrs[XFRMA_SET_MARK]) {
559 m->v = nla_get_u32(attrs[XFRMA_SET_MARK]);
560 if (attrs[XFRMA_SET_MARK_MASK])
561 m->m = nla_get_u32(attrs[XFRMA_SET_MARK_MASK]);
562 else
563 m->m = 0xffffffff;
564 } else {
565 m->v = m->m = 0;
566 }
567}
568
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800569static struct xfrm_state *xfrm_state_construct(struct net *net,
570 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700571 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int *errp)
573{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800574 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int err = -ENOMEM;
576
577 if (!x)
578 goto error_no_put;
579
580 copy_from_user_state(x, p);
581
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100582 if (attrs[XFRMA_SA_EXTRA_FLAGS])
583 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
584
Herbert Xu69b01372015-05-27 16:03:45 +0800585 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800586 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000587 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
588 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000590 if (!x->props.aalgo) {
591 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
592 attrs[XFRMA_ALG_AUTH])))
593 goto error;
594 }
Herbert Xu69b01372015-05-27 16:03:45 +0800595 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 goto error;
597 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
598 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700599 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700601
602 if (attrs[XFRMA_ENCAP]) {
603 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
604 sizeof(*x->encap), GFP_KERNEL);
605 if (x->encap == NULL)
606 goto error;
607 }
608
Martin Willi35d28562010-12-08 04:37:49 +0000609 if (attrs[XFRMA_TFCPAD])
610 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
611
Thomas Graffd211502007-09-06 03:28:08 -0700612 if (attrs[XFRMA_COADDR]) {
613 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
614 sizeof(*x->coaddr), GFP_KERNEL);
615 if (x->coaddr == NULL)
616 goto error;
617 }
618
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000619 xfrm_mark_get(attrs, &x->mark);
620
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200621 xfrm_smark_init(attrs, &x->props.smark);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900622
Steffen Klassert7e652642018-06-12 14:07:07 +0200623 if (attrs[XFRMA_IF_ID])
624 x->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700625
Ilan Tayariffdb5212017-08-01 12:49:08 +0300626 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (err)
628 goto error;
629
Mathias Krause2f30ea52016-09-08 18:09:57 +0200630 if (attrs[XFRMA_SEC_CTX]) {
631 err = security_xfrm_state_alloc(x,
632 nla_data(attrs[XFRMA_SEC_CTX]));
633 if (err)
634 goto error;
635 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800636
Steffen Klassertd8647b72011-03-08 00:10:27 +0000637 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
638 attrs[XFRMA_REPLAY_ESN_VAL])))
639 goto error;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800642 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800643 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800644 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800645
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000646 if ((err = xfrm_init_replay(x)))
647 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800648
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000649 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000650 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Yossi Kupermancc015722018-01-17 15:52:41 +0200652 /* configure the hardware if offload is requested */
653 if (attrs[XFRMA_OFFLOAD_DEV]) {
654 err = xfrm_dev_state_add(net, x,
655 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
656 if (err)
657 goto error;
658 }
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return x;
661
662error:
663 x->km.state = XFRM_STATE_DEAD;
664 xfrm_state_put(x);
665error_no_put:
666 *errp = err;
667 return NULL;
668}
669
Christoph Hellwig22e70052007-01-02 15:22:30 -0800670static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700671 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800673 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700674 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 struct xfrm_state *x;
676 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700677 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Thomas Graf35a7aa02007-08-22 14:00:40 -0700679 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (err)
681 return err;
682
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800683 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (!x)
685 return err;
686
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700687 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
689 err = xfrm_state_add(x);
690 else
691 err = xfrm_state_update(x);
692
Tetsuo Handa2e710292014-04-22 21:48:30 +0900693 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (err < 0) {
696 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200697 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800698 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700699 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
Yossi Kupermancc015722018-01-17 15:52:41 +0200702 if (x->km.state == XFRM_STATE_VOID)
703 x->km.state = XFRM_STATE_VALID;
704
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700705 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000706 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700707 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700708
709 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700710out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700711 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return err;
713}
714
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800715static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
716 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700717 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700718 int *errp)
719{
720 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000721 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700722 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000723 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700724
725 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
726 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000727 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700728 } else {
729 xfrm_address_t *saddr = NULL;
730
Thomas Graf35a7aa02007-08-22 14:00:40 -0700731 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700732 if (!saddr) {
733 err = -EINVAL;
734 goto out;
735 }
736
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800737 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000738 x = xfrm_state_lookup_byaddr(net, mark,
739 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800740 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700741 }
742
743 out:
744 if (!x && errp)
745 *errp = err;
746 return x;
747}
748
Christoph Hellwig22e70052007-01-02 15:22:30 -0800749static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700750 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800752 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700754 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700755 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700756 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800758 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700760 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
David S. Miller6f68dc32006-06-08 23:58:52 -0700762 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700763 goto out;
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700766 err = -EPERM;
767 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700770 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600771
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700772 if (err < 0)
773 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700774
775 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000776 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700777 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700778 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700780out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900781 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700782 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700783 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
786static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
787{
Mathias Krausef778a632012-09-19 11:33:39 +0000788 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 memcpy(&p->id, &x->id, sizeof(p->id));
790 memcpy(&p->sel, &x->sel, sizeof(p->sel));
791 memcpy(&p->lft, &x->lft, sizeof(p->lft));
792 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400793 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
794 put_unaligned(x->stats.replay, &p->stats.replay);
795 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700796 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 p->mode = x->props.mode;
798 p->replay_window = x->props.replay_window;
799 p->reqid = x->props.reqid;
800 p->family = x->props.family;
801 p->flags = x->props.flags;
802 p->seq = x->km.seq;
803}
804
805struct xfrm_dump_info {
806 struct sk_buff *in_skb;
807 struct sk_buff *out_skb;
808 u32 nlmsg_seq;
809 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810};
811
Thomas Grafc0144be2007-08-22 13:55:43 -0700812static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
813{
Thomas Grafc0144be2007-08-22 13:55:43 -0700814 struct xfrm_user_sec_ctx *uctx;
815 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700816 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700817
818 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
819 if (attr == NULL)
820 return -EMSGSIZE;
821
822 uctx = nla_data(attr);
823 uctx->exttype = XFRMA_SEC_CTX;
824 uctx->len = ctx_size;
825 uctx->ctx_doi = s->ctx_doi;
826 uctx->ctx_alg = s->ctx_alg;
827 uctx->ctx_len = s->ctx_len;
828 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
829
830 return 0;
831}
832
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200833static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
834{
835 struct xfrm_user_offload *xuo;
836 struct nlattr *attr;
837
838 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
839 if (attr == NULL)
840 return -EMSGSIZE;
841
842 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200843 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200844 xuo->ifindex = xso->dev->ifindex;
845 xuo->flags = xso->flags;
846
847 return 0;
848}
849
Martin Willi4447bb32009-11-25 00:29:52 +0000850static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
851{
852 struct xfrm_algo *algo;
853 struct nlattr *nla;
854
855 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
856 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
857 if (!nla)
858 return -EMSGSIZE;
859
860 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000861 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000862 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
863 algo->alg_key_len = auth->alg_key_len;
864
865 return 0;
866}
867
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200868static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
869{
870 int ret = 0;
871
872 if (m->v | m->m) {
873 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
874 if (!ret)
875 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
876 }
877 return ret;
878}
879
Herbert Xu68325d32007-10-09 13:30:57 -0700880/* Don't change this without updating xfrm_sa_len! */
881static int copy_to_user_state_extra(struct xfrm_state *x,
882 struct xfrm_usersa_info *p,
883 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700885 int ret = 0;
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 copy_to_user_state(x, p);
888
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100889 if (x->props.extra_flags) {
890 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
891 x->props.extra_flags);
892 if (ret)
893 goto out;
894 }
895
David S. Miller1d1e34d2012-06-27 21:57:03 -0700896 if (x->coaddr) {
897 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
898 if (ret)
899 goto out;
900 }
901 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200902 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
903 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700904 if (ret)
905 goto out;
906 }
907 if (x->aead) {
908 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
909 if (ret)
910 goto out;
911 }
912 if (x->aalg) {
913 ret = copy_to_user_auth(x->aalg, skb);
914 if (!ret)
915 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
916 xfrm_alg_auth_len(x->aalg), x->aalg);
917 if (ret)
918 goto out;
919 }
920 if (x->ealg) {
921 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
922 if (ret)
923 goto out;
924 }
925 if (x->calg) {
926 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
927 if (ret)
928 goto out;
929 }
930 if (x->encap) {
931 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
932 if (ret)
933 goto out;
934 }
935 if (x->tfcpad) {
936 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
937 if (ret)
938 goto out;
939 }
940 ret = xfrm_mark_put(skb, &x->mark);
941 if (ret)
942 goto out;
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200943
944 ret = xfrm_smark_put(skb, &x->props.smark);
945 if (ret)
946 goto out;
947
dingzhif293a5e2014-10-30 09:39:36 +0100948 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700949 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
950 xfrm_replay_state_esn_len(x->replay_esn),
951 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100952 else
953 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
954 &x->replay);
955 if (ret)
956 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200957 if(x->xso.dev)
958 ret = copy_user_offload(&x->xso, skb);
959 if (ret)
960 goto out;
Steffen Klassert7e652642018-06-12 14:07:07 +0200961 if (x->if_id) {
962 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900963 if (ret)
964 goto out;
965 }
Steffen Klassert85981122017-08-31 10:37:00 +0200966 if (x->security)
967 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700968out:
969 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700970}
971
972static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
973{
974 struct xfrm_dump_info *sp = ptr;
975 struct sk_buff *in_skb = sp->in_skb;
976 struct sk_buff *skb = sp->out_skb;
977 struct xfrm_usersa_info *p;
978 struct nlmsghdr *nlh;
979 int err;
980
Eric W. Biederman15e47302012-09-07 20:12:54 +0000981 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700982 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
983 if (nlh == NULL)
984 return -EMSGSIZE;
985
986 p = nlmsg_data(nlh);
987
988 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700989 if (err) {
990 nlmsg_cancel(skb, nlh);
991 return err;
992 }
Thomas Graf98250692007-08-22 12:47:26 -0700993 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
Timo Teras4c563f72008-02-28 21:31:08 -0800997static int xfrm_dump_sa_done(struct netlink_callback *cb)
998{
999 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001000 struct sock *sk = cb->skb->sk;
1001 struct net *net = sock_net(sk);
1002
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001003 if (cb->args[0])
1004 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001005 return 0;
1006}
1007
Nicolas Dichteld3623092014-02-14 15:30:36 +01001008static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
1010{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001011 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001012 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 struct xfrm_dump_info info;
1014
Timo Teras4c563f72008-02-28 21:31:08 -08001015 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
1016 sizeof(cb->args) - sizeof(cb->args[0]));
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 info.in_skb = cb->skb;
1019 info.out_skb = skb;
1020 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1021 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001022
1023 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +01001024 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001025 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001026 u8 proto = 0;
1027 int err;
1028
Johannes Berg8cb08172019-04-26 14:07:28 +02001029 err = nlmsg_parse_deprecated(cb->nlh, 0, attrs, XFRMA_MAX,
1030 xfrma_policy, cb->extack);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001031 if (err < 0)
1032 return err;
1033
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001034 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001035 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1036 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001037 if (filter == NULL)
1038 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001039 }
1040
1041 if (attrs[XFRMA_PROTO])
1042 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1043
1044 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001045 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001046 }
1047
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001048 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 return skb->len;
1051}
1052
1053static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1054 struct xfrm_state *x, u32 seq)
1055{
1056 struct xfrm_dump_info info;
1057 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001058 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Thomas Graf7deb2262007-08-22 13:57:39 -07001060 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (!skb)
1062 return ERR_PTR(-ENOMEM);
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 info.in_skb = in_skb;
1065 info.out_skb = skb;
1066 info.nlmsg_seq = seq;
1067 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Mathias Krause864745d2012-09-13 11:41:26 +00001069 err = dump_one_state(x, 0, &info);
1070 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001072 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074
1075 return skb;
1076}
1077
Michal Kubecek21ee5432014-06-03 10:26:06 +02001078/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1079 * Must be called with RCU read lock.
1080 */
1081static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1082 u32 pid, unsigned int group)
1083{
1084 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1085
Florian Westphal86126b72018-06-25 14:00:07 +02001086 if (!nlsk) {
1087 kfree_skb(skb);
1088 return -EPIPE;
1089 }
1090
1091 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001092}
1093
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001094static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001095{
1096 return NLMSG_ALIGN(4)
1097 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001098 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1099 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1100 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001101}
1102
Alexey Dobriyane0710412010-01-23 13:37:10 +00001103static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001104 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001105{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001106 struct xfrmk_spdinfo si;
1107 struct xfrmu_spdinfo spc;
1108 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001109 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001110 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001111 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001112 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001113 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001114
Eric W. Biederman15e47302012-09-07 20:12:54 +00001115 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001116 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001117 return -EMSGSIZE;
1118
1119 f = nlmsg_data(nlh);
1120 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001121 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001122 spc.incnt = si.incnt;
1123 spc.outcnt = si.outcnt;
1124 spc.fwdcnt = si.fwdcnt;
1125 spc.inscnt = si.inscnt;
1126 spc.outscnt = si.outscnt;
1127 spc.fwdscnt = si.fwdscnt;
1128 sph.spdhcnt = si.spdhcnt;
1129 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001130
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001131 do {
1132 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1133
1134 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1135 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1136 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1137 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1138 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1139
David S. Miller1d1e34d2012-06-27 21:57:03 -07001140 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1141 if (!err)
1142 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001143 if (!err)
1144 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1145 if (!err)
1146 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001147 if (err) {
1148 nlmsg_cancel(skb, nlh);
1149 return err;
1150 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001151
Johannes Berg053c0952015-01-16 22:09:00 +01001152 nlmsg_end(skb, nlh);
1153 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001154}
1155
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001156static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1157 struct nlattr **attrs)
1158{
1159 struct net *net = sock_net(skb->sk);
1160 struct xfrmu_spdhthresh *thresh4 = NULL;
1161 struct xfrmu_spdhthresh *thresh6 = NULL;
1162
1163 /* selector prefixlen thresholds to hash policies */
1164 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1165 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1166
1167 if (nla_len(rta) < sizeof(*thresh4))
1168 return -EINVAL;
1169 thresh4 = nla_data(rta);
1170 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1171 return -EINVAL;
1172 }
1173 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1174 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1175
1176 if (nla_len(rta) < sizeof(*thresh6))
1177 return -EINVAL;
1178 thresh6 = nla_data(rta);
1179 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1180 return -EINVAL;
1181 }
1182
1183 if (thresh4 || thresh6) {
1184 write_seqlock(&net->xfrm.policy_hthresh.lock);
1185 if (thresh4) {
1186 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1187 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1188 }
1189 if (thresh6) {
1190 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1191 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1192 }
1193 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1194
1195 xfrm_policy_hash_rebuild(net);
1196 }
1197
1198 return 0;
1199}
1200
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001201static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001202 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001203{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001204 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001205 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001206 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001207 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001208 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001209 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001210
Thomas Graf7deb2262007-08-22 13:57:39 -07001211 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001212 if (r_skb == NULL)
1213 return -ENOMEM;
1214
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001215 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1216 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001217
Eric W. Biederman15e47302012-09-07 20:12:54 +00001218 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001219}
1220
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001221static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001222{
1223 return NLMSG_ALIGN(4)
1224 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1225 + nla_total_size(4); /* XFRMA_SAD_CNT */
1226}
1227
Alexey Dobriyane0710412010-01-23 13:37:10 +00001228static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001229 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001230{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001231 struct xfrmk_sadinfo si;
1232 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001233 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001234 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001235 u32 *f;
1236
Eric W. Biederman15e47302012-09-07 20:12:54 +00001237 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001238 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001239 return -EMSGSIZE;
1240
1241 f = nlmsg_data(nlh);
1242 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001243 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001244
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001245 sh.sadhmcnt = si.sadhmcnt;
1246 sh.sadhcnt = si.sadhcnt;
1247
David S. Miller1d1e34d2012-06-27 21:57:03 -07001248 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1249 if (!err)
1250 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1251 if (err) {
1252 nlmsg_cancel(skb, nlh);
1253 return err;
1254 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001255
Johannes Berg053c0952015-01-16 22:09:00 +01001256 nlmsg_end(skb, nlh);
1257 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001258}
1259
1260static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001261 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001262{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001263 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001264 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001265 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001266 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001267 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001268 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001269
Thomas Graf7deb2262007-08-22 13:57:39 -07001270 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001271 if (r_skb == NULL)
1272 return -ENOMEM;
1273
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001274 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1275 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001276
Eric W. Biederman15e47302012-09-07 20:12:54 +00001277 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001278}
1279
Christoph Hellwig22e70052007-01-02 15:22:30 -08001280static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001281 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001283 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001284 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct xfrm_state *x;
1286 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001287 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001289 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (x == NULL)
1291 goto out_noput;
1292
1293 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1294 if (IS_ERR(resp_skb)) {
1295 err = PTR_ERR(resp_skb);
1296 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001297 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 xfrm_state_put(x);
1300out_noput:
1301 return err;
1302}
1303
Christoph Hellwig22e70052007-01-02 15:22:30 -08001304static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001305 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001307 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct xfrm_state *x;
1309 struct xfrm_userspi_info *p;
1310 struct sk_buff *resp_skb;
1311 xfrm_address_t *daddr;
1312 int family;
1313 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001314 u32 mark;
1315 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001316 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Thomas Graf7b67c852007-08-22 13:53:52 -07001318 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001319 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (err)
1321 goto out_noput;
1322
1323 family = p->info.family;
1324 daddr = &p->info.id.daddr;
1325
1326 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001327
1328 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001329
1330 if (attrs[XFRMA_IF_ID])
1331 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001334 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001335 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 xfrm_state_put(x);
1337 x = NULL;
1338 }
1339 }
1340
1341 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001342 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klassert7e652642018-06-12 14:07:07 +02001343 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 &p->info.saddr, 1,
1345 family);
1346 err = -ENOENT;
1347 if (x == NULL)
1348 goto out_noput;
1349
Herbert Xu658b2192007-10-09 13:29:52 -07001350 err = xfrm_alloc_spi(x, p->min, p->max);
1351 if (err)
1352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Herbert Xu658b2192007-10-09 13:29:52 -07001354 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (IS_ERR(resp_skb)) {
1356 err = PTR_ERR(resp_skb);
1357 goto out;
1358 }
1359
Eric W. Biederman15e47302012-09-07 20:12:54 +00001360 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362out:
1363 xfrm_state_put(x);
1364out_noput:
1365 return err;
1366}
1367
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001368static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 switch (dir) {
1371 case XFRM_POLICY_IN:
1372 case XFRM_POLICY_OUT:
1373 case XFRM_POLICY_FWD:
1374 break;
1375
1376 default:
1377 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 return 0;
1381}
1382
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001383static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001384{
1385 switch (type) {
1386 case XFRM_POLICY_TYPE_MAIN:
1387#ifdef CONFIG_XFRM_SUB_POLICY
1388 case XFRM_POLICY_TYPE_SUB:
1389#endif
1390 break;
1391
1392 default:
1393 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001394 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001395
1396 return 0;
1397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1400{
Fan Due682adf02013-11-07 17:47:48 +08001401 int ret;
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 switch (p->share) {
1404 case XFRM_SHARE_ANY:
1405 case XFRM_SHARE_SESSION:
1406 case XFRM_SHARE_USER:
1407 case XFRM_SHARE_UNIQUE:
1408 break;
1409
1410 default:
1411 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 switch (p->action) {
1415 case XFRM_POLICY_ALLOW:
1416 case XFRM_POLICY_BLOCK:
1417 break;
1418
1419 default:
1420 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 switch (p->sel.family) {
1424 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +02001425 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1426 return -EINVAL;
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 break;
1429
1430 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001431#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +02001432 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1433 return -EINVAL;
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 break;
1436#else
1437 return -EAFNOSUPPORT;
1438#endif
1439
1440 default:
1441 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Fan Due682adf02013-11-07 17:47:48 +08001444 ret = verify_policy_dir(p->dir);
1445 if (ret)
1446 return ret;
YueHaibingb805d78d2019-02-28 15:18:59 +08001447 if (p->index && (xfrm_policy_id2dir(p->index) != p->dir))
Fan Due682adf02013-11-07 17:47:48 +08001448 return -EINVAL;
1449
1450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Thomas Graf5424f322007-08-22 14:01:33 -07001453static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001454{
Thomas Graf5424f322007-08-22 14:01:33 -07001455 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001456 struct xfrm_user_sec_ctx *uctx;
1457
1458 if (!rt)
1459 return 0;
1460
Thomas Graf5424f322007-08-22 14:01:33 -07001461 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001462 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1466 int nr)
1467{
1468 int i;
1469
1470 xp->xfrm_nr = nr;
1471 for (i = 0; i < nr; i++, ut++) {
1472 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1473
1474 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1475 memcpy(&t->saddr, &ut->saddr,
1476 sizeof(xfrm_address_t));
1477 t->reqid = ut->reqid;
1478 t->mode = ut->mode;
1479 t->share = ut->share;
1480 t->optional = ut->optional;
1481 t->aalgos = ut->aalgos;
1482 t->ealgos = ut->ealgos;
1483 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001484 /* If all masks are ~0, then we allow all algorithms. */
1485 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001486 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
1488}
1489
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001490static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1491{
Steffen Klassert732706a2017-12-08 08:07:25 +01001492 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001493 int i;
1494
1495 if (nr > XFRM_MAX_DEPTH)
1496 return -EINVAL;
1497
Steffen Klassert732706a2017-12-08 08:07:25 +01001498 prev_family = family;
1499
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001500 for (i = 0; i < nr; i++) {
1501 /* We never validated the ut->family value, so many
1502 * applications simply leave it at zero. The check was
1503 * never made and ut->family was ignored because all
1504 * templates could be assumed to have the same family as
1505 * the policy itself. Now that we will have ipv4-in-ipv6
1506 * and ipv6-in-ipv4 tunnels, this is no longer true.
1507 */
1508 if (!ut[i].family)
1509 ut[i].family = family;
1510
Florian Westphal35e6103862019-01-09 14:37:34 +01001511 switch (ut[i].mode) {
1512 case XFRM_MODE_TUNNEL:
1513 case XFRM_MODE_BEET:
1514 break;
1515 default:
1516 if (ut[i].family != prev_family)
1517 return -EINVAL;
1518 break;
1519 }
Sean Tranchetti32bf94f2018-09-19 13:54:56 -06001520 if (ut[i].mode >= XFRM_MODE_MAX)
1521 return -EINVAL;
1522
Steffen Klassert732706a2017-12-08 08:07:25 +01001523 prev_family = ut[i].family;
1524
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001525 switch (ut[i].family) {
1526 case AF_INET:
1527 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001528#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001529 case AF_INET6:
1530 break;
1531#endif
1532 default:
1533 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001534 }
Cong Wang6a53b752017-11-27 11:15:16 -08001535
Cong Wangdbb24832019-03-22 16:26:19 -07001536 if (!xfrm_id_proto_valid(ut[i].id.proto))
Cong Wang6a53b752017-11-27 11:15:16 -08001537 return -EINVAL;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001538 }
1539
1540 return 0;
1541}
1542
Thomas Graf5424f322007-08-22 14:01:33 -07001543static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Thomas Graf5424f322007-08-22 14:01:33 -07001545 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 if (!rt) {
1548 pol->xfrm_nr = 0;
1549 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001550 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1551 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001552 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001554 err = validate_tmpl(nr, utmpl, pol->family);
1555 if (err)
1556 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Thomas Graf5424f322007-08-22 14:01:33 -07001558 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560 return 0;
1561}
1562
Thomas Graf5424f322007-08-22 14:01:33 -07001563static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001564{
Thomas Graf5424f322007-08-22 14:01:33 -07001565 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001566 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001567 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001568 int err;
1569
1570 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001571 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001572 type = upt->type;
1573 }
1574
1575 err = verify_policy_type(type);
1576 if (err)
1577 return err;
1578
1579 *tp = type;
1580 return 0;
1581}
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1584{
1585 xp->priority = p->priority;
1586 xp->index = p->index;
1587 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1588 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1589 xp->action = p->action;
1590 xp->flags = p->flags;
1591 xp->family = p->sel.family;
1592 /* XXX xp->share = p->share; */
1593}
1594
1595static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1596{
Mathias Krause7b789832012-09-19 11:33:40 +00001597 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1599 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1600 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1601 p->priority = xp->priority;
1602 p->index = xp->index;
1603 p->sel.family = xp->family;
1604 p->dir = dir;
1605 p->action = xp->action;
1606 p->flags = xp->flags;
1607 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1608}
1609
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001610static 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 -07001611{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001612 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 int err;
1614
1615 if (!xp) {
1616 *errp = -ENOMEM;
1617 return NULL;
1618 }
1619
1620 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001621
Thomas Graf35a7aa02007-08-22 14:00:40 -07001622 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001623 if (err)
1624 goto error;
1625
Thomas Graf35a7aa02007-08-22 14:00:40 -07001626 if (!(err = copy_from_user_tmpl(xp, attrs)))
1627 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001628 if (err)
1629 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001631 xfrm_mark_get(attrs, &xp->mark);
1632
Steffen Klassert7e652642018-06-12 14:07:07 +02001633 if (attrs[XFRMA_IF_ID])
1634 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001637 error:
1638 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001639 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001640 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001641 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Christoph Hellwig22e70052007-01-02 15:22:30 -08001644static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001645 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001647 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001648 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001650 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 int err;
1652 int excl;
1653
1654 err = verify_newpolicy_info(p);
1655 if (err)
1656 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001657 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001658 if (err)
1659 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001661 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (!xp)
1663 return err;
1664
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001665 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001666 * Aha! this is anti-netlink really i.e more pfkey derived
1667 * in netlink excl is a flag and you wouldnt need
1668 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1670 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001671 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001674 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 kfree(xp);
1676 return err;
1677 }
1678
Herbert Xuf60f6b82005-06-18 22:44:37 -07001679 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001680 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001681 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001682 km_policy_notify(xp, p->dir, &c);
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 xfrm_pol_put(xp);
1685
1686 return 0;
1687}
1688
1689static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1690{
1691 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1692 int i;
1693
1694 if (xp->xfrm_nr == 0)
1695 return 0;
1696
1697 for (i = 0; i < xp->xfrm_nr; i++) {
1698 struct xfrm_user_tmpl *up = &vec[i];
1699 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1700
Mathias Krause1f868402012-09-19 11:33:41 +00001701 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001703 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1705 up->reqid = kp->reqid;
1706 up->mode = kp->mode;
1707 up->share = kp->share;
1708 up->optional = kp->optional;
1709 up->aalgos = kp->aalgos;
1710 up->ealgos = kp->ealgos;
1711 up->calgos = kp->calgos;
1712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Thomas Grafc0144be2007-08-22 13:55:43 -07001714 return nla_put(skb, XFRMA_TMPL,
1715 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001716}
1717
Serge Hallyn0d681622006-07-24 23:30:44 -07001718static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1719{
1720 if (x->security) {
1721 return copy_sec_ctx(x->security, skb);
1722 }
1723 return 0;
1724}
1725
1726static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1727{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001728 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001729 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001730 return 0;
1731}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001732static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001733{
1734#ifdef CONFIG_XFRM_SUB_POLICY
1735 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1736#else
1737 return 0;
1738#endif
1739}
Serge Hallyn0d681622006-07-24 23:30:44 -07001740
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001741#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001742static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001743{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001744 struct xfrm_userpolicy_type upt;
1745
1746 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1747 memset(&upt, 0, sizeof(upt));
1748 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001749
Thomas Grafc0144be2007-08-22 13:55:43 -07001750 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001751}
1752
1753#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001754static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001755{
1756 return 0;
1757}
1758#endif
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1761{
1762 struct xfrm_dump_info *sp = ptr;
1763 struct xfrm_userpolicy_info *p;
1764 struct sk_buff *in_skb = sp->in_skb;
1765 struct sk_buff *skb = sp->out_skb;
1766 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001767 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Eric W. Biederman15e47302012-09-07 20:12:54 +00001769 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001770 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1771 if (nlh == NULL)
1772 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Thomas Graf7b67c852007-08-22 13:53:52 -07001774 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001776 err = copy_to_user_tmpl(xp, skb);
1777 if (!err)
1778 err = copy_to_user_sec_ctx(xp, skb);
1779 if (!err)
1780 err = copy_to_user_policy_type(xp->type, skb);
1781 if (!err)
1782 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001783 if (!err)
1784 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001785 if (err) {
1786 nlmsg_cancel(skb, nlh);
1787 return err;
1788 }
Thomas Graf98250692007-08-22 12:47:26 -07001789 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
Timo Teras4c563f72008-02-28 21:31:08 -08001793static int xfrm_dump_policy_done(struct netlink_callback *cb)
1794{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001795 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001796 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001797
Fan Du283bc9f2013-11-07 17:47:50 +08001798 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001799 return 0;
1800}
1801
Herbert Xu1137b5e2017-10-19 20:51:10 +08001802static int xfrm_dump_policy_start(struct netlink_callback *cb)
1803{
1804 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1805
1806 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1807
1808 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1809 return 0;
1810}
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1813{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001814 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001815 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 struct xfrm_dump_info info;
1817
1818 info.in_skb = cb->skb;
1819 info.out_skb = skb;
1820 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1821 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001822
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001823 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 return skb->len;
1826}
1827
1828static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1829 struct xfrm_policy *xp,
1830 int dir, u32 seq)
1831{
1832 struct xfrm_dump_info info;
1833 struct sk_buff *skb;
Mathias Krausec25463722012-09-14 09:58:32 +00001834 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Thomas Graf7deb2262007-08-22 13:57:39 -07001836 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (!skb)
1838 return ERR_PTR(-ENOMEM);
1839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 info.in_skb = in_skb;
1841 info.out_skb = skb;
1842 info.nlmsg_seq = seq;
1843 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Mathias Krausec25463722012-09-14 09:58:32 +00001845 err = dump_one_policy(xp, dir, 0, &info);
1846 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 kfree_skb(skb);
Mathias Krausec25463722012-09-14 09:58:32 +00001848 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850
1851 return skb;
1852}
1853
Christoph Hellwig22e70052007-01-02 15:22:30 -08001854static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001855 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001857 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 struct xfrm_policy *xp;
1859 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001860 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001862 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001864 struct xfrm_mark m;
1865 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001866 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Thomas Graf7b67c852007-08-22 13:53:52 -07001868 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1870
Thomas Graf35a7aa02007-08-22 14:00:40 -07001871 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001872 if (err)
1873 return err;
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 err = verify_policy_dir(p->dir);
1876 if (err)
1877 return err;
1878
Steffen Klassert7e652642018-06-12 14:07:07 +02001879 if (attrs[XFRMA_IF_ID])
1880 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02001883 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001884 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001885 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001886 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001887
Thomas Graf35a7aa02007-08-22 14:00:40 -07001888 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001889 if (err)
1890 return err;
1891
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001892 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001893 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001894 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001895
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001896 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001897 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001898 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001899 }
Steffen Klassert7e652642018-06-12 14:07:07 +02001900 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001901 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001902 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (xp == NULL)
1905 return -ENOENT;
1906
1907 if (!delete) {
1908 struct sk_buff *resp_skb;
1909
1910 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1911 if (IS_ERR(resp_skb)) {
1912 err = PTR_ERR(resp_skb);
1913 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001914 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001915 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001917 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001918 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001919
1920 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001921 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001922
Herbert Xue7443892005-06-18 22:44:18 -07001923 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001924 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001925 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001926 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001927 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
1929
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001930out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001931 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return err;
1933}
1934
Christoph Hellwig22e70052007-01-02 15:22:30 -08001935static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001936 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001938 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001939 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001940 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001941 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Cong Wangf75a2802019-01-31 13:05:49 -08001943 err = xfrm_state_flush(net, p->proto, true, false);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001944 if (err) {
1945 if (err == -ESRCH) /* empty table */
1946 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001947 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001948 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001949 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001950 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001951 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001952 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001953 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001954 km_state_notify(NULL, &c);
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return 0;
1957}
1958
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001959static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001960{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001961 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001962 xfrm_replay_state_esn_len(x->replay_esn) :
1963 sizeof(struct xfrm_replay_state);
1964
Thomas Graf7deb2262007-08-22 13:57:39 -07001965 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001966 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001967 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001968 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001969 + nla_total_size(4) /* XFRM_AE_RTHR */
1970 + nla_total_size(4); /* XFRM_AE_ETHR */
1971}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001972
David S. Miller214e0052011-02-24 00:02:38 -05001973static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001974{
1975 struct xfrm_aevent_id *id;
1976 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001977 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978
Eric W. Biederman15e47302012-09-07 20:12:54 +00001979 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001980 if (nlh == NULL)
1981 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001982
Thomas Graf7b67c852007-08-22 13:53:52 -07001983 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001984 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001985 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001986 id->sa_id.spi = x->id.spi;
1987 id->sa_id.family = x->props.family;
1988 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001989 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001990 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001991 id->flags = c->data.aevent;
1992
David S. Millerd0fde792012-03-29 04:02:26 -04001993 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001994 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1995 xfrm_replay_state_esn_len(x->replay_esn),
1996 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001997 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001998 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1999 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04002000 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002001 if (err)
2002 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002003 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
2004 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002005 if (err)
2006 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002007
David S. Miller1d1e34d2012-06-27 21:57:03 -07002008 if (id->flags & XFRM_AE_RTHR) {
2009 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
2010 if (err)
2011 goto out_cancel;
2012 }
2013 if (id->flags & XFRM_AE_ETHR) {
2014 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
2015 x->replay_maxage * 10 / HZ);
2016 if (err)
2017 goto out_cancel;
2018 }
2019 err = xfrm_mark_put(skb, &x->mark);
2020 if (err)
2021 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002022
Steffen Klassert7e652642018-06-12 14:07:07 +02002023 err = xfrm_if_id_put(skb, x->if_id);
2024 if (err)
2025 goto out_cancel;
2026
Johannes Berg053c0952015-01-16 22:09:00 +01002027 nlmsg_end(skb, nlh);
2028 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002029
David S. Miller1d1e34d2012-06-27 21:57:03 -07002030out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002031 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002032 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002033}
2034
Christoph Hellwig22e70052007-01-02 15:22:30 -08002035static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002036 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002037{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002038 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002039 struct xfrm_state *x;
2040 struct sk_buff *r_skb;
2041 int err;
2042 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002043 u32 mark;
2044 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002045 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002046 struct xfrm_usersa_id *id = &p->sa_id;
2047
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002048 mark = xfrm_mark_get(attrs, &m);
2049
2050 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002051 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002052 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002053
2054 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2055 if (r_skb == NULL) {
2056 xfrm_state_put(x);
2057 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002058 }
2059
2060 /*
2061 * XXX: is this lock really needed - none of the other
2062 * gets lock (the concern is things getting updated
2063 * while we are still reading) - jhs
2064 */
2065 spin_lock_bh(&x->lock);
2066 c.data.aevent = p->flags;
2067 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002068 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002069
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002070 err = build_aevent(r_skb, x, &c);
2071 BUG_ON(err < 0);
2072
Eric W. Biederman15e47302012-09-07 20:12:54 +00002073 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002074 spin_unlock_bh(&x->lock);
2075 xfrm_state_put(x);
2076 return err;
2077}
2078
Christoph Hellwig22e70052007-01-02 15:22:30 -08002079static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002080 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002081{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002082 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002083 struct xfrm_state *x;
2084 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002085 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002086 u32 mark = 0;
2087 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002088 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002089 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002090 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002091 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002092 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2093 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002094
Michael Rossberg4e077232015-09-29 11:25:08 +02002095 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002096 return err;
2097
2098 /* pedantic mode - thou shalt sayeth replaceth */
2099 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2100 return err;
2101
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002102 mark = xfrm_mark_get(attrs, &m);
2103
2104 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 -08002105 if (x == NULL)
2106 return -ESRCH;
2107
2108 if (x->km.state != XFRM_STATE_VALID)
2109 goto out;
2110
Steffen Klassert4479ff72013-09-09 09:39:01 +02002111 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002112 if (err)
2113 goto out;
2114
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002115 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002116 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002117 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002118
2119 c.event = nlh->nlmsg_type;
2120 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002121 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002122 c.data.aevent = XFRM_AE_CU;
2123 km_state_notify(x, &c);
2124 err = 0;
2125out:
2126 xfrm_state_put(x);
2127 return err;
2128}
2129
Christoph Hellwig22e70052007-01-02 15:22:30 -08002130static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002131 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002133 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002134 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002135 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002136 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002137
Thomas Graf35a7aa02007-08-22 14:00:40 -07002138 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002139 if (err)
2140 return err;
2141
Tetsuo Handa2e710292014-04-22 21:48:30 +09002142 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002143 if (err) {
2144 if (err == -ESRCH) /* empty table */
2145 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002146 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002147 }
2148
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002149 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002150 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002151 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002152 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002153 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002154 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return 0;
2156}
2157
Christoph Hellwig22e70052007-01-02 15:22:30 -08002158static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002159 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002160{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002161 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002162 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002163 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002164 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002165 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002166 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002167 struct xfrm_mark m;
2168 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02002169 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002170
Thomas Graf35a7aa02007-08-22 14:00:40 -07002171 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002172 if (err)
2173 return err;
2174
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002175 err = verify_policy_dir(p->dir);
2176 if (err)
2177 return err;
2178
Steffen Klassert7e652642018-06-12 14:07:07 +02002179 if (attrs[XFRMA_IF_ID])
2180 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2181
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02002183 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002184 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002185 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002186 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002187
Thomas Graf35a7aa02007-08-22 14:00:40 -07002188 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002189 if (err)
2190 return err;
2191
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002192 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002193 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002194 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002195
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002196 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002197 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002198 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002199 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002200 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002201 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002202 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002203 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002204 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002205 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002206
Timo Teräsea2dea9d2010-03-31 00:17:05 +00002207 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002208 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002209
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002210 err = 0;
2211 if (up->hard) {
2212 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002213 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002214 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002215 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002216
2217out:
2218 xfrm_pol_put(xp);
2219 return err;
2220}
2221
Christoph Hellwig22e70052007-01-02 15:22:30 -08002222static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002223 struct nlattr **attrs)
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002224{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002225 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002226 struct xfrm_state *x;
2227 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002228 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002229 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002230 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002231 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002232
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002233 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002234
David S. Miller3a765aa2007-02-26 14:52:21 -08002235 err = -ENOENT;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002236 if (x == NULL)
2237 return err;
2238
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002239 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002240 err = -EINVAL;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002241 if (x->km.state != XFRM_STATE_VALID)
2242 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002243 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002244
Joy Latten161a09e2006-11-27 13:11:54 -06002245 if (ue->hard) {
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002246 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002247 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002248 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002249 err = 0;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002250out:
2251 spin_unlock_bh(&x->lock);
2252 xfrm_state_put(x);
2253 return err;
2254}
2255
Christoph Hellwig22e70052007-01-02 15:22:30 -08002256static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002257 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002258{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002259 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002260 struct xfrm_policy *xp;
2261 struct xfrm_user_tmpl *ut;
2262 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002263 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002264 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002265
Thomas Graf7b67c852007-08-22 13:53:52 -07002266 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002267 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002268 int err = -ENOMEM;
2269
2270 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002271 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002272
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002273 xfrm_mark_get(attrs, &mark);
2274
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002275 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002276 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002277 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002278
2279 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002280 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002281 if (!xp)
2282 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002283
2284 memcpy(&x->id, &ua->id, sizeof(ua->id));
2285 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2286 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002287 xp->mark.m = x->mark.m = mark.m;
2288 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002289 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002290 /* extract the templates and for each call km_key */
2291 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2292 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2293 memcpy(&x->id, &t->id, sizeof(x->id));
2294 x->props.mode = t->mode;
2295 x->props.reqid = t->reqid;
2296 x->props.family = ut->family;
2297 t->aalgos = ua->aalgos;
2298 t->ealgos = ua->ealgos;
2299 t->calgos = ua->calgos;
2300 err = km_query(x, t, xp);
2301
2302 }
2303
Mathias Krause4a135e52018-11-21 21:09:23 +01002304 xfrm_state_free(x);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002305 kfree(xp);
2306
2307 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002308
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002309free_state:
Mathias Krause4a135e52018-11-21 21:09:23 +01002310 xfrm_state_free(x);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002311nomem:
2312 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002313}
2314
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002315#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002316static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002317 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002318 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002319{
Thomas Graf5424f322007-08-22 14:01:33 -07002320 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002321 struct xfrm_user_migrate *um;
2322 int i, num_migrate;
2323
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002324 if (k != NULL) {
2325 struct xfrm_user_kmaddress *uk;
2326
2327 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2328 memcpy(&k->local, &uk->local, sizeof(k->local));
2329 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2330 k->family = uk->family;
2331 k->reserved = uk->reserved;
2332 }
2333
Thomas Graf5424f322007-08-22 14:01:33 -07002334 um = nla_data(rt);
2335 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002336
2337 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2338 return -EINVAL;
2339
2340 for (i = 0; i < num_migrate; i++, um++, ma++) {
2341 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2342 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2343 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2344 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2345
2346 ma->proto = um->proto;
2347 ma->mode = um->mode;
2348 ma->reqid = um->reqid;
2349
2350 ma->old_family = um->old_family;
2351 ma->new_family = um->new_family;
2352 }
2353
2354 *num = i;
2355 return 0;
2356}
2357
2358static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002359 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002360{
Thomas Graf7b67c852007-08-22 13:53:52 -07002361 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002362 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002363 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364 u8 type;
2365 int err;
2366 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002367 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002368 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002369
Thomas Graf35a7aa02007-08-22 14:00:40 -07002370 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002371 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002372
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002373 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2374
Thomas Graf5424f322007-08-22 14:01:33 -07002375 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002376 if (err)
2377 return err;
2378
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002379 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002380 if (err)
2381 return err;
2382
2383 if (!n)
2384 return 0;
2385
Antony Antony4ab47d42017-06-06 12:12:13 +02002386 if (attrs[XFRMA_ENCAP]) {
2387 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2388 sizeof(*encap), GFP_KERNEL);
2389 if (!encap)
2390 return 0;
2391 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002392
Antony Antony4ab47d42017-06-06 12:12:13 +02002393 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2394
2395 kfree(encap);
2396
2397 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002398}
2399#else
2400static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002401 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002402{
2403 return -ENOPROTOOPT;
2404}
2405#endif
2406
2407#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002408static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002409{
2410 struct xfrm_user_migrate um;
2411
2412 memset(&um, 0, sizeof(um));
2413 um.proto = m->proto;
2414 um.mode = m->mode;
2415 um.reqid = m->reqid;
2416 um.old_family = m->old_family;
2417 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2418 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2419 um.new_family = m->new_family;
2420 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2421 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2422
Thomas Grafc0144be2007-08-22 13:55:43 -07002423 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002424}
2425
David S. Miller183cad12011-02-24 00:28:01 -05002426static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002427{
2428 struct xfrm_user_kmaddress uk;
2429
2430 memset(&uk, 0, sizeof(uk));
2431 uk.family = k->family;
2432 uk.reserved = k->reserved;
2433 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002434 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002435
2436 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2437}
2438
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002439static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2440 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002441{
2442 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002443 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002444 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002445 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2446 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002447}
2448
David S. Miller183cad12011-02-24 00:28:01 -05002449static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2450 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002451 const struct xfrm_selector *sel,
2452 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002453{
David S. Miller183cad12011-02-24 00:28:01 -05002454 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002455 struct xfrm_userpolicy_id *pol_id;
2456 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002457 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002458
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002459 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2460 if (nlh == NULL)
2461 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002462
Thomas Graf7b67c852007-08-22 13:53:52 -07002463 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002464 /* copy data from selector, dir, and type to the pol_id */
2465 memset(pol_id, 0, sizeof(*pol_id));
2466 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2467 pol_id->dir = dir;
2468
David S. Miller1d1e34d2012-06-27 21:57:03 -07002469 if (k != NULL) {
2470 err = copy_to_user_kmaddress(k, skb);
2471 if (err)
2472 goto out_cancel;
2473 }
Antony Antony8bafd732017-06-06 12:12:14 +02002474 if (encap) {
2475 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2476 if (err)
2477 goto out_cancel;
2478 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002479 err = copy_to_user_policy_type(type, skb);
2480 if (err)
2481 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002482 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002483 err = copy_to_user_migrate(mp, skb);
2484 if (err)
2485 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002486 }
2487
Johannes Berg053c0952015-01-16 22:09:00 +01002488 nlmsg_end(skb, nlh);
2489 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002490
2491out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002492 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002493 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002494}
2495
David S. Miller183cad12011-02-24 00:28:01 -05002496static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2497 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002498 const struct xfrm_kmaddress *k,
2499 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002500{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002501 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002502 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002503 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002504
Antony Antony8bafd732017-06-06 12:12:14 +02002505 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2506 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002507 if (skb == NULL)
2508 return -ENOMEM;
2509
2510 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002511 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2512 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002513
Michal Kubecek21ee5432014-06-03 10:26:06 +02002514 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002515}
2516#else
David S. Miller183cad12011-02-24 00:28:01 -05002517static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2518 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002519 const struct xfrm_kmaddress *k,
2520 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002521{
2522 return -ENOPROTOOPT;
2523}
2524#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002525
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002526#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002527
2528static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002529 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002530 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2531 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2532 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2533 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2534 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2535 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002536 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002537 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002538 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002539 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002540 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002541 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002542 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002543 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2544 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002545 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002546 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002547 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002548 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002549 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550};
2551
Thomas Graf492b5582005-05-03 14:26:40 -07002552#undef XMSGSIZE
2553
Thomas Grafcf5cb792007-08-22 13:59:04 -07002554static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002555 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2556 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2557 [XFRMA_LASTUSED] = { .type = NLA_U64},
2558 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002559 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002560 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2561 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2562 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2563 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2564 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2565 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2566 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2567 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2568 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2569 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2570 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2571 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2572 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2573 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002574 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002575 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002576 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002577 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002578 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002579 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002580 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002581 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002582 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2583 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002584 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002585};
2586
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002587static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2588 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2589 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2590};
2591
Mathias Krause05600a72013-02-24 14:10:27 +01002592static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002593 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002594 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002596 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002597 const struct nla_policy *nla_pol;
2598 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002599} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2600 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2601 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2602 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002603 .dump = xfrm_dump_sa,
2604 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002605 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2606 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2607 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002608 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002609 .dump = xfrm_dump_policy,
2610 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002611 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002612 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002613 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002614 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2615 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002616 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002617 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2618 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002619 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2620 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002621 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002622 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002623 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2624 .nla_pol = xfrma_spd_policy,
2625 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002626 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627};
2628
Johannes Berg2d4bc932017-04-12 14:34:04 +02002629static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2630 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002632 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002633 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002634 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002635 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002637 if (in_compat_syscall())
Yi Zhao83e2d0582016-11-29 18:09:01 +08002638 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002642 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 type -= XFRM_MSG_BASE;
2645 link = &xfrm_dispatch[type];
2646
2647 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002648 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002649 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Thomas Graf492b5582005-05-03 14:26:40 -07002651 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2652 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002653 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002655 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002657 {
2658 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002659 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002660 .dump = link->dump,
2661 .done = link->done,
2662 };
2663 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
2666
Johannes Berg8cb08172019-04-26 14:07:28 +02002667 err = nlmsg_parse_deprecated(nlh, xfrm_msg_min[type], attrs,
2668 link->nla_max ? : XFRMA_MAX,
2669 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002670 if (err < 0)
2671 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002674 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Thomas Graf5424f322007-08-22 14:01:33 -07002676 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002679static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
Fan Du283bc9f2013-11-07 17:47:50 +08002681 struct net *net = sock_net(skb->sk);
2682
2683 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002684 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002685 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686}
2687
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002688static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002689{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002690 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2691 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002692}
2693
David S. Miller214e0052011-02-24 00:02:38 -05002694static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 struct xfrm_user_expire *ue;
2697 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002698 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Eric W. Biederman15e47302012-09-07 20:12:54 +00002700 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002701 if (nlh == NULL)
2702 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Thomas Graf7b67c852007-08-22 13:53:52 -07002704 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002706 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002707 /* clear the padding bytes */
2708 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
David S. Miller1d1e34d2012-06-27 21:57:03 -07002710 err = xfrm_mark_put(skb, &x->mark);
2711 if (err)
2712 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002713
Steffen Klassert7e652642018-06-12 14:07:07 +02002714 err = xfrm_if_id_put(skb, x->if_id);
2715 if (err)
2716 return err;
2717
Johannes Berg053c0952015-01-16 22:09:00 +01002718 nlmsg_end(skb, nlh);
2719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720}
2721
David S. Miller214e0052011-02-24 00:02:38 -05002722static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002724 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 struct sk_buff *skb;
2726
Thomas Graf7deb2262007-08-22 13:57:39 -07002727 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (skb == NULL)
2729 return -ENOMEM;
2730
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002731 if (build_expire(skb, x, c) < 0) {
2732 kfree_skb(skb);
2733 return -EMSGSIZE;
2734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Michal Kubecek21ee5432014-06-03 10:26:06 +02002736 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
David S. Miller214e0052011-02-24 00:02:38 -05002739static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002740{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002741 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002742 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002743 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002744
Steffen Klassertd8647b72011-03-08 00:10:27 +00002745 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002746 if (skb == NULL)
2747 return -ENOMEM;
2748
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002749 err = build_aevent(skb, x, c);
2750 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002751
Michal Kubecek21ee5432014-06-03 10:26:06 +02002752 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002753}
2754
David S. Miller214e0052011-02-24 00:02:38 -05002755static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002757 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002758 struct xfrm_usersa_flush *p;
2759 struct nlmsghdr *nlh;
2760 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002761 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762
Thomas Graf7deb2262007-08-22 13:57:39 -07002763 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764 if (skb == NULL)
2765 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766
Eric W. Biederman15e47302012-09-07 20:12:54 +00002767 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002768 if (nlh == NULL) {
2769 kfree_skb(skb);
2770 return -EMSGSIZE;
2771 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002772
Thomas Graf7b67c852007-08-22 13:53:52 -07002773 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002774 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002775
Thomas Graf98250692007-08-22 12:47:26 -07002776 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002777
Michal Kubecek21ee5432014-06-03 10:26:06 +02002778 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002779}
2780
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002781static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002782{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002783 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002784 if (x->aead)
2785 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002786 if (x->aalg) {
2787 l += nla_total_size(sizeof(struct xfrm_algo) +
2788 (x->aalg->alg_key_len + 7) / 8);
2789 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2790 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002792 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002793 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002794 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002795 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002796 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002797 if (x->tfcpad)
2798 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002799 if (x->replay_esn)
2800 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002801 else
2802 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002803 if (x->security)
2804 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2805 x->security->ctx_len);
2806 if (x->coaddr)
2807 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002808 if (x->props.extra_flags)
2809 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002810 if (x->xso.dev)
2811 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002812 if (x->props.smark.v | x->props.smark.m) {
2813 l += nla_total_size(sizeof(x->props.smark.v));
2814 l += nla_total_size(sizeof(x->props.smark.m));
2815 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002816 if (x->if_id)
2817 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002818
Herbert Xud26f3982007-11-13 21:47:08 -08002819 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002820 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002821
2822 return l;
2823}
2824
David S. Miller214e0052011-02-24 00:02:38 -05002825static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002826{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002827 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002828 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002829 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002830 struct nlmsghdr *nlh;
2831 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002832 unsigned int len = xfrm_sa_len(x);
2833 unsigned int headlen;
2834 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002835
2836 headlen = sizeof(*p);
2837 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002838 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002839 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002840 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002841 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002842 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002843
Thomas Graf7deb2262007-08-22 13:57:39 -07002844 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002845 if (skb == NULL)
2846 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002847
Eric W. Biederman15e47302012-09-07 20:12:54 +00002848 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002849 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002850 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002851 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002852
Thomas Graf7b67c852007-08-22 13:53:52 -07002853 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002854 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002855 struct nlattr *attr;
2856
Thomas Graf7b67c852007-08-22 13:53:52 -07002857 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002858 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002859 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2860 id->spi = x->id.spi;
2861 id->family = x->props.family;
2862 id->proto = x->id.proto;
2863
Thomas Grafc0144be2007-08-22 13:55:43 -07002864 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002865 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002866 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002867 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002868
2869 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002870 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002871 err = copy_to_user_state_extra(x, p, skb);
2872 if (err)
2873 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002874
Thomas Graf98250692007-08-22 12:47:26 -07002875 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002876
Michal Kubecek21ee5432014-06-03 10:26:06 +02002877 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002878
David S. Miller1d1e34d2012-06-27 21:57:03 -07002879out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002880 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002881 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882}
2883
David S. Miller214e0052011-02-24 00:02:38 -05002884static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002885{
2886
2887 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002888 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002889 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002890 case XFRM_MSG_NEWAE:
2891 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002892 case XFRM_MSG_DELSA:
2893 case XFRM_MSG_UPDSA:
2894 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002895 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002896 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002897 return xfrm_notify_sa_flush(c);
2898 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002899 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2900 c->event);
2901 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002902 }
2903
2904 return 0;
2905
2906}
2907
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002908static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2909 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002910{
2911 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2912 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002913 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002914 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2915 + userpolicy_type_attrsize();
2916}
2917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002919 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002921 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 struct xfrm_user_acquire *ua;
2923 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002924 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002926 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2927 if (nlh == NULL)
2928 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Thomas Graf7b67c852007-08-22 13:53:52 -07002930 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 memcpy(&ua->id, &x->id, sizeof(ua->id));
2932 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2933 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002934 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 ua->aalgos = xt->aalgos;
2936 ua->ealgos = xt->ealgos;
2937 ua->calgos = xt->calgos;
2938 ua->seq = x->km.seq = seq;
2939
David S. Miller1d1e34d2012-06-27 21:57:03 -07002940 err = copy_to_user_tmpl(xp, skb);
2941 if (!err)
2942 err = copy_to_user_state_sec_ctx(x, skb);
2943 if (!err)
2944 err = copy_to_user_policy_type(xp->type, skb);
2945 if (!err)
2946 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02002947 if (!err)
2948 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002949 if (err) {
2950 nlmsg_cancel(skb, nlh);
2951 return err;
2952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Johannes Berg053c0952015-01-16 22:09:00 +01002954 nlmsg_end(skb, nlh);
2955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956}
2957
2958static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002959 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002961 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002963 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Thomas Graf7deb2262007-08-22 13:57:39 -07002965 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (skb == NULL)
2967 return -ENOMEM;
2968
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002969 err = build_acquire(skb, x, xt, xp);
2970 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Michal Kubecek21ee5432014-06-03 10:26:06 +02002972 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973}
2974
2975/* User gives us xfrm_user_policy_info followed by an array of 0
2976 * or more templates.
2977 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002978static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 u8 *data, int len, int *dir)
2980{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002981 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2983 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2984 struct xfrm_policy *xp;
2985 int nr;
2986
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002987 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 case AF_INET:
2989 if (opt != IP_XFRM_POLICY) {
2990 *dir = -EOPNOTSUPP;
2991 return NULL;
2992 }
2993 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002994#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 case AF_INET6:
2996 if (opt != IPV6_XFRM_POLICY) {
2997 *dir = -EOPNOTSUPP;
2998 return NULL;
2999 }
3000 break;
3001#endif
3002 default:
3003 *dir = -EINVAL;
3004 return NULL;
3005 }
3006
3007 *dir = -EINVAL;
3008
3009 if (len < sizeof(*p) ||
3010 verify_newpolicy_info(p))
3011 return NULL;
3012
3013 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08003014 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return NULL;
3016
Herbert Xua4f1bac2005-07-26 15:43:17 -07003017 if (p->dir > XFRM_POLICY_OUT)
3018 return NULL;
3019
Herbert Xu2f09a4d2010-08-14 22:38:09 -07003020 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 if (xp == NULL) {
3022 *dir = -ENOBUFS;
3023 return NULL;
3024 }
3025
3026 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07003027 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 copy_templates(xp, ut, nr);
3029
3030 *dir = p->dir;
3031
3032 return xp;
3033}
3034
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003035static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003036{
3037 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3038 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3039 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003040 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003041 + userpolicy_type_attrsize();
3042}
3043
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003045 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
3047 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003048 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003049 struct nlmsghdr *nlh;
3050 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Eric W. Biederman15e47302012-09-07 20:12:54 +00003052 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003053 if (nlh == NULL)
3054 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Thomas Graf7b67c852007-08-22 13:53:52 -07003056 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003058 err = copy_to_user_tmpl(xp, skb);
3059 if (!err)
3060 err = copy_to_user_sec_ctx(xp, skb);
3061 if (!err)
3062 err = copy_to_user_policy_type(xp->type, skb);
3063 if (!err)
3064 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003065 if (!err)
3066 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003067 if (err) {
3068 nlmsg_cancel(skb, nlh);
3069 return err;
3070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 upe->hard = !!hard;
3072
Johannes Berg053c0952015-01-16 22:09:00 +01003073 nlmsg_end(skb, nlh);
3074 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075}
3076
David S. Miller214e0052011-02-24 00:02:38 -05003077static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003079 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003081 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Thomas Graf7deb2262007-08-22 13:57:39 -07003083 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 if (skb == NULL)
3085 return -ENOMEM;
3086
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003087 err = build_polexpire(skb, xp, dir, c);
3088 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Michal Kubecek21ee5432014-06-03 10:26:06 +02003090 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091}
3092
David S. Miller214e0052011-02-24 00:02:38 -05003093static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003094{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003095 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003096 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003097 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003098 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003099 struct nlmsghdr *nlh;
3100 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003101 unsigned int headlen;
3102 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003103
3104 headlen = sizeof(*p);
3105 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003106 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003107 headlen = sizeof(*id);
3108 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003109 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003110 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003111 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003112
Thomas Graf7deb2262007-08-22 13:57:39 -07003113 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003114 if (skb == NULL)
3115 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003116
Eric W. Biederman15e47302012-09-07 20:12:54 +00003117 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003118 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003119 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003120 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003121
Thomas Graf7b67c852007-08-22 13:53:52 -07003122 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003123 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003124 struct nlattr *attr;
3125
Thomas Graf7b67c852007-08-22 13:53:52 -07003126 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003127 memset(id, 0, sizeof(*id));
3128 id->dir = dir;
3129 if (c->data.byid)
3130 id->index = xp->index;
3131 else
3132 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3133
Thomas Grafc0144be2007-08-22 13:55:43 -07003134 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003135 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003136 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003137 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003138
3139 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003140 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003141
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003142 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003143 err = copy_to_user_tmpl(xp, skb);
3144 if (!err)
3145 err = copy_to_user_policy_type(xp->type, skb);
3146 if (!err)
3147 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003148 if (!err)
3149 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003150 if (err)
3151 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003152
Thomas Graf98250692007-08-22 12:47:26 -07003153 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003154
Michal Kubecek21ee5432014-06-03 10:26:06 +02003155 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003156
David S. Miller1d1e34d2012-06-27 21:57:03 -07003157out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003158 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003159 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003160}
3161
David S. Miller214e0052011-02-24 00:02:38 -05003162static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003163{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003164 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003165 struct nlmsghdr *nlh;
3166 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003167 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003168
Thomas Graf7deb2262007-08-22 13:57:39 -07003169 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003170 if (skb == NULL)
3171 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003172
Eric W. Biederman15e47302012-09-07 20:12:54 +00003173 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003174 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003175 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003176 goto out_free_skb;
3177 err = copy_to_user_policy_type(c->data.type, skb);
3178 if (err)
3179 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003180
Thomas Graf98250692007-08-22 12:47:26 -07003181 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003182
Michal Kubecek21ee5432014-06-03 10:26:06 +02003183 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003184
David S. Miller1d1e34d2012-06-27 21:57:03 -07003185out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003186 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003187 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003188}
3189
David S. Miller214e0052011-02-24 00:02:38 -05003190static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003191{
3192
3193 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003194 case XFRM_MSG_NEWPOLICY:
3195 case XFRM_MSG_UPDPOLICY:
3196 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003197 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003198 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003199 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003200 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003201 return xfrm_exp_policy_notify(xp, dir, c);
3202 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003203 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3204 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003205 }
3206
3207 return 0;
3208
3209}
3210
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003211static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003212{
3213 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3214}
3215
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003216static int build_report(struct sk_buff *skb, u8 proto,
3217 struct xfrm_selector *sel, xfrm_address_t *addr)
3218{
3219 struct xfrm_user_report *ur;
3220 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003221
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003222 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3223 if (nlh == NULL)
3224 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003225
Thomas Graf7b67c852007-08-22 13:53:52 -07003226 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003227 ur->proto = proto;
3228 memcpy(&ur->sel, sel, sizeof(ur->sel));
3229
David S. Miller1d1e34d2012-06-27 21:57:03 -07003230 if (addr) {
3231 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3232 if (err) {
3233 nlmsg_cancel(skb, nlh);
3234 return err;
3235 }
3236 }
Johannes Berg053c0952015-01-16 22:09:00 +01003237 nlmsg_end(skb, nlh);
3238 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003239}
3240
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003241static int xfrm_send_report(struct net *net, u8 proto,
3242 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003243{
3244 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003245 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003246
Thomas Graf7deb2262007-08-22 13:57:39 -07003247 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003248 if (skb == NULL)
3249 return -ENOMEM;
3250
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003251 err = build_report(skb, proto, sel, addr);
3252 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003253
Michal Kubecek21ee5432014-06-03 10:26:06 +02003254 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003255}
3256
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003257static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003258{
3259 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3260}
3261
3262static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3263 xfrm_address_t *new_saddr, __be16 new_sport)
3264{
3265 struct xfrm_user_mapping *um;
3266 struct nlmsghdr *nlh;
3267
3268 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3269 if (nlh == NULL)
3270 return -EMSGSIZE;
3271
3272 um = nlmsg_data(nlh);
3273
3274 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3275 um->id.spi = x->id.spi;
3276 um->id.family = x->props.family;
3277 um->id.proto = x->id.proto;
3278 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3279 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3280 um->new_sport = new_sport;
3281 um->old_sport = x->encap->encap_sport;
3282 um->reqid = x->props.reqid;
3283
Johannes Berg053c0952015-01-16 22:09:00 +01003284 nlmsg_end(skb, nlh);
3285 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003286}
3287
3288static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3289 __be16 sport)
3290{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003291 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003292 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003293 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003294
3295 if (x->id.proto != IPPROTO_ESP)
3296 return -EINVAL;
3297
3298 if (!x->encap)
3299 return -EINVAL;
3300
3301 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3302 if (skb == NULL)
3303 return -ENOMEM;
3304
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003305 err = build_mapping(skb, x, ipaddr, sport);
3306 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003307
Michal Kubecek21ee5432014-06-03 10:26:06 +02003308 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003309}
3310
Horia Geanta0f245582014-02-12 16:20:06 +02003311static bool xfrm_is_alive(const struct km_event *c)
3312{
3313 return (bool)xfrm_acquire_is_on(c->net);
3314}
3315
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 .notify = xfrm_send_state_notify,
3318 .acquire = xfrm_send_acquire,
3319 .compile_policy = xfrm_compile_policy,
3320 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003321 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003322 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003323 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003324 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325};
3326
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003327static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Patrick McHardybe336902006-03-20 22:40:54 -08003329 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003330 struct netlink_kernel_cfg cfg = {
3331 .groups = XFRMNLGRP_MAX,
3332 .input = xfrm_netlink_rcv,
3333 };
Patrick McHardybe336902006-03-20 22:40:54 -08003334
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003335 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003336 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003338 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003339 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 return 0;
3341}
3342
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003343static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003344{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003345 struct net *net;
3346 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003347 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003348 synchronize_net();
3349 list_for_each_entry(net, net_exit_list, exit_list)
3350 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003351}
3352
3353static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003354 .init = xfrm_user_net_init,
3355 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003356};
3357
3358static int __init xfrm_user_init(void)
3359{
3360 int rv;
3361
3362 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3363
3364 rv = register_pernet_subsys(&xfrm_user_net_ops);
3365 if (rv < 0)
3366 return rv;
3367 rv = xfrm_register_km(&netlink_mgr);
3368 if (rv < 0)
3369 unregister_pernet_subsys(&xfrm_user_net_ops);
3370 return rv;
3371}
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373static void __exit xfrm_user_exit(void)
3374{
3375 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003376 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377}
3378
3379module_init(xfrm_user_init);
3380module_exit(xfrm_user_exit);
3381MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003382MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);