blob: a054e1a08e7495f43f669a11a59a305278db5f59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/socket.h>
19#include <linux/string.h>
20#include <linux/net.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pfkeyv2.h>
23#include <linux/ipsec.h>
24#include <linux/init.h>
25#include <linux/security.h>
26#include <net/sock.h>
27#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Thomas Graf5424f322007-08-22 14:01:33 -070036static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Thomas Graf5424f322007-08-22 14:01:33 -070038 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct xfrm_algo *algp;
40
41 if (!rt)
42 return 0;
43
Thomas Graf5424f322007-08-22 14:01:33 -070044 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080045 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070046 return -EINVAL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (type) {
49 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53
54 default:
55 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
59 return 0;
60}
61
Martin Willi4447bb32009-11-25 00:29:52 +000062static int verify_auth_trunc(struct nlattr **attrs)
63{
64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65 struct xfrm_algo_auth *algp;
66
67 if (!rt)
68 return 0;
69
70 algp = nla_data(rt);
71 if (nla_len(rt) < xfrm_alg_auth_len(algp))
72 return -EINVAL;
73
74 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
75 return 0;
76}
77
Herbert Xu1a6509d2008-01-28 19:37:29 -080078static int verify_aead(struct nlattr **attrs)
79{
80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81 struct xfrm_algo_aead *algp;
82
83 if (!rt)
84 return 0;
85
86 algp = nla_data(rt);
87 if (nla_len(rt) < aead_len(algp))
88 return -EINVAL;
89
90 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
91 return 0;
92}
93
Thomas Graf5424f322007-08-22 14:01:33 -070094static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070095 xfrm_address_t **addrp)
96{
Thomas Graf5424f322007-08-22 14:01:33 -070097 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070098
Thomas Grafcf5cb792007-08-22 13:59:04 -070099 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700100 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700101}
Trent Jaegerdf718372005-12-13 23:12:27 -0800102
Thomas Graf5424f322007-08-22 14:01:33 -0700103static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800104{
Thomas Graf5424f322007-08-22 14:01:33 -0700105 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800106 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800107
108 if (!rt)
109 return 0;
110
Thomas Graf5424f322007-08-22 14:01:33 -0700111 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700112 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800113 return -EINVAL;
114
115 return 0;
116}
117
Steffen Klassertd8647b72011-03-08 00:10:27 +0000118static inline int verify_replay(struct xfrm_usersa_info *p,
119 struct nlattr **attrs)
120{
121 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000122 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000123
124 if (!rt)
Florian Westphal0355a9f2018-02-12 14:42:01 +0100125 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000135
Fan Du01714102014-01-18 09:54:28 +0800136 /* As only ESP and AH support ESN feature. */
137 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000138 return -EINVAL;
139
Steffen Klassertd8647b72011-03-08 00:10:27 +0000140 if (p->replay_window != 0)
141 return -EINVAL;
142
143 return 0;
144}
Trent Jaegerdf718372005-12-13 23:12:27 -0800145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700147 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int err;
150
151 err = -EINVAL;
152 switch (p->family) {
153 case AF_INET:
154 break;
155
156 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000157#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159#else
160 err = -EAFNOSUPPORT;
161 goto out;
162#endif
163
164 default:
165 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 err = -EINVAL;
169 switch (p->id.proto) {
170 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000171 if ((!attrs[XFRMA_ALG_AUTH] &&
172 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800173 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700174 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000175 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200176 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 goto out;
178 break;
179
180 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 if (attrs[XFRMA_ALG_COMP])
182 goto out;
183 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000184 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800185 !attrs[XFRMA_ALG_CRYPT] &&
186 !attrs[XFRMA_ALG_AEAD])
187 goto out;
188 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000189 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800190 attrs[XFRMA_ALG_CRYPT]) &&
191 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000193 if (attrs[XFRMA_TFCPAD] &&
194 p->mode != XFRM_MODE_TUNNEL)
195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197
198 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700199 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800200 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700201 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000202 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000203 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200204 attrs[XFRMA_TFCPAD] ||
205 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto out;
207 break;
208
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000209#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700210 case IPPROTO_DSTOPTS:
211 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700212 if (attrs[XFRMA_ALG_COMP] ||
213 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000214 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800215 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700216 attrs[XFRMA_ALG_CRYPT] ||
217 attrs[XFRMA_ENCAP] ||
218 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000219 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700220 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700221 goto out;
222 break;
223#endif
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 default:
226 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Herbert Xu1a6509d2008-01-28 19:37:29 -0800229 if ((err = verify_aead(attrs)))
230 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000231 if ((err = verify_auth_trunc(attrs)))
232 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700233 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700235 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700237 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800240 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000241 if ((err = verify_replay(p, attrs)))
242 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 err = -EINVAL;
245 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700246 case XFRM_MODE_TRANSPORT:
247 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700248 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700249 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251
252 default:
253 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 err = 0;
257
258out:
259 return err;
260}
261
262static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800263 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700264 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct xfrm_algo *p, *ualg;
267 struct xfrm_algo_desc *algo;
268
269 if (!rta)
270 return 0;
271
Thomas Graf5424f322007-08-22 14:01:33 -0700272 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 algo = get_byname(ualg->alg_name, 1);
275 if (!algo)
276 return -ENOSYS;
277 *props = algo->desc.sadb_alg_id;
278
Eric Dumazet0f99be02008-01-08 23:39:06 -0800279 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!p)
281 return -ENOMEM;
282
Herbert Xu04ff1262006-08-13 08:50:00 +1000283 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *algpp = p;
285 return 0;
286}
287
Herbert Xu69b01372015-05-27 16:03:45 +0800288static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
289{
290 struct xfrm_algo *p, *ualg;
291 struct xfrm_algo_desc *algo;
292
293 if (!rta)
294 return 0;
295
296 ualg = nla_data(rta);
297
298 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
299 if (!algo)
300 return -ENOSYS;
301 x->props.ealgo = algo->desc.sadb_alg_id;
302
303 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
304 if (!p)
305 return -ENOMEM;
306
307 strcpy(p->alg_name, algo->name);
308 x->ealg = p;
309 x->geniv = algo->uinfo.encr.geniv;
310 return 0;
311}
312
Martin Willi4447bb32009-11-25 00:29:52 +0000313static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
314 struct nlattr *rta)
315{
316 struct xfrm_algo *ualg;
317 struct xfrm_algo_auth *p;
318 struct xfrm_algo_desc *algo;
319
320 if (!rta)
321 return 0;
322
323 ualg = nla_data(rta);
324
325 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
326 if (!algo)
327 return -ENOSYS;
328 *props = algo->desc.sadb_alg_id;
329
330 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
331 if (!p)
332 return -ENOMEM;
333
334 strcpy(p->alg_name, algo->name);
335 p->alg_key_len = ualg->alg_key_len;
336 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
337 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
338
339 *algpp = p;
340 return 0;
341}
342
343static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
344 struct nlattr *rta)
345{
346 struct xfrm_algo_auth *p, *ualg;
347 struct xfrm_algo_desc *algo;
348
349 if (!rta)
350 return 0;
351
352 ualg = nla_data(rta);
353
354 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
355 if (!algo)
356 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800357 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000358 return -EINVAL;
359 *props = algo->desc.sadb_alg_id;
360
361 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
362 if (!p)
363 return -ENOMEM;
364
365 strcpy(p->alg_name, algo->name);
366 if (!p->alg_trunc_len)
367 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
368
369 *algpp = p;
370 return 0;
371}
372
Herbert Xu69b01372015-05-27 16:03:45 +0800373static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800374{
375 struct xfrm_algo_aead *p, *ualg;
376 struct xfrm_algo_desc *algo;
377
378 if (!rta)
379 return 0;
380
381 ualg = nla_data(rta);
382
383 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
384 if (!algo)
385 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800386 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800387
388 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
389 if (!p)
390 return -ENOMEM;
391
392 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800393 x->aead = p;
394 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800395 return 0;
396}
397
Steffen Klasserte2b19122011-03-28 19:47:30 +0000398static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
399 struct nlattr *rp)
400{
401 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000402 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403
404 if (!replay_esn || !rp)
405 return 0;
406
407 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000408 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000409
Andy Whitcroft79191ea2017-03-23 07:45:44 +0000410 /* Check the overall length and the internal bitmap length to avoid
411 * potential overflow. */
412 if (nla_len(rp) < ulen ||
413 xfrm_replay_state_esn_len(replay_esn) != ulen ||
414 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415 return -EINVAL;
416
Andy Whitcroft64a54652017-03-22 07:29:31 +0000417 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
418 return -EINVAL;
419
Steffen Klasserte2b19122011-03-28 19:47:30 +0000420 return 0;
421}
422
Steffen Klassertd8647b72011-03-08 00:10:27 +0000423static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
424 struct xfrm_replay_state_esn **preplay_esn,
425 struct nlattr *rta)
426{
427 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000428 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000429
430 if (!rta)
431 return 0;
432
433 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000434 klen = xfrm_replay_state_esn_len(up);
435 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000436
Mathias Krauseecd79182012-09-20 10:01:49 +0000437 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000438 if (!p)
439 return -ENOMEM;
440
Mathias Krauseecd79182012-09-20 10:01:49 +0000441 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000442 if (!pp) {
443 kfree(p);
444 return -ENOMEM;
445 }
446
Mathias Krauseecd79182012-09-20 10:01:49 +0000447 memcpy(p, up, ulen);
448 memcpy(pp, up, ulen);
449
Steffen Klassertd8647b72011-03-08 00:10:27 +0000450 *replay_esn = p;
451 *preplay_esn = pp;
452
453 return 0;
454}
455
Joy Latten661697f2007-04-13 16:14:35 -0700456static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800457{
Trent Jaegerdf718372005-12-13 23:12:27 -0800458 int len = 0;
459
460 if (xfrm_ctx) {
461 len += sizeof(struct xfrm_user_sec_ctx);
462 len += xfrm_ctx->ctx_len;
463 }
464 return len;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
468{
469 memcpy(&x->id, &p->id, sizeof(x->id));
470 memcpy(&x->sel, &p->sel, sizeof(x->sel));
471 memcpy(&x->lft, &p->lft, sizeof(x->lft));
472 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800473 x->props.replay_window = min_t(unsigned int, p->replay_window,
474 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 x->props.reqid = p->reqid;
476 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700477 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700479
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700480 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700481 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800484/*
485 * someday when pfkey also has support, we could have the code
486 * somehow made shareable and move it to xfrm_state.c - JHS
487 *
488*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000489static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
490 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800491{
Thomas Graf5424f322007-08-22 14:01:33 -0700492 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000493 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700494 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
495 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
496 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497
Steffen Klassertd8647b72011-03-08 00:10:27 +0000498 if (re) {
499 struct xfrm_replay_state_esn *replay_esn;
500 replay_esn = nla_data(re);
501 memcpy(x->replay_esn, replay_esn,
502 xfrm_replay_state_esn_len(replay_esn));
503 memcpy(x->preplay_esn, replay_esn,
504 xfrm_replay_state_esn_len(replay_esn));
505 }
506
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800507 if (rp) {
508 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700509 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800510 memcpy(&x->replay, replay, sizeof(*replay));
511 memcpy(&x->preplay, replay, sizeof(*replay));
512 }
513
514 if (lt) {
515 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700516 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800517 x->curlft.bytes = ltime->bytes;
518 x->curlft.packets = ltime->packets;
519 x->curlft.add_time = ltime->add_time;
520 x->curlft.use_time = ltime->use_time;
521 }
522
Thomas Grafcf5cb792007-08-22 13:59:04 -0700523 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700524 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800525
Thomas Grafcf5cb792007-08-22 13:59:04 -0700526 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700527 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800528}
529
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800530static struct xfrm_state *xfrm_state_construct(struct net *net,
531 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700532 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int *errp)
534{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800535 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int err = -ENOMEM;
537
538 if (!x)
539 goto error_no_put;
540
541 copy_from_user_state(x, p);
542
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100543 if (attrs[XFRMA_SA_EXTRA_FLAGS])
544 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
545
Herbert Xu69b01372015-05-27 16:03:45 +0800546 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800547 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000548 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
549 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000551 if (!x->props.aalgo) {
552 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
553 attrs[XFRMA_ALG_AUTH])))
554 goto error;
555 }
Herbert Xu69b01372015-05-27 16:03:45 +0800556 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 goto error;
558 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
559 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700560 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700562
563 if (attrs[XFRMA_ENCAP]) {
564 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
565 sizeof(*x->encap), GFP_KERNEL);
566 if (x->encap == NULL)
567 goto error;
568 }
569
Martin Willi35d28562010-12-08 04:37:49 +0000570 if (attrs[XFRMA_TFCPAD])
571 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
572
Thomas Graffd211502007-09-06 03:28:08 -0700573 if (attrs[XFRMA_COADDR]) {
574 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
575 sizeof(*x->coaddr), GFP_KERNEL);
576 if (x->coaddr == NULL)
577 goto error;
578 }
579
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000580 xfrm_mark_get(attrs, &x->mark);
581
Lorenzo Colitti34e23de2017-08-11 02:11:33 +0900582 if (attrs[XFRMA_OUTPUT_MARK])
583 x->props.output_mark = nla_get_u32(attrs[XFRMA_OUTPUT_MARK]);
584
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700585 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (err)
587 goto error;
588
Mathias Krause2f30ea52016-09-08 18:09:57 +0200589 if (attrs[XFRMA_SEC_CTX]) {
590 err = security_xfrm_state_alloc(x,
591 nla_data(attrs[XFRMA_SEC_CTX]));
592 if (err)
593 goto error;
594 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800595
Steffen Klassertd8647b72011-03-08 00:10:27 +0000596 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
597 attrs[XFRMA_REPLAY_ESN_VAL])))
598 goto error;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800601 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800602 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800603 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800604
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000605 if ((err = xfrm_init_replay(x)))
606 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800607
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000608 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000609 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 return x;
612
613error:
614 x->km.state = XFRM_STATE_DEAD;
615 xfrm_state_put(x);
616error_no_put:
617 *errp = err;
618 return NULL;
619}
620
Christoph Hellwig22e70052007-01-02 15:22:30 -0800621static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700622 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800624 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700625 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct xfrm_state *x;
627 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700628 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Thomas Graf35a7aa02007-08-22 14:00:40 -0700630 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (err)
632 return err;
633
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800634 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (!x)
636 return err;
637
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700638 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
640 err = xfrm_state_add(x);
641 else
642 err = xfrm_state_update(x);
643
Tetsuo Handa2e710292014-04-22 21:48:30 +0900644 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (err < 0) {
647 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800648 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700649 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700652 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000653 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700654 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700655
656 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700657out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700658 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return err;
660}
661
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800662static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
663 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700664 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700665 int *errp)
666{
667 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000668 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700669 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000670 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700671
672 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
673 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000674 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700675 } else {
676 xfrm_address_t *saddr = NULL;
677
Thomas Graf35a7aa02007-08-22 14:00:40 -0700678 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700679 if (!saddr) {
680 err = -EINVAL;
681 goto out;
682 }
683
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800684 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000685 x = xfrm_state_lookup_byaddr(net, mark,
686 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800687 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700688 }
689
690 out:
691 if (!x && errp)
692 *errp = err;
693 return x;
694}
695
Christoph Hellwig22e70052007-01-02 15:22:30 -0800696static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700697 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800699 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700701 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700702 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700703 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800705 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700707 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
David S. Miller6f68dc32006-06-08 23:58:52 -0700709 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700710 goto out;
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700713 err = -EPERM;
714 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700717 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600718
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700719 if (err < 0)
720 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700721
722 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000723 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700724 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700725 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700727out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900728 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700729 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700730 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
734{
Mathias Krausef778a632012-09-19 11:33:39 +0000735 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 memcpy(&p->id, &x->id, sizeof(p->id));
737 memcpy(&p->sel, &x->sel, sizeof(p->sel));
738 memcpy(&p->lft, &x->lft, sizeof(p->lft));
739 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400740 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
741 put_unaligned(x->stats.replay, &p->stats.replay);
742 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700743 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 p->mode = x->props.mode;
745 p->replay_window = x->props.replay_window;
746 p->reqid = x->props.reqid;
747 p->family = x->props.family;
748 p->flags = x->props.flags;
749 p->seq = x->km.seq;
750}
751
752struct xfrm_dump_info {
753 struct sk_buff *in_skb;
754 struct sk_buff *out_skb;
755 u32 nlmsg_seq;
756 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757};
758
Thomas Grafc0144be2007-08-22 13:55:43 -0700759static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
760{
Thomas Grafc0144be2007-08-22 13:55:43 -0700761 struct xfrm_user_sec_ctx *uctx;
762 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700763 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700764
765 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
766 if (attr == NULL)
767 return -EMSGSIZE;
768
769 uctx = nla_data(attr);
770 uctx->exttype = XFRMA_SEC_CTX;
771 uctx->len = ctx_size;
772 uctx->ctx_doi = s->ctx_doi;
773 uctx->ctx_alg = s->ctx_alg;
774 uctx->ctx_len = s->ctx_len;
775 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
776
777 return 0;
778}
779
Martin Willi4447bb32009-11-25 00:29:52 +0000780static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
781{
782 struct xfrm_algo *algo;
783 struct nlattr *nla;
784
785 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
786 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
787 if (!nla)
788 return -EMSGSIZE;
789
790 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000791 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000792 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
793 algo->alg_key_len = auth->alg_key_len;
794
795 return 0;
796}
797
Herbert Xu68325d32007-10-09 13:30:57 -0700798/* Don't change this without updating xfrm_sa_len! */
799static int copy_to_user_state_extra(struct xfrm_state *x,
800 struct xfrm_usersa_info *p,
801 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700803 int ret = 0;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 copy_to_user_state(x, p);
806
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100807 if (x->props.extra_flags) {
808 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
809 x->props.extra_flags);
810 if (ret)
811 goto out;
812 }
813
David S. Miller1d1e34d2012-06-27 21:57:03 -0700814 if (x->coaddr) {
815 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
816 if (ret)
817 goto out;
818 }
819 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200820 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
821 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700822 if (ret)
823 goto out;
824 }
825 if (x->aead) {
826 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
827 if (ret)
828 goto out;
829 }
830 if (x->aalg) {
831 ret = copy_to_user_auth(x->aalg, skb);
832 if (!ret)
833 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
834 xfrm_alg_auth_len(x->aalg), x->aalg);
835 if (ret)
836 goto out;
837 }
838 if (x->ealg) {
839 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
840 if (ret)
841 goto out;
842 }
843 if (x->calg) {
844 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
845 if (ret)
846 goto out;
847 }
848 if (x->encap) {
849 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
850 if (ret)
851 goto out;
852 }
853 if (x->tfcpad) {
854 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
855 if (ret)
856 goto out;
857 }
858 ret = xfrm_mark_put(skb, &x->mark);
859 if (ret)
860 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100861 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700862 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
863 xfrm_replay_state_esn_len(x->replay_esn),
864 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100865 else
866 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
867 &x->replay);
868 if (ret)
869 goto out;
Lorenzo Colitti34e23de2017-08-11 02:11:33 +0900870 if (x->props.output_mark) {
871 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
872 if (ret)
873 goto out;
874 }
Steffen Klassert2a5cc532017-08-31 10:37:00 +0200875 if (x->security)
876 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700877out:
878 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700879}
880
881static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
882{
883 struct xfrm_dump_info *sp = ptr;
884 struct sk_buff *in_skb = sp->in_skb;
885 struct sk_buff *skb = sp->out_skb;
886 struct xfrm_usersa_info *p;
887 struct nlmsghdr *nlh;
888 int err;
889
Eric W. Biederman15e47302012-09-07 20:12:54 +0000890 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700891 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
892 if (nlh == NULL)
893 return -EMSGSIZE;
894
895 p = nlmsg_data(nlh);
896
897 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700898 if (err) {
899 nlmsg_cancel(skb, nlh);
900 return err;
901 }
Thomas Graf98250692007-08-22 12:47:26 -0700902 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Timo Teras4c563f72008-02-28 21:31:08 -0800906static int xfrm_dump_sa_done(struct netlink_callback *cb)
907{
908 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800909 struct sock *sk = cb->skb->sk;
910 struct net *net = sock_net(sk);
911
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200912 if (cb->args[0])
913 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800914 return 0;
915}
916
Nicolas Dichteld3623092014-02-14 15:30:36 +0100917static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
919{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800920 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800921 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct xfrm_dump_info info;
923
Timo Teras4c563f72008-02-28 21:31:08 -0800924 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
925 sizeof(cb->args) - sizeof(cb->args[0]));
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 info.in_skb = cb->skb;
928 info.out_skb = skb;
929 info.nlmsg_seq = cb->nlh->nlmsg_seq;
930 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800931
932 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100933 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100934 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100935 u8 proto = 0;
936 int err;
937
Nicolas Dichteld3623092014-02-14 15:30:36 +0100938 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
939 xfrma_policy);
940 if (err < 0)
941 return err;
942
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100943 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200944 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
945 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100946 if (filter == NULL)
947 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100948 }
949
950 if (attrs[XFRMA_PROTO])
951 proto = nla_get_u8(attrs[XFRMA_PROTO]);
952
953 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200954 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800955 }
956
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800957 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 return skb->len;
960}
961
962static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
963 struct xfrm_state *x, u32 seq)
964{
965 struct xfrm_dump_info info;
966 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000967 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Thomas Graf7deb2262007-08-22 13:57:39 -0700969 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (!skb)
971 return ERR_PTR(-ENOMEM);
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 info.in_skb = in_skb;
974 info.out_skb = skb;
975 info.nlmsg_seq = seq;
976 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Mathias Krause864745d2012-09-13 11:41:26 +0000978 err = dump_one_state(x, 0, &info);
979 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000981 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983
984 return skb;
985}
986
Michal Kubecek21ee5432014-06-03 10:26:06 +0200987/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
988 * Must be called with RCU read lock.
989 */
990static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
991 u32 pid, unsigned int group)
992{
993 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
994
995 if (nlsk)
996 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
997 else
998 return -1;
999}
1000
Thomas Graf7deb2262007-08-22 13:57:39 -07001001static inline size_t xfrm_spdinfo_msgsize(void)
1002{
1003 return NLMSG_ALIGN(4)
1004 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001005 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1006 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1007 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001008}
1009
Alexey Dobriyane0710412010-01-23 13:37:10 +00001010static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001011 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001012{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001013 struct xfrmk_spdinfo si;
1014 struct xfrmu_spdinfo spc;
1015 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001016 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001017 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001018 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001019 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001020 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001021
Eric W. Biederman15e47302012-09-07 20:12:54 +00001022 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001023 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001024 return -EMSGSIZE;
1025
1026 f = nlmsg_data(nlh);
1027 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001028 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001029 spc.incnt = si.incnt;
1030 spc.outcnt = si.outcnt;
1031 spc.fwdcnt = si.fwdcnt;
1032 spc.inscnt = si.inscnt;
1033 spc.outscnt = si.outscnt;
1034 spc.fwdscnt = si.fwdscnt;
1035 sph.spdhcnt = si.spdhcnt;
1036 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001037
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001038 do {
1039 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1040
1041 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1042 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1043 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1044 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1045 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1046
David S. Miller1d1e34d2012-06-27 21:57:03 -07001047 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1048 if (!err)
1049 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001050 if (!err)
1051 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1052 if (!err)
1053 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001054 if (err) {
1055 nlmsg_cancel(skb, nlh);
1056 return err;
1057 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001058
Johannes Berg053c0952015-01-16 22:09:00 +01001059 nlmsg_end(skb, nlh);
1060 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001061}
1062
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001063static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1064 struct nlattr **attrs)
1065{
1066 struct net *net = sock_net(skb->sk);
1067 struct xfrmu_spdhthresh *thresh4 = NULL;
1068 struct xfrmu_spdhthresh *thresh6 = NULL;
1069
1070 /* selector prefixlen thresholds to hash policies */
1071 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1072 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1073
1074 if (nla_len(rta) < sizeof(*thresh4))
1075 return -EINVAL;
1076 thresh4 = nla_data(rta);
1077 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1078 return -EINVAL;
1079 }
1080 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1081 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1082
1083 if (nla_len(rta) < sizeof(*thresh6))
1084 return -EINVAL;
1085 thresh6 = nla_data(rta);
1086 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1087 return -EINVAL;
1088 }
1089
1090 if (thresh4 || thresh6) {
1091 write_seqlock(&net->xfrm.policy_hthresh.lock);
1092 if (thresh4) {
1093 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1094 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1095 }
1096 if (thresh6) {
1097 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1098 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1099 }
1100 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1101
1102 xfrm_policy_hash_rebuild(net);
1103 }
1104
1105 return 0;
1106}
1107
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001108static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001109 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001110{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001111 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001112 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001113 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001114 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001115 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001116
Thomas Graf7deb2262007-08-22 13:57:39 -07001117 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001118 if (r_skb == NULL)
1119 return -ENOMEM;
1120
Eric W. Biederman15e47302012-09-07 20:12:54 +00001121 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001122 BUG();
1123
Eric W. Biederman15e47302012-09-07 20:12:54 +00001124 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001125}
1126
Thomas Graf7deb2262007-08-22 13:57:39 -07001127static inline size_t xfrm_sadinfo_msgsize(void)
1128{
1129 return NLMSG_ALIGN(4)
1130 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1131 + nla_total_size(4); /* XFRMA_SAD_CNT */
1132}
1133
Alexey Dobriyane0710412010-01-23 13:37:10 +00001134static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001135 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001136{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001137 struct xfrmk_sadinfo si;
1138 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001139 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001140 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001141 u32 *f;
1142
Eric W. Biederman15e47302012-09-07 20:12:54 +00001143 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001144 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001145 return -EMSGSIZE;
1146
1147 f = nlmsg_data(nlh);
1148 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001149 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001150
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001151 sh.sadhmcnt = si.sadhmcnt;
1152 sh.sadhcnt = si.sadhcnt;
1153
David S. Miller1d1e34d2012-06-27 21:57:03 -07001154 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1155 if (!err)
1156 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1157 if (err) {
1158 nlmsg_cancel(skb, nlh);
1159 return err;
1160 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001161
Johannes Berg053c0952015-01-16 22:09:00 +01001162 nlmsg_end(skb, nlh);
1163 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001164}
1165
1166static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001167 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001168{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001169 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001171 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001172 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001173 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001174
Thomas Graf7deb2262007-08-22 13:57:39 -07001175 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001176 if (r_skb == NULL)
1177 return -ENOMEM;
1178
Eric W. Biederman15e47302012-09-07 20:12:54 +00001179 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001180 BUG();
1181
Eric W. Biederman15e47302012-09-07 20:12:54 +00001182 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001183}
1184
Christoph Hellwig22e70052007-01-02 15:22:30 -08001185static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001186 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001188 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001189 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct xfrm_state *x;
1191 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001192 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001194 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (x == NULL)
1196 goto out_noput;
1197
1198 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1199 if (IS_ERR(resp_skb)) {
1200 err = PTR_ERR(resp_skb);
1201 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001202 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204 xfrm_state_put(x);
1205out_noput:
1206 return err;
1207}
1208
Christoph Hellwig22e70052007-01-02 15:22:30 -08001209static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001210 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001212 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 struct xfrm_state *x;
1214 struct xfrm_userspi_info *p;
1215 struct sk_buff *resp_skb;
1216 xfrm_address_t *daddr;
1217 int family;
1218 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001219 u32 mark;
1220 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Thomas Graf7b67c852007-08-22 13:53:52 -07001222 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001223 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (err)
1225 goto out_noput;
1226
1227 family = p->info.family;
1228 daddr = &p->info.id.daddr;
1229
1230 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001231
1232 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001234 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001235 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 xfrm_state_put(x);
1237 x = NULL;
1238 }
1239 }
1240
1241 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001242 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 p->info.id.proto, daddr,
1244 &p->info.saddr, 1,
1245 family);
1246 err = -ENOENT;
1247 if (x == NULL)
1248 goto out_noput;
1249
Herbert Xu658b2192007-10-09 13:29:52 -07001250 err = xfrm_alloc_spi(x, p->min, p->max);
1251 if (err)
1252 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Herbert Xu658b2192007-10-09 13:29:52 -07001254 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (IS_ERR(resp_skb)) {
1256 err = PTR_ERR(resp_skb);
1257 goto out;
1258 }
1259
Eric W. Biederman15e47302012-09-07 20:12:54 +00001260 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262out:
1263 xfrm_state_put(x);
1264out_noput:
1265 return err;
1266}
1267
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001268static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 switch (dir) {
1271 case XFRM_POLICY_IN:
1272 case XFRM_POLICY_OUT:
1273 case XFRM_POLICY_FWD:
1274 break;
1275
1276 default:
1277 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 return 0;
1281}
1282
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001283static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001284{
1285 switch (type) {
1286 case XFRM_POLICY_TYPE_MAIN:
1287#ifdef CONFIG_XFRM_SUB_POLICY
1288 case XFRM_POLICY_TYPE_SUB:
1289#endif
1290 break;
1291
1292 default:
1293 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001294 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001295
1296 return 0;
1297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1300{
Fan Due682adf2013-11-07 17:47:48 +08001301 int ret;
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 switch (p->share) {
1304 case XFRM_SHARE_ANY:
1305 case XFRM_SHARE_SESSION:
1306 case XFRM_SHARE_USER:
1307 case XFRM_SHARE_UNIQUE:
1308 break;
1309
1310 default:
1311 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 switch (p->action) {
1315 case XFRM_POLICY_ALLOW:
1316 case XFRM_POLICY_BLOCK:
1317 break;
1318
1319 default:
1320 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 switch (p->sel.family) {
1324 case AF_INET:
1325 break;
1326
1327 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001328#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
1330#else
1331 return -EAFNOSUPPORT;
1332#endif
1333
1334 default:
1335 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Fan Due682adf2013-11-07 17:47:48 +08001338 ret = verify_policy_dir(p->dir);
1339 if (ret)
1340 return ret;
1341 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1342 return -EINVAL;
1343
1344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
Thomas Graf5424f322007-08-22 14:01:33 -07001347static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001348{
Thomas Graf5424f322007-08-22 14:01:33 -07001349 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001350 struct xfrm_user_sec_ctx *uctx;
1351
1352 if (!rt)
1353 return 0;
1354
Thomas Graf5424f322007-08-22 14:01:33 -07001355 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001356 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001357}
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1360 int nr)
1361{
1362 int i;
1363
1364 xp->xfrm_nr = nr;
1365 for (i = 0; i < nr; i++, ut++) {
1366 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1367
1368 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1369 memcpy(&t->saddr, &ut->saddr,
1370 sizeof(xfrm_address_t));
1371 t->reqid = ut->reqid;
1372 t->mode = ut->mode;
1373 t->share = ut->share;
1374 t->optional = ut->optional;
1375 t->aalgos = ut->aalgos;
1376 t->ealgos = ut->ealgos;
1377 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001378 /* If all masks are ~0, then we allow all algorithms. */
1379 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001380 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382}
1383
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001384static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1385{
Steffen Klassert9a54c512017-12-08 08:07:25 +01001386 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001387 int i;
1388
1389 if (nr > XFRM_MAX_DEPTH)
1390 return -EINVAL;
1391
Steffen Klassert9a54c512017-12-08 08:07:25 +01001392 prev_family = family;
1393
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001394 for (i = 0; i < nr; i++) {
1395 /* We never validated the ut->family value, so many
1396 * applications simply leave it at zero. The check was
1397 * never made and ut->family was ignored because all
1398 * templates could be assumed to have the same family as
1399 * the policy itself. Now that we will have ipv4-in-ipv6
1400 * and ipv6-in-ipv4 tunnels, this is no longer true.
1401 */
1402 if (!ut[i].family)
1403 ut[i].family = family;
1404
Steffen Klassert9a54c512017-12-08 08:07:25 +01001405 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1406 (ut[i].family != prev_family))
1407 return -EINVAL;
1408
1409 prev_family = ut[i].family;
1410
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001411 switch (ut[i].family) {
1412 case AF_INET:
1413 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001414#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001415 case AF_INET6:
1416 break;
1417#endif
1418 default:
1419 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001420 }
Cong Wang85552882017-11-27 11:15:16 -08001421
1422 switch (ut[i].id.proto) {
1423 case IPPROTO_AH:
1424 case IPPROTO_ESP:
1425 case IPPROTO_COMP:
1426#if IS_ENABLED(CONFIG_IPV6)
1427 case IPPROTO_ROUTING:
1428 case IPPROTO_DSTOPTS:
1429#endif
1430 case IPSEC_PROTO_ANY:
1431 break;
1432 default:
1433 return -EINVAL;
1434 }
1435
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001436 }
1437
1438 return 0;
1439}
1440
Thomas Graf5424f322007-08-22 14:01:33 -07001441static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Thomas Graf5424f322007-08-22 14:01:33 -07001443 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 if (!rt) {
1446 pol->xfrm_nr = 0;
1447 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001448 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1449 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001450 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001452 err = validate_tmpl(nr, utmpl, pol->family);
1453 if (err)
1454 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Thomas Graf5424f322007-08-22 14:01:33 -07001456 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458 return 0;
1459}
1460
Thomas Graf5424f322007-08-22 14:01:33 -07001461static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001462{
Thomas Graf5424f322007-08-22 14:01:33 -07001463 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001464 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001465 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001466 int err;
1467
1468 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001469 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001470 type = upt->type;
1471 }
1472
1473 err = verify_policy_type(type);
1474 if (err)
1475 return err;
1476
1477 *tp = type;
1478 return 0;
1479}
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1482{
1483 xp->priority = p->priority;
1484 xp->index = p->index;
1485 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1486 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1487 xp->action = p->action;
1488 xp->flags = p->flags;
1489 xp->family = p->sel.family;
1490 /* XXX xp->share = p->share; */
1491}
1492
1493static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1494{
Mathias Krause7b789832012-09-19 11:33:40 +00001495 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1497 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1498 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1499 p->priority = xp->priority;
1500 p->index = xp->index;
1501 p->sel.family = xp->family;
1502 p->dir = dir;
1503 p->action = xp->action;
1504 p->flags = xp->flags;
1505 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1506}
1507
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001508static 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 -07001509{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001510 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 int err;
1512
1513 if (!xp) {
1514 *errp = -ENOMEM;
1515 return NULL;
1516 }
1517
1518 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001519
Thomas Graf35a7aa02007-08-22 14:00:40 -07001520 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001521 if (err)
1522 goto error;
1523
Thomas Graf35a7aa02007-08-22 14:00:40 -07001524 if (!(err = copy_from_user_tmpl(xp, attrs)))
1525 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001526 if (err)
1527 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001529 xfrm_mark_get(attrs, &xp->mark);
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001532 error:
1533 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001534 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001535 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001536 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Christoph Hellwig22e70052007-01-02 15:22:30 -08001539static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001540 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001542 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001543 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001545 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int err;
1547 int excl;
1548
1549 err = verify_newpolicy_info(p);
1550 if (err)
1551 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001552 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001553 if (err)
1554 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001556 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (!xp)
1558 return err;
1559
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001560 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001561 * Aha! this is anti-netlink really i.e more pfkey derived
1562 * in netlink excl is a flag and you wouldnt need
1563 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1565 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001566 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001569 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 kfree(xp);
1571 return err;
1572 }
1573
Herbert Xuf60f6b82005-06-18 22:44:37 -07001574 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001575 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001576 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001577 km_policy_notify(xp, p->dir, &c);
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 xfrm_pol_put(xp);
1580
1581 return 0;
1582}
1583
1584static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1585{
1586 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1587 int i;
1588
1589 if (xp->xfrm_nr == 0)
1590 return 0;
1591
1592 for (i = 0; i < xp->xfrm_nr; i++) {
1593 struct xfrm_user_tmpl *up = &vec[i];
1594 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1595
Mathias Krause1f868402012-09-19 11:33:41 +00001596 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001598 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1600 up->reqid = kp->reqid;
1601 up->mode = kp->mode;
1602 up->share = kp->share;
1603 up->optional = kp->optional;
1604 up->aalgos = kp->aalgos;
1605 up->ealgos = kp->ealgos;
1606 up->calgos = kp->calgos;
1607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Thomas Grafc0144be2007-08-22 13:55:43 -07001609 return nla_put(skb, XFRMA_TMPL,
1610 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001611}
1612
Serge Hallyn0d681622006-07-24 23:30:44 -07001613static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1614{
1615 if (x->security) {
1616 return copy_sec_ctx(x->security, skb);
1617 }
1618 return 0;
1619}
1620
1621static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1622{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001623 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001624 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001625 return 0;
1626}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001627static inline size_t userpolicy_type_attrsize(void)
1628{
1629#ifdef CONFIG_XFRM_SUB_POLICY
1630 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1631#else
1632 return 0;
1633#endif
1634}
Serge Hallyn0d681622006-07-24 23:30:44 -07001635
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001636#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001637static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001638{
Thomas Grafc0144be2007-08-22 13:55:43 -07001639 struct xfrm_userpolicy_type upt = {
1640 .type = type,
1641 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001642
Thomas Grafc0144be2007-08-22 13:55:43 -07001643 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001644}
1645
1646#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001647static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001648{
1649 return 0;
1650}
1651#endif
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1654{
1655 struct xfrm_dump_info *sp = ptr;
1656 struct xfrm_userpolicy_info *p;
1657 struct sk_buff *in_skb = sp->in_skb;
1658 struct sk_buff *skb = sp->out_skb;
1659 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001660 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Eric W. Biederman15e47302012-09-07 20:12:54 +00001662 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001663 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1664 if (nlh == NULL)
1665 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Thomas Graf7b67c852007-08-22 13:53:52 -07001667 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001669 err = copy_to_user_tmpl(xp, skb);
1670 if (!err)
1671 err = copy_to_user_sec_ctx(xp, skb);
1672 if (!err)
1673 err = copy_to_user_policy_type(xp->type, skb);
1674 if (!err)
1675 err = xfrm_mark_put(skb, &xp->mark);
1676 if (err) {
1677 nlmsg_cancel(skb, nlh);
1678 return err;
1679 }
Thomas Graf98250692007-08-22 12:47:26 -07001680 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Timo Teras4c563f72008-02-28 21:31:08 -08001684static int xfrm_dump_policy_done(struct netlink_callback *cb)
1685{
Herbert Xu543aabb2017-10-19 20:51:10 +08001686 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001687 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001688
Fan Du283bc9f2013-11-07 17:47:50 +08001689 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001690 return 0;
1691}
1692
Herbert Xu543aabb2017-10-19 20:51:10 +08001693static int xfrm_dump_policy_start(struct netlink_callback *cb)
1694{
1695 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1696
1697 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1698
1699 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1700 return 0;
1701}
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1704{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001705 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001706 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 struct xfrm_dump_info info;
1708
1709 info.in_skb = cb->skb;
1710 info.out_skb = skb;
1711 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1712 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001713
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001714 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 return skb->len;
1717}
1718
1719static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1720 struct xfrm_policy *xp,
1721 int dir, u32 seq)
1722{
1723 struct xfrm_dump_info info;
1724 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001725 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Thomas Graf7deb2262007-08-22 13:57:39 -07001727 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (!skb)
1729 return ERR_PTR(-ENOMEM);
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 info.in_skb = in_skb;
1732 info.out_skb = skb;
1733 info.nlmsg_seq = seq;
1734 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Mathias Krausec2546372012-09-14 09:58:32 +00001736 err = dump_one_policy(xp, dir, 0, &info);
1737 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001739 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741
1742 return skb;
1743}
1744
Christoph Hellwig22e70052007-01-02 15:22:30 -08001745static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001746 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001748 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 struct xfrm_policy *xp;
1750 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001751 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001753 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001755 struct xfrm_mark m;
1756 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Thomas Graf7b67c852007-08-22 13:53:52 -07001758 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1760
Thomas Graf35a7aa02007-08-22 14:00:40 -07001761 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001762 if (err)
1763 return err;
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 err = verify_policy_dir(p->dir);
1766 if (err)
1767 return err;
1768
1769 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001770 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001771 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001772 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001773 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001774
Thomas Graf35a7aa02007-08-22 14:00:40 -07001775 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001776 if (err)
1777 return err;
1778
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001779 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001780 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001781 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001782
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001783 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001784 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001785 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001786 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001787 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001788 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001789 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (xp == NULL)
1792 return -ENOENT;
1793
1794 if (!delete) {
1795 struct sk_buff *resp_skb;
1796
1797 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1798 if (IS_ERR(resp_skb)) {
1799 err = PTR_ERR(resp_skb);
1800 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001801 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001802 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001804 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001805 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001806
1807 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001808 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001809
Herbert Xue7443892005-06-18 22:44:18 -07001810 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001811 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001812 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001813 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001814 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001817out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001818 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001819 if (delete && err == 0)
1820 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return err;
1822}
1823
Christoph Hellwig22e70052007-01-02 15:22:30 -08001824static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001825 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001827 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001828 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001829 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001830 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Tetsuo Handa2e710292014-04-22 21:48:30 +09001832 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001833 if (err) {
1834 if (err == -ESRCH) /* empty table */
1835 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001836 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001837 }
Herbert Xubf088672005-06-18 22:44:00 -07001838 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001839 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001840 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001841 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001842 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001843 km_state_notify(NULL, &c);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return 0;
1846}
1847
Steffen Klassertd8647b72011-03-08 00:10:27 +00001848static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001849{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001850 size_t replay_size = x->replay_esn ?
1851 xfrm_replay_state_esn_len(x->replay_esn) :
1852 sizeof(struct xfrm_replay_state);
1853
Thomas Graf7deb2262007-08-22 13:57:39 -07001854 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001855 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001856 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001857 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001858 + nla_total_size(4) /* XFRM_AE_RTHR */
1859 + nla_total_size(4); /* XFRM_AE_ETHR */
1860}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001861
David S. Miller214e0052011-02-24 00:02:38 -05001862static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001863{
1864 struct xfrm_aevent_id *id;
1865 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001866 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001867
Eric W. Biederman15e47302012-09-07 20:12:54 +00001868 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001869 if (nlh == NULL)
1870 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001871
Thomas Graf7b67c852007-08-22 13:53:52 -07001872 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001873 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001874 id->sa_id.spi = x->id.spi;
1875 id->sa_id.family = x->props.family;
1876 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001877 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001878 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001879 id->flags = c->data.aevent;
1880
David S. Millerd0fde792012-03-29 04:02:26 -04001881 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001882 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1883 xfrm_replay_state_esn_len(x->replay_esn),
1884 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001885 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001886 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1887 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001888 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001889 if (err)
1890 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001891 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1892 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001893 if (err)
1894 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001895
David S. Miller1d1e34d2012-06-27 21:57:03 -07001896 if (id->flags & XFRM_AE_RTHR) {
1897 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1898 if (err)
1899 goto out_cancel;
1900 }
1901 if (id->flags & XFRM_AE_ETHR) {
1902 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1903 x->replay_maxage * 10 / HZ);
1904 if (err)
1905 goto out_cancel;
1906 }
1907 err = xfrm_mark_put(skb, &x->mark);
1908 if (err)
1909 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001910
Johannes Berg053c0952015-01-16 22:09:00 +01001911 nlmsg_end(skb, nlh);
1912 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001913
David S. Miller1d1e34d2012-06-27 21:57:03 -07001914out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001915 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001916 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001917}
1918
Christoph Hellwig22e70052007-01-02 15:22:30 -08001919static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001920 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001921{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001922 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001923 struct xfrm_state *x;
1924 struct sk_buff *r_skb;
1925 int err;
1926 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001927 u32 mark;
1928 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001929 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001930 struct xfrm_usersa_id *id = &p->sa_id;
1931
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001932 mark = xfrm_mark_get(attrs, &m);
1933
1934 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001935 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001936 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001937
1938 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1939 if (r_skb == NULL) {
1940 xfrm_state_put(x);
1941 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001942 }
1943
1944 /*
1945 * XXX: is this lock really needed - none of the other
1946 * gets lock (the concern is things getting updated
1947 * while we are still reading) - jhs
1948 */
1949 spin_lock_bh(&x->lock);
1950 c.data.aevent = p->flags;
1951 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001952 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001953
1954 if (build_aevent(r_skb, x, &c) < 0)
1955 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001956 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001957 spin_unlock_bh(&x->lock);
1958 xfrm_state_put(x);
1959 return err;
1960}
1961
Christoph Hellwig22e70052007-01-02 15:22:30 -08001962static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001963 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001965 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001966 struct xfrm_state *x;
1967 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001968 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001969 u32 mark = 0;
1970 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001971 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001972 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001973 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001974 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001975 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1976 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001977
Michael Rossberg4e077232015-09-29 11:25:08 +02001978 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001979 return err;
1980
1981 /* pedantic mode - thou shalt sayeth replaceth */
1982 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1983 return err;
1984
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001985 mark = xfrm_mark_get(attrs, &m);
1986
1987 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 -08001988 if (x == NULL)
1989 return -ESRCH;
1990
1991 if (x->km.state != XFRM_STATE_VALID)
1992 goto out;
1993
Steffen Klassert4479ff72013-09-09 09:39:01 +02001994 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001995 if (err)
1996 goto out;
1997
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001998 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001999 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002000 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002001
2002 c.event = nlh->nlmsg_type;
2003 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002004 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002005 c.data.aevent = XFRM_AE_CU;
2006 km_state_notify(x, &c);
2007 err = 0;
2008out:
2009 xfrm_state_put(x);
2010 return err;
2011}
2012
Christoph Hellwig22e70052007-01-02 15:22:30 -08002013static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002014 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002016 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002017 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002018 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002019 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002020
Thomas Graf35a7aa02007-08-22 14:00:40 -07002021 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002022 if (err)
2023 return err;
2024
Tetsuo Handa2e710292014-04-22 21:48:30 +09002025 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002026 if (err) {
2027 if (err == -ESRCH) /* empty table */
2028 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002029 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002030 }
2031
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002032 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002033 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002034 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002035 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002036 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002037 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return 0;
2039}
2040
Christoph Hellwig22e70052007-01-02 15:22:30 -08002041static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002042 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002043{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002044 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002045 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002046 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002047 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002048 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002049 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002050 struct xfrm_mark m;
2051 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002052
Thomas Graf35a7aa02007-08-22 14:00:40 -07002053 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002054 if (err)
2055 return err;
2056
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002057 err = verify_policy_dir(p->dir);
2058 if (err)
2059 return err;
2060
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002061 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002062 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002063 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002064 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002065 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002066
Thomas Graf35a7aa02007-08-22 14:00:40 -07002067 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002068 if (err)
2069 return err;
2070
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002071 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002072 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002073 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002074
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002075 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002076 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002077 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002078 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002079 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002080 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002081 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002082 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002083 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002084 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002085
Timo Teräsea2dea92010-03-31 00:17:05 +00002086 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002087 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002088
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002089 err = 0;
2090 if (up->hard) {
2091 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002092 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002093 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002094 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002095
2096out:
2097 xfrm_pol_put(xp);
2098 return err;
2099}
2100
Christoph Hellwig22e70052007-01-02 15:22:30 -08002101static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002102 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002103{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002104 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002105 struct xfrm_state *x;
2106 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002107 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002108 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002109 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002110 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002111
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002112 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002113
David S. Miller3a765aa2007-02-26 14:52:21 -08002114 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002115 if (x == NULL)
2116 return err;
2117
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002118 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002119 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002120 if (x->km.state != XFRM_STATE_VALID)
2121 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002122 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002123
Joy Latten161a09e2006-11-27 13:11:54 -06002124 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002125 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002126 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002127 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002128 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002129out:
2130 spin_unlock_bh(&x->lock);
2131 xfrm_state_put(x);
2132 return err;
2133}
2134
Christoph Hellwig22e70052007-01-02 15:22:30 -08002135static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002136 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002137{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002138 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002139 struct xfrm_policy *xp;
2140 struct xfrm_user_tmpl *ut;
2141 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002142 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002143 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002144
Thomas Graf7b67c852007-08-22 13:53:52 -07002145 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002146 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002147 int err = -ENOMEM;
2148
2149 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002150 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002151
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002152 xfrm_mark_get(attrs, &mark);
2153
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002154 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002155 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002156 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002157
2158 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002159 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002160 if (!xp)
2161 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002162
2163 memcpy(&x->id, &ua->id, sizeof(ua->id));
2164 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2165 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002166 xp->mark.m = x->mark.m = mark.m;
2167 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002168 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002169 /* extract the templates and for each call km_key */
2170 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2171 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2172 memcpy(&x->id, &t->id, sizeof(x->id));
2173 x->props.mode = t->mode;
2174 x->props.reqid = t->reqid;
2175 x->props.family = ut->family;
2176 t->aalgos = ua->aalgos;
2177 t->ealgos = ua->ealgos;
2178 t->calgos = ua->calgos;
2179 err = km_query(x, t, xp);
2180
2181 }
2182
2183 kfree(x);
2184 kfree(xp);
2185
2186 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002187
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002188free_state:
2189 kfree(x);
2190nomem:
2191 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002192}
2193
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002194#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002195static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002196 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002197 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002198{
Thomas Graf5424f322007-08-22 14:01:33 -07002199 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002200 struct xfrm_user_migrate *um;
2201 int i, num_migrate;
2202
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002203 if (k != NULL) {
2204 struct xfrm_user_kmaddress *uk;
2205
2206 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2207 memcpy(&k->local, &uk->local, sizeof(k->local));
2208 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2209 k->family = uk->family;
2210 k->reserved = uk->reserved;
2211 }
2212
Thomas Graf5424f322007-08-22 14:01:33 -07002213 um = nla_data(rt);
2214 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002215
2216 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2217 return -EINVAL;
2218
2219 for (i = 0; i < num_migrate; i++, um++, ma++) {
2220 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2221 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2222 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2223 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2224
2225 ma->proto = um->proto;
2226 ma->mode = um->mode;
2227 ma->reqid = um->reqid;
2228
2229 ma->old_family = um->old_family;
2230 ma->new_family = um->new_family;
2231 }
2232
2233 *num = i;
2234 return 0;
2235}
2236
2237static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002238 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002239{
Thomas Graf7b67c852007-08-22 13:53:52 -07002240 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002241 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002242 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002243 u8 type;
2244 int err;
2245 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002246 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002247
Thomas Graf35a7aa02007-08-22 14:00:40 -07002248 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002249 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002250
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002251 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2252
Thomas Graf5424f322007-08-22 14:01:33 -07002253 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254 if (err)
2255 return err;
2256
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002257 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002258 if (err)
2259 return err;
2260
2261 if (!n)
2262 return 0;
2263
Fan Du8d549c42013-11-07 17:47:49 +08002264 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002265
2266 return 0;
2267}
2268#else
2269static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002270 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002271{
2272 return -ENOPROTOOPT;
2273}
2274#endif
2275
2276#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002277static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002278{
2279 struct xfrm_user_migrate um;
2280
2281 memset(&um, 0, sizeof(um));
2282 um.proto = m->proto;
2283 um.mode = m->mode;
2284 um.reqid = m->reqid;
2285 um.old_family = m->old_family;
2286 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2287 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2288 um.new_family = m->new_family;
2289 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2290 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2291
Thomas Grafc0144be2007-08-22 13:55:43 -07002292 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002293}
2294
David S. Miller183cad12011-02-24 00:28:01 -05002295static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002296{
2297 struct xfrm_user_kmaddress uk;
2298
2299 memset(&uk, 0, sizeof(uk));
2300 uk.family = k->family;
2301 uk.reserved = k->reserved;
2302 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002303 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002304
2305 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2306}
2307
2308static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002309{
2310 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002311 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2312 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2313 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002314}
2315
David S. Miller183cad12011-02-24 00:28:01 -05002316static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2317 int num_migrate, const struct xfrm_kmaddress *k,
2318 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002319{
David S. Miller183cad12011-02-24 00:28:01 -05002320 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002321 struct xfrm_userpolicy_id *pol_id;
2322 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002323 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002324
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002325 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2326 if (nlh == NULL)
2327 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328
Thomas Graf7b67c852007-08-22 13:53:52 -07002329 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002330 /* copy data from selector, dir, and type to the pol_id */
2331 memset(pol_id, 0, sizeof(*pol_id));
2332 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2333 pol_id->dir = dir;
2334
David S. Miller1d1e34d2012-06-27 21:57:03 -07002335 if (k != NULL) {
2336 err = copy_to_user_kmaddress(k, skb);
2337 if (err)
2338 goto out_cancel;
2339 }
2340 err = copy_to_user_policy_type(type, skb);
2341 if (err)
2342 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002344 err = copy_to_user_migrate(mp, skb);
2345 if (err)
2346 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002347 }
2348
Johannes Berg053c0952015-01-16 22:09:00 +01002349 nlmsg_end(skb, nlh);
2350 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002351
2352out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002353 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002354 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002355}
2356
David S. Miller183cad12011-02-24 00:28:01 -05002357static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2358 const struct xfrm_migrate *m, int num_migrate,
2359 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002360{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002361 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002362 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002363
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002364 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002365 if (skb == NULL)
2366 return -ENOMEM;
2367
2368 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002369 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002370 BUG();
2371
Michal Kubecek21ee5432014-06-03 10:26:06 +02002372 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002373}
2374#else
David S. Miller183cad12011-02-24 00:28:01 -05002375static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2376 const struct xfrm_migrate *m, int num_migrate,
2377 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002378{
2379 return -ENOPROTOOPT;
2380}
2381#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002382
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002383#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002384
2385static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002386 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002387 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2388 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2389 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2390 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2391 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2392 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002393 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002394 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002395 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002396 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002397 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002398 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002399 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002400 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2401 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002402 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002403 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002404 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002405 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002406 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407};
2408
Thomas Graf492b5582005-05-03 14:26:40 -07002409#undef XMSGSIZE
2410
Thomas Grafcf5cb792007-08-22 13:59:04 -07002411static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002412 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2413 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2414 [XFRMA_LASTUSED] = { .type = NLA_U64},
2415 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002416 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002417 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2418 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2419 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2420 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2421 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2422 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2423 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2424 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2425 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2426 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2427 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2428 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2429 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2430 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002431 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002432 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002433 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002434 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002435 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002436 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002437 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Lorenzo Colitti34e23de2017-08-11 02:11:33 +09002438 [XFRMA_OUTPUT_MARK] = { .len = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002439};
2440
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002441static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2442 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2443 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2444};
2445
Mathias Krause05600a72013-02-24 14:10:27 +01002446static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002447 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002448 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002450 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002451 const struct nla_policy *nla_pol;
2452 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002453} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2454 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2455 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2456 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002457 .dump = xfrm_dump_sa,
2458 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002459 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2460 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2461 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002462 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002463 .dump = xfrm_dump_policy,
2464 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002465 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002466 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002467 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002468 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2469 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002470 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002471 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2472 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002473 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2474 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002475 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002476 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002477 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2478 .nla_pol = xfrma_spd_policy,
2479 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002480 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481};
2482
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002483static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002485 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002486 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002487 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002488 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Fan Du74005992015-01-27 17:00:29 +08002490#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002491 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002492 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002493#endif
2494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002497 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 type -= XFRM_MSG_BASE;
2500 link = &xfrm_dispatch[type];
2501
2502 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002503 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002504 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Thomas Graf492b5582005-05-03 14:26:40 -07002506 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2507 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002508 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002510 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002512 {
2513 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002514 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002515 .dump = link->dump,
2516 .done = link->done,
2517 };
2518 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 }
2521
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002522 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2523 link->nla_max ? : XFRMA_MAX,
2524 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002525 if (err < 0)
2526 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002529 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Thomas Graf5424f322007-08-22 14:01:33 -07002531 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002534static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
Fan Du283bc9f2013-11-07 17:47:50 +08002536 struct net *net = sock_net(skb->sk);
2537
2538 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002539 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002540 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541}
2542
Thomas Graf7deb2262007-08-22 13:57:39 -07002543static inline size_t xfrm_expire_msgsize(void)
2544{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002545 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2546 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002547}
2548
David S. Miller214e0052011-02-24 00:02:38 -05002549static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
2551 struct xfrm_user_expire *ue;
2552 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002553 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Eric W. Biederman15e47302012-09-07 20:12:54 +00002555 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002556 if (nlh == NULL)
2557 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Thomas Graf7b67c852007-08-22 13:53:52 -07002559 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002561 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
David S. Miller1d1e34d2012-06-27 21:57:03 -07002563 err = xfrm_mark_put(skb, &x->mark);
2564 if (err)
2565 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002566
Johannes Berg053c0952015-01-16 22:09:00 +01002567 nlmsg_end(skb, nlh);
2568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569}
2570
David S. Miller214e0052011-02-24 00:02:38 -05002571static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002573 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 struct sk_buff *skb;
2575
Thomas Graf7deb2262007-08-22 13:57:39 -07002576 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (skb == NULL)
2578 return -ENOMEM;
2579
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002580 if (build_expire(skb, x, c) < 0) {
2581 kfree_skb(skb);
2582 return -EMSGSIZE;
2583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Michal Kubecek21ee5432014-06-03 10:26:06 +02002585 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586}
2587
David S. Miller214e0052011-02-24 00:02:38 -05002588static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002589{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002590 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002591 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002592
Steffen Klassertd8647b72011-03-08 00:10:27 +00002593 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002594 if (skb == NULL)
2595 return -ENOMEM;
2596
2597 if (build_aevent(skb, x, c) < 0)
2598 BUG();
2599
Michal Kubecek21ee5432014-06-03 10:26:06 +02002600 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002601}
2602
David S. Miller214e0052011-02-24 00:02:38 -05002603static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002604{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002605 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002606 struct xfrm_usersa_flush *p;
2607 struct nlmsghdr *nlh;
2608 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002609 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002610
Thomas Graf7deb2262007-08-22 13:57:39 -07002611 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002612 if (skb == NULL)
2613 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002614
Eric W. Biederman15e47302012-09-07 20:12:54 +00002615 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002616 if (nlh == NULL) {
2617 kfree_skb(skb);
2618 return -EMSGSIZE;
2619 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002620
Thomas Graf7b67c852007-08-22 13:53:52 -07002621 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002622 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002623
Thomas Graf98250692007-08-22 12:47:26 -07002624 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002625
Michal Kubecek21ee5432014-06-03 10:26:06 +02002626 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002627}
2628
Thomas Graf7deb2262007-08-22 13:57:39 -07002629static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002630{
Thomas Graf7deb2262007-08-22 13:57:39 -07002631 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002632 if (x->aead)
2633 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002634 if (x->aalg) {
2635 l += nla_total_size(sizeof(struct xfrm_algo) +
2636 (x->aalg->alg_key_len + 7) / 8);
2637 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2638 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002639 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002640 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002641 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002642 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002643 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002644 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002645 if (x->tfcpad)
2646 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002647 if (x->replay_esn)
2648 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002649 else
2650 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002651 if (x->security)
2652 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2653 x->security->ctx_len);
2654 if (x->coaddr)
2655 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002656 if (x->props.extra_flags)
2657 l += nla_total_size(sizeof(x->props.extra_flags));
Lorenzo Colitti34e23de2017-08-11 02:11:33 +09002658 if (x->props.output_mark)
2659 l += nla_total_size(sizeof(x->props.output_mark));
Herbert Xu68325d32007-10-09 13:30:57 -07002660
Herbert Xud26f3982007-11-13 21:47:08 -08002661 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002662 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002663
2664 return l;
2665}
2666
David S. Miller214e0052011-02-24 00:02:38 -05002667static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002668{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002669 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002670 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002671 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002672 struct nlmsghdr *nlh;
2673 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002674 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002675 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002676
2677 headlen = sizeof(*p);
2678 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002679 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002680 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002681 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002682 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002683 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002684
Thomas Graf7deb2262007-08-22 13:57:39 -07002685 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002686 if (skb == NULL)
2687 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002688
Eric W. Biederman15e47302012-09-07 20:12:54 +00002689 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002690 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002691 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002692 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002693
Thomas Graf7b67c852007-08-22 13:53:52 -07002694 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002695 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002696 struct nlattr *attr;
2697
Thomas Graf7b67c852007-08-22 13:53:52 -07002698 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002699 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2700 id->spi = x->id.spi;
2701 id->family = x->props.family;
2702 id->proto = x->id.proto;
2703
Thomas Grafc0144be2007-08-22 13:55:43 -07002704 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002705 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002706 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002707 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002708
2709 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002710 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002711 err = copy_to_user_state_extra(x, p, skb);
2712 if (err)
2713 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002714
Thomas Graf98250692007-08-22 12:47:26 -07002715 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002716
Michal Kubecek21ee5432014-06-03 10:26:06 +02002717 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002718
David S. Miller1d1e34d2012-06-27 21:57:03 -07002719out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002720 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002721 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002722}
2723
David S. Miller214e0052011-02-24 00:02:38 -05002724static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002725{
2726
2727 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002728 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002729 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002730 case XFRM_MSG_NEWAE:
2731 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002732 case XFRM_MSG_DELSA:
2733 case XFRM_MSG_UPDSA:
2734 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002735 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002736 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002737 return xfrm_notify_sa_flush(c);
2738 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002739 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2740 c->event);
2741 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002742 }
2743
2744 return 0;
2745
2746}
2747
Thomas Graf7deb2262007-08-22 13:57:39 -07002748static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2749 struct xfrm_policy *xp)
2750{
2751 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2752 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002753 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002754 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2755 + userpolicy_type_attrsize();
2756}
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002759 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002761 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 struct xfrm_user_acquire *ua;
2763 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002764 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002766 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2767 if (nlh == NULL)
2768 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Thomas Graf7b67c852007-08-22 13:53:52 -07002770 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 memcpy(&ua->id, &x->id, sizeof(ua->id));
2772 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2773 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002774 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 ua->aalgos = xt->aalgos;
2776 ua->ealgos = xt->ealgos;
2777 ua->calgos = xt->calgos;
2778 ua->seq = x->km.seq = seq;
2779
David S. Miller1d1e34d2012-06-27 21:57:03 -07002780 err = copy_to_user_tmpl(xp, skb);
2781 if (!err)
2782 err = copy_to_user_state_sec_ctx(x, skb);
2783 if (!err)
2784 err = copy_to_user_policy_type(xp->type, skb);
2785 if (!err)
2786 err = xfrm_mark_put(skb, &xp->mark);
2787 if (err) {
2788 nlmsg_cancel(skb, nlh);
2789 return err;
2790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Johannes Berg053c0952015-01-16 22:09:00 +01002792 nlmsg_end(skb, nlh);
2793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
2795
2796static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002797 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002799 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Thomas Graf7deb2262007-08-22 13:57:39 -07002802 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (skb == NULL)
2804 return -ENOMEM;
2805
Fan Du65e07362012-08-15 10:13:47 +08002806 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 BUG();
2808
Michal Kubecek21ee5432014-06-03 10:26:06 +02002809 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
2812/* User gives us xfrm_user_policy_info followed by an array of 0
2813 * or more templates.
2814 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002815static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 u8 *data, int len, int *dir)
2817{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002818 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2820 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2821 struct xfrm_policy *xp;
2822 int nr;
2823
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002824 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 case AF_INET:
2826 if (opt != IP_XFRM_POLICY) {
2827 *dir = -EOPNOTSUPP;
2828 return NULL;
2829 }
2830 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002831#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 case AF_INET6:
2833 if (opt != IPV6_XFRM_POLICY) {
2834 *dir = -EOPNOTSUPP;
2835 return NULL;
2836 }
2837 break;
2838#endif
2839 default:
2840 *dir = -EINVAL;
2841 return NULL;
2842 }
2843
2844 *dir = -EINVAL;
2845
2846 if (len < sizeof(*p) ||
2847 verify_newpolicy_info(p))
2848 return NULL;
2849
2850 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002851 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 return NULL;
2853
Herbert Xua4f1bac2005-07-26 15:43:17 -07002854 if (p->dir > XFRM_POLICY_OUT)
2855 return NULL;
2856
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002857 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (xp == NULL) {
2859 *dir = -ENOBUFS;
2860 return NULL;
2861 }
2862
2863 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002864 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 copy_templates(xp, ut, nr);
2866
2867 *dir = p->dir;
2868
2869 return xp;
2870}
2871
Thomas Graf7deb2262007-08-22 13:57:39 -07002872static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2873{
2874 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2875 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2876 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002877 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002878 + userpolicy_type_attrsize();
2879}
2880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002882 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
2884 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002885 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002886 struct nlmsghdr *nlh;
2887 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Eric W. Biederman15e47302012-09-07 20:12:54 +00002889 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002890 if (nlh == NULL)
2891 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
Thomas Graf7b67c852007-08-22 13:53:52 -07002893 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002895 err = copy_to_user_tmpl(xp, skb);
2896 if (!err)
2897 err = copy_to_user_sec_ctx(xp, skb);
2898 if (!err)
2899 err = copy_to_user_policy_type(xp->type, skb);
2900 if (!err)
2901 err = xfrm_mark_put(skb, &xp->mark);
2902 if (err) {
2903 nlmsg_cancel(skb, nlh);
2904 return err;
2905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 upe->hard = !!hard;
2907
Johannes Berg053c0952015-01-16 22:09:00 +01002908 nlmsg_end(skb, nlh);
2909 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910}
2911
David S. Miller214e0052011-02-24 00:02:38 -05002912static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002914 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Thomas Graf7deb2262007-08-22 13:57:39 -07002917 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 if (skb == NULL)
2919 return -ENOMEM;
2920
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002921 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 BUG();
2923
Michal Kubecek21ee5432014-06-03 10:26:06 +02002924 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925}
2926
David S. Miller214e0052011-02-24 00:02:38 -05002927static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002928{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002929 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002930 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002931 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002932 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002933 struct nlmsghdr *nlh;
2934 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002935 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002936
2937 headlen = sizeof(*p);
2938 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002939 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002940 headlen = sizeof(*id);
2941 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002942 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002943 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002944 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002945
Thomas Graf7deb2262007-08-22 13:57:39 -07002946 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947 if (skb == NULL)
2948 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002949
Eric W. Biederman15e47302012-09-07 20:12:54 +00002950 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002951 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002952 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002953 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002954
Thomas Graf7b67c852007-08-22 13:53:52 -07002955 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002956 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002957 struct nlattr *attr;
2958
Thomas Graf7b67c852007-08-22 13:53:52 -07002959 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002960 memset(id, 0, sizeof(*id));
2961 id->dir = dir;
2962 if (c->data.byid)
2963 id->index = xp->index;
2964 else
2965 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2966
Thomas Grafc0144be2007-08-22 13:55:43 -07002967 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002968 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002969 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002970 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002971
2972 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002973 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002974
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002975 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002976 err = copy_to_user_tmpl(xp, skb);
2977 if (!err)
2978 err = copy_to_user_policy_type(xp->type, skb);
2979 if (!err)
2980 err = xfrm_mark_put(skb, &xp->mark);
2981 if (err)
2982 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002983
Thomas Graf98250692007-08-22 12:47:26 -07002984 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002985
Michal Kubecek21ee5432014-06-03 10:26:06 +02002986 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002987
David S. Miller1d1e34d2012-06-27 21:57:03 -07002988out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002989 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002990 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002991}
2992
David S. Miller214e0052011-02-24 00:02:38 -05002993static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002994{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002995 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002996 struct nlmsghdr *nlh;
2997 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002998 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002999
Thomas Graf7deb2262007-08-22 13:57:39 -07003000 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003001 if (skb == NULL)
3002 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003003
Eric W. Biederman15e47302012-09-07 20:12:54 +00003004 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003005 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003006 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003007 goto out_free_skb;
3008 err = copy_to_user_policy_type(c->data.type, skb);
3009 if (err)
3010 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003011
Thomas Graf98250692007-08-22 12:47:26 -07003012 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003013
Michal Kubecek21ee5432014-06-03 10:26:06 +02003014 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003015
David S. Miller1d1e34d2012-06-27 21:57:03 -07003016out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003017 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003018 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003019}
3020
David S. Miller214e0052011-02-24 00:02:38 -05003021static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003022{
3023
3024 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003025 case XFRM_MSG_NEWPOLICY:
3026 case XFRM_MSG_UPDPOLICY:
3027 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003028 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003029 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003030 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003031 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003032 return xfrm_exp_policy_notify(xp, dir, c);
3033 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003034 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3035 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003036 }
3037
3038 return 0;
3039
3040}
3041
Thomas Graf7deb2262007-08-22 13:57:39 -07003042static inline size_t xfrm_report_msgsize(void)
3043{
3044 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3045}
3046
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003047static int build_report(struct sk_buff *skb, u8 proto,
3048 struct xfrm_selector *sel, xfrm_address_t *addr)
3049{
3050 struct xfrm_user_report *ur;
3051 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003052
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003053 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3054 if (nlh == NULL)
3055 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003056
Thomas Graf7b67c852007-08-22 13:53:52 -07003057 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003058 ur->proto = proto;
3059 memcpy(&ur->sel, sel, sizeof(ur->sel));
3060
David S. Miller1d1e34d2012-06-27 21:57:03 -07003061 if (addr) {
3062 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3063 if (err) {
3064 nlmsg_cancel(skb, nlh);
3065 return err;
3066 }
3067 }
Johannes Berg053c0952015-01-16 22:09:00 +01003068 nlmsg_end(skb, nlh);
3069 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003070}
3071
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003072static int xfrm_send_report(struct net *net, u8 proto,
3073 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003074{
3075 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003076
Thomas Graf7deb2262007-08-22 13:57:39 -07003077 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003078 if (skb == NULL)
3079 return -ENOMEM;
3080
3081 if (build_report(skb, proto, sel, addr) < 0)
3082 BUG();
3083
Michal Kubecek21ee5432014-06-03 10:26:06 +02003084 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003085}
3086
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003087static inline size_t xfrm_mapping_msgsize(void)
3088{
3089 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3090}
3091
3092static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3093 xfrm_address_t *new_saddr, __be16 new_sport)
3094{
3095 struct xfrm_user_mapping *um;
3096 struct nlmsghdr *nlh;
3097
3098 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3099 if (nlh == NULL)
3100 return -EMSGSIZE;
3101
3102 um = nlmsg_data(nlh);
3103
3104 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3105 um->id.spi = x->id.spi;
3106 um->id.family = x->props.family;
3107 um->id.proto = x->id.proto;
3108 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3109 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3110 um->new_sport = new_sport;
3111 um->old_sport = x->encap->encap_sport;
3112 um->reqid = x->props.reqid;
3113
Johannes Berg053c0952015-01-16 22:09:00 +01003114 nlmsg_end(skb, nlh);
3115 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003116}
3117
3118static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3119 __be16 sport)
3120{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003121 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003122 struct sk_buff *skb;
3123
3124 if (x->id.proto != IPPROTO_ESP)
3125 return -EINVAL;
3126
3127 if (!x->encap)
3128 return -EINVAL;
3129
3130 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3131 if (skb == NULL)
3132 return -ENOMEM;
3133
3134 if (build_mapping(skb, x, ipaddr, sport) < 0)
3135 BUG();
3136
Michal Kubecek21ee5432014-06-03 10:26:06 +02003137 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003138}
3139
Horia Geanta0f245582014-02-12 16:20:06 +02003140static bool xfrm_is_alive(const struct km_event *c)
3141{
3142 return (bool)xfrm_acquire_is_on(c->net);
3143}
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145static struct xfrm_mgr netlink_mgr = {
3146 .id = "netlink",
3147 .notify = xfrm_send_state_notify,
3148 .acquire = xfrm_send_acquire,
3149 .compile_policy = xfrm_compile_policy,
3150 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003151 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003152 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003153 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003154 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155};
3156
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003157static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158{
Patrick McHardybe336902006-03-20 22:40:54 -08003159 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003160 struct netlink_kernel_cfg cfg = {
3161 .groups = XFRMNLGRP_MAX,
3162 .input = xfrm_netlink_rcv,
3163 };
Patrick McHardybe336902006-03-20 22:40:54 -08003164
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003165 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003166 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003168 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003169 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 return 0;
3171}
3172
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003173static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003174{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003175 struct net *net;
3176 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003177 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003178 synchronize_net();
3179 list_for_each_entry(net, net_exit_list, exit_list)
3180 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003181}
3182
3183static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003184 .init = xfrm_user_net_init,
3185 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003186};
3187
3188static int __init xfrm_user_init(void)
3189{
3190 int rv;
3191
3192 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3193
3194 rv = register_pernet_subsys(&xfrm_user_net_ops);
3195 if (rv < 0)
3196 return rv;
3197 rv = xfrm_register_km(&netlink_mgr);
3198 if (rv < 0)
3199 unregister_pernet_subsys(&xfrm_user_net_ops);
3200 return rv;
3201}
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203static void __exit xfrm_user_exit(void)
3204{
3205 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003206 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207}
3208
3209module_init(xfrm_user_init);
3210module_exit(xfrm_user_exit);
3211MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003212MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003213