blob: 6e768093d7c8abfdf6f3b33fc931a9a84af6a241 [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
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700582 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (err)
584 goto error;
585
Mathias Krause2f30ea52016-09-08 18:09:57 +0200586 if (attrs[XFRMA_SEC_CTX]) {
587 err = security_xfrm_state_alloc(x,
588 nla_data(attrs[XFRMA_SEC_CTX]));
589 if (err)
590 goto error;
591 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800592
Steffen Klassertd8647b72011-03-08 00:10:27 +0000593 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
594 attrs[XFRMA_REPLAY_ESN_VAL])))
595 goto error;
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800598 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800599 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800600 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800601
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000602 if ((err = xfrm_init_replay(x)))
603 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800604
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000605 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000606 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 return x;
609
610error:
611 x->km.state = XFRM_STATE_DEAD;
612 xfrm_state_put(x);
613error_no_put:
614 *errp = err;
615 return NULL;
616}
617
Christoph Hellwig22e70052007-01-02 15:22:30 -0800618static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700619 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800621 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700622 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct xfrm_state *x;
624 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700625 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Thomas Graf35a7aa02007-08-22 14:00:40 -0700627 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (err)
629 return err;
630
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800631 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (!x)
633 return err;
634
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700635 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
637 err = xfrm_state_add(x);
638 else
639 err = xfrm_state_update(x);
640
Tetsuo Handa2e710292014-04-22 21:48:30 +0900641 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (err < 0) {
644 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800645 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700646 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700649 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000650 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700651 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700652
653 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700654out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700655 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return err;
657}
658
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800659static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
660 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700661 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700662 int *errp)
663{
664 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000665 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700666 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000667 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700668
669 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
670 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000671 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700672 } else {
673 xfrm_address_t *saddr = NULL;
674
Thomas Graf35a7aa02007-08-22 14:00:40 -0700675 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700676 if (!saddr) {
677 err = -EINVAL;
678 goto out;
679 }
680
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800681 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000682 x = xfrm_state_lookup_byaddr(net, mark,
683 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800684 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700685 }
686
687 out:
688 if (!x && errp)
689 *errp = err;
690 return x;
691}
692
Christoph Hellwig22e70052007-01-02 15:22:30 -0800693static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700694 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800696 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700698 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700699 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700700 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800702 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700704 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
David S. Miller6f68dc32006-06-08 23:58:52 -0700706 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700707 goto out;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700710 err = -EPERM;
711 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700714 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600715
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700716 if (err < 0)
717 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700718
719 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000720 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700721 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700722 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700724out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900725 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700726 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700727 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
731{
Mathias Krausef778a632012-09-19 11:33:39 +0000732 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 memcpy(&p->id, &x->id, sizeof(p->id));
734 memcpy(&p->sel, &x->sel, sizeof(p->sel));
735 memcpy(&p->lft, &x->lft, sizeof(p->lft));
736 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400737 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
738 put_unaligned(x->stats.replay, &p->stats.replay);
739 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700740 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 p->mode = x->props.mode;
742 p->replay_window = x->props.replay_window;
743 p->reqid = x->props.reqid;
744 p->family = x->props.family;
745 p->flags = x->props.flags;
746 p->seq = x->km.seq;
747}
748
749struct xfrm_dump_info {
750 struct sk_buff *in_skb;
751 struct sk_buff *out_skb;
752 u32 nlmsg_seq;
753 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754};
755
Thomas Grafc0144be2007-08-22 13:55:43 -0700756static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
757{
Thomas Grafc0144be2007-08-22 13:55:43 -0700758 struct xfrm_user_sec_ctx *uctx;
759 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700760 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700761
762 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
763 if (attr == NULL)
764 return -EMSGSIZE;
765
766 uctx = nla_data(attr);
767 uctx->exttype = XFRMA_SEC_CTX;
768 uctx->len = ctx_size;
769 uctx->ctx_doi = s->ctx_doi;
770 uctx->ctx_alg = s->ctx_alg;
771 uctx->ctx_len = s->ctx_len;
772 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
773
774 return 0;
775}
776
Martin Willi4447bb32009-11-25 00:29:52 +0000777static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
778{
779 struct xfrm_algo *algo;
780 struct nlattr *nla;
781
782 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
783 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
784 if (!nla)
785 return -EMSGSIZE;
786
787 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000788 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000789 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
790 algo->alg_key_len = auth->alg_key_len;
791
792 return 0;
793}
794
Herbert Xu68325d32007-10-09 13:30:57 -0700795/* Don't change this without updating xfrm_sa_len! */
796static int copy_to_user_state_extra(struct xfrm_state *x,
797 struct xfrm_usersa_info *p,
798 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700800 int ret = 0;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 copy_to_user_state(x, p);
803
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100804 if (x->props.extra_flags) {
805 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
806 x->props.extra_flags);
807 if (ret)
808 goto out;
809 }
810
David S. Miller1d1e34d2012-06-27 21:57:03 -0700811 if (x->coaddr) {
812 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
813 if (ret)
814 goto out;
815 }
816 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200817 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
818 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700819 if (ret)
820 goto out;
821 }
822 if (x->aead) {
823 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
824 if (ret)
825 goto out;
826 }
827 if (x->aalg) {
828 ret = copy_to_user_auth(x->aalg, skb);
829 if (!ret)
830 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
831 xfrm_alg_auth_len(x->aalg), x->aalg);
832 if (ret)
833 goto out;
834 }
835 if (x->ealg) {
836 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
837 if (ret)
838 goto out;
839 }
840 if (x->calg) {
841 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
842 if (ret)
843 goto out;
844 }
845 if (x->encap) {
846 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
847 if (ret)
848 goto out;
849 }
850 if (x->tfcpad) {
851 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
852 if (ret)
853 goto out;
854 }
855 ret = xfrm_mark_put(skb, &x->mark);
856 if (ret)
857 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100858 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700859 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
860 xfrm_replay_state_esn_len(x->replay_esn),
861 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100862 else
863 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
864 &x->replay);
865 if (ret)
866 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700867 if (x->security)
868 ret = copy_sec_ctx(x->security, skb);
869out:
870 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700871}
872
873static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
874{
875 struct xfrm_dump_info *sp = ptr;
876 struct sk_buff *in_skb = sp->in_skb;
877 struct sk_buff *skb = sp->out_skb;
878 struct xfrm_usersa_info *p;
879 struct nlmsghdr *nlh;
880 int err;
881
Eric W. Biederman15e47302012-09-07 20:12:54 +0000882 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700883 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
884 if (nlh == NULL)
885 return -EMSGSIZE;
886
887 p = nlmsg_data(nlh);
888
889 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700890 if (err) {
891 nlmsg_cancel(skb, nlh);
892 return err;
893 }
Thomas Graf98250692007-08-22 12:47:26 -0700894 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Timo Teras4c563f72008-02-28 21:31:08 -0800898static int xfrm_dump_sa_done(struct netlink_callback *cb)
899{
900 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800901 struct sock *sk = cb->skb->sk;
902 struct net *net = sock_net(sk);
903
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200904 if (cb->args[0])
905 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800906 return 0;
907}
908
Nicolas Dichteld3623092014-02-14 15:30:36 +0100909static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
911{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800912 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800913 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 struct xfrm_dump_info info;
915
Timo Teras4c563f72008-02-28 21:31:08 -0800916 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
917 sizeof(cb->args) - sizeof(cb->args[0]));
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 info.in_skb = cb->skb;
920 info.out_skb = skb;
921 info.nlmsg_seq = cb->nlh->nlmsg_seq;
922 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800923
924 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100925 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100926 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100927 u8 proto = 0;
928 int err;
929
Nicolas Dichteld3623092014-02-14 15:30:36 +0100930 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
931 xfrma_policy);
932 if (err < 0)
933 return err;
934
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100935 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200936 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
937 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100938 if (filter == NULL)
939 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100940 }
941
942 if (attrs[XFRMA_PROTO])
943 proto = nla_get_u8(attrs[XFRMA_PROTO]);
944
945 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200946 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800947 }
948
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800949 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 return skb->len;
952}
953
954static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
955 struct xfrm_state *x, u32 seq)
956{
957 struct xfrm_dump_info info;
958 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000959 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Thomas Graf7deb2262007-08-22 13:57:39 -0700961 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!skb)
963 return ERR_PTR(-ENOMEM);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 info.in_skb = in_skb;
966 info.out_skb = skb;
967 info.nlmsg_seq = seq;
968 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Mathias Krause864745d2012-09-13 11:41:26 +0000970 err = dump_one_state(x, 0, &info);
971 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000973 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
976 return skb;
977}
978
Michal Kubecek21ee5432014-06-03 10:26:06 +0200979/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
980 * Must be called with RCU read lock.
981 */
982static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
983 u32 pid, unsigned int group)
984{
985 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
986
Florian Westphal301a6da2018-06-25 14:00:07 +0200987 if (!nlsk) {
988 kfree_skb(skb);
989 return -EPIPE;
990 }
991
992 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +0200993}
994
Thomas Graf7deb2262007-08-22 13:57:39 -0700995static inline size_t xfrm_spdinfo_msgsize(void)
996{
997 return NLMSG_ALIGN(4)
998 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200999 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1000 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1001 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001002}
1003
Alexey Dobriyane0710412010-01-23 13:37:10 +00001004static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001005 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001006{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001007 struct xfrmk_spdinfo si;
1008 struct xfrmu_spdinfo spc;
1009 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001010 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001011 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001012 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001013 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001014 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001015
Eric W. Biederman15e47302012-09-07 20:12:54 +00001016 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001017 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001018 return -EMSGSIZE;
1019
1020 f = nlmsg_data(nlh);
1021 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001022 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001023 spc.incnt = si.incnt;
1024 spc.outcnt = si.outcnt;
1025 spc.fwdcnt = si.fwdcnt;
1026 spc.inscnt = si.inscnt;
1027 spc.outscnt = si.outscnt;
1028 spc.fwdscnt = si.fwdscnt;
1029 sph.spdhcnt = si.spdhcnt;
1030 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001031
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001032 do {
1033 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1034
1035 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1036 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1037 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1038 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1039 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1040
David S. Miller1d1e34d2012-06-27 21:57:03 -07001041 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1042 if (!err)
1043 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001044 if (!err)
1045 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1046 if (!err)
1047 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001048 if (err) {
1049 nlmsg_cancel(skb, nlh);
1050 return err;
1051 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001052
Johannes Berg053c0952015-01-16 22:09:00 +01001053 nlmsg_end(skb, nlh);
1054 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001055}
1056
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001057static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1058 struct nlattr **attrs)
1059{
1060 struct net *net = sock_net(skb->sk);
1061 struct xfrmu_spdhthresh *thresh4 = NULL;
1062 struct xfrmu_spdhthresh *thresh6 = NULL;
1063
1064 /* selector prefixlen thresholds to hash policies */
1065 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1066 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1067
1068 if (nla_len(rta) < sizeof(*thresh4))
1069 return -EINVAL;
1070 thresh4 = nla_data(rta);
1071 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1072 return -EINVAL;
1073 }
1074 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1075 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1076
1077 if (nla_len(rta) < sizeof(*thresh6))
1078 return -EINVAL;
1079 thresh6 = nla_data(rta);
1080 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1081 return -EINVAL;
1082 }
1083
1084 if (thresh4 || thresh6) {
1085 write_seqlock(&net->xfrm.policy_hthresh.lock);
1086 if (thresh4) {
1087 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1088 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1089 }
1090 if (thresh6) {
1091 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1092 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1093 }
1094 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1095
1096 xfrm_policy_hash_rebuild(net);
1097 }
1098
1099 return 0;
1100}
1101
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001102static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001103 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001104{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001105 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001106 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001107 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001108 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001109 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001110
Thomas Graf7deb2262007-08-22 13:57:39 -07001111 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001112 if (r_skb == NULL)
1113 return -ENOMEM;
1114
Eric W. Biederman15e47302012-09-07 20:12:54 +00001115 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001116 BUG();
1117
Eric W. Biederman15e47302012-09-07 20:12:54 +00001118 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001119}
1120
Thomas Graf7deb2262007-08-22 13:57:39 -07001121static inline size_t xfrm_sadinfo_msgsize(void)
1122{
1123 return NLMSG_ALIGN(4)
1124 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1125 + nla_total_size(4); /* XFRMA_SAD_CNT */
1126}
1127
Alexey Dobriyane0710412010-01-23 13:37:10 +00001128static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001129 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001130{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001131 struct xfrmk_sadinfo si;
1132 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001133 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001134 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001135 u32 *f;
1136
Eric W. Biederman15e47302012-09-07 20:12:54 +00001137 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001138 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001139 return -EMSGSIZE;
1140
1141 f = nlmsg_data(nlh);
1142 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001143 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001144
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001145 sh.sadhmcnt = si.sadhmcnt;
1146 sh.sadhcnt = si.sadhcnt;
1147
David S. Miller1d1e34d2012-06-27 21:57:03 -07001148 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1149 if (!err)
1150 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1151 if (err) {
1152 nlmsg_cancel(skb, nlh);
1153 return err;
1154 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001155
Johannes Berg053c0952015-01-16 22:09:00 +01001156 nlmsg_end(skb, nlh);
1157 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001158}
1159
1160static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001161 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001162{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001163 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001164 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001165 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001166 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001167 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001168
Thomas Graf7deb2262007-08-22 13:57:39 -07001169 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170 if (r_skb == NULL)
1171 return -ENOMEM;
1172
Eric W. Biederman15e47302012-09-07 20:12:54 +00001173 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001174 BUG();
1175
Eric W. Biederman15e47302012-09-07 20:12:54 +00001176 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001177}
1178
Christoph Hellwig22e70052007-01-02 15:22:30 -08001179static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001180 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001182 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001183 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct xfrm_state *x;
1185 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001186 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001188 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (x == NULL)
1190 goto out_noput;
1191
1192 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1193 if (IS_ERR(resp_skb)) {
1194 err = PTR_ERR(resp_skb);
1195 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001196 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198 xfrm_state_put(x);
1199out_noput:
1200 return err;
1201}
1202
Christoph Hellwig22e70052007-01-02 15:22:30 -08001203static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001204 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001206 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 struct xfrm_state *x;
1208 struct xfrm_userspi_info *p;
1209 struct sk_buff *resp_skb;
1210 xfrm_address_t *daddr;
1211 int family;
1212 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001213 u32 mark;
1214 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Thomas Graf7b67c852007-08-22 13:53:52 -07001216 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001217 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (err)
1219 goto out_noput;
1220
1221 family = p->info.family;
1222 daddr = &p->info.id.daddr;
1223
1224 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001225
1226 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001228 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001229 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 xfrm_state_put(x);
1231 x = NULL;
1232 }
1233 }
1234
1235 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001236 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 p->info.id.proto, daddr,
1238 &p->info.saddr, 1,
1239 family);
1240 err = -ENOENT;
1241 if (x == NULL)
1242 goto out_noput;
1243
Herbert Xu658b2192007-10-09 13:29:52 -07001244 err = xfrm_alloc_spi(x, p->min, p->max);
1245 if (err)
1246 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Herbert Xu658b2192007-10-09 13:29:52 -07001248 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (IS_ERR(resp_skb)) {
1250 err = PTR_ERR(resp_skb);
1251 goto out;
1252 }
1253
Eric W. Biederman15e47302012-09-07 20:12:54 +00001254 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256out:
1257 xfrm_state_put(x);
1258out_noput:
1259 return err;
1260}
1261
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001262static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 switch (dir) {
1265 case XFRM_POLICY_IN:
1266 case XFRM_POLICY_OUT:
1267 case XFRM_POLICY_FWD:
1268 break;
1269
1270 default:
1271 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 return 0;
1275}
1276
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001277static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001278{
1279 switch (type) {
1280 case XFRM_POLICY_TYPE_MAIN:
1281#ifdef CONFIG_XFRM_SUB_POLICY
1282 case XFRM_POLICY_TYPE_SUB:
1283#endif
1284 break;
1285
1286 default:
1287 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001288 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001289
1290 return 0;
1291}
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1294{
Fan Due682adf2013-11-07 17:47:48 +08001295 int ret;
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 switch (p->share) {
1298 case XFRM_SHARE_ANY:
1299 case XFRM_SHARE_SESSION:
1300 case XFRM_SHARE_USER:
1301 case XFRM_SHARE_UNIQUE:
1302 break;
1303
1304 default:
1305 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 switch (p->action) {
1309 case XFRM_POLICY_ALLOW:
1310 case XFRM_POLICY_BLOCK:
1311 break;
1312
1313 default:
1314 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 switch (p->sel.family) {
1318 case AF_INET:
1319 break;
1320
1321 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001322#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 break;
1324#else
1325 return -EAFNOSUPPORT;
1326#endif
1327
1328 default:
1329 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Fan Due682adf2013-11-07 17:47:48 +08001332 ret = verify_policy_dir(p->dir);
1333 if (ret)
1334 return ret;
1335 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1336 return -EINVAL;
1337
1338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Thomas Graf5424f322007-08-22 14:01:33 -07001341static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001342{
Thomas Graf5424f322007-08-22 14:01:33 -07001343 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001344 struct xfrm_user_sec_ctx *uctx;
1345
1346 if (!rt)
1347 return 0;
1348
Thomas Graf5424f322007-08-22 14:01:33 -07001349 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001350 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1354 int nr)
1355{
1356 int i;
1357
1358 xp->xfrm_nr = nr;
1359 for (i = 0; i < nr; i++, ut++) {
1360 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1361
1362 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1363 memcpy(&t->saddr, &ut->saddr,
1364 sizeof(xfrm_address_t));
1365 t->reqid = ut->reqid;
1366 t->mode = ut->mode;
1367 t->share = ut->share;
1368 t->optional = ut->optional;
1369 t->aalgos = ut->aalgos;
1370 t->ealgos = ut->ealgos;
1371 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001372 /* If all masks are ~0, then we allow all algorithms. */
1373 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001374 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376}
1377
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001378static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1379{
Steffen Klassert9a54c512017-12-08 08:07:25 +01001380 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001381 int i;
1382
1383 if (nr > XFRM_MAX_DEPTH)
1384 return -EINVAL;
1385
Steffen Klassert9a54c512017-12-08 08:07:25 +01001386 prev_family = family;
1387
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001388 for (i = 0; i < nr; i++) {
1389 /* We never validated the ut->family value, so many
1390 * applications simply leave it at zero. The check was
1391 * never made and ut->family was ignored because all
1392 * templates could be assumed to have the same family as
1393 * the policy itself. Now that we will have ipv4-in-ipv6
1394 * and ipv6-in-ipv4 tunnels, this is no longer true.
1395 */
1396 if (!ut[i].family)
1397 ut[i].family = family;
1398
Steffen Klassert9a54c512017-12-08 08:07:25 +01001399 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1400 (ut[i].family != prev_family))
1401 return -EINVAL;
1402
1403 prev_family = ut[i].family;
1404
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001405 switch (ut[i].family) {
1406 case AF_INET:
1407 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001408#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001409 case AF_INET6:
1410 break;
1411#endif
1412 default:
1413 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001414 }
Cong Wang85552882017-11-27 11:15:16 -08001415
1416 switch (ut[i].id.proto) {
1417 case IPPROTO_AH:
1418 case IPPROTO_ESP:
1419 case IPPROTO_COMP:
1420#if IS_ENABLED(CONFIG_IPV6)
1421 case IPPROTO_ROUTING:
1422 case IPPROTO_DSTOPTS:
1423#endif
1424 case IPSEC_PROTO_ANY:
1425 break;
1426 default:
1427 return -EINVAL;
1428 }
1429
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001430 }
1431
1432 return 0;
1433}
1434
Thomas Graf5424f322007-08-22 14:01:33 -07001435static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Thomas Graf5424f322007-08-22 14:01:33 -07001437 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 if (!rt) {
1440 pol->xfrm_nr = 0;
1441 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001442 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1443 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001444 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001446 err = validate_tmpl(nr, utmpl, pol->family);
1447 if (err)
1448 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Thomas Graf5424f322007-08-22 14:01:33 -07001450 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452 return 0;
1453}
1454
Thomas Graf5424f322007-08-22 14:01:33 -07001455static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001456{
Thomas Graf5424f322007-08-22 14:01:33 -07001457 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001458 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001459 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001460 int err;
1461
1462 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001463 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001464 type = upt->type;
1465 }
1466
1467 err = verify_policy_type(type);
1468 if (err)
1469 return err;
1470
1471 *tp = type;
1472 return 0;
1473}
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1476{
1477 xp->priority = p->priority;
1478 xp->index = p->index;
1479 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1480 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1481 xp->action = p->action;
1482 xp->flags = p->flags;
1483 xp->family = p->sel.family;
1484 /* XXX xp->share = p->share; */
1485}
1486
1487static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1488{
Mathias Krause7b789832012-09-19 11:33:40 +00001489 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1491 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1492 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1493 p->priority = xp->priority;
1494 p->index = xp->index;
1495 p->sel.family = xp->family;
1496 p->dir = dir;
1497 p->action = xp->action;
1498 p->flags = xp->flags;
1499 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1500}
1501
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001502static 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 -07001503{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001504 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 int err;
1506
1507 if (!xp) {
1508 *errp = -ENOMEM;
1509 return NULL;
1510 }
1511
1512 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001513
Thomas Graf35a7aa02007-08-22 14:00:40 -07001514 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001515 if (err)
1516 goto error;
1517
Thomas Graf35a7aa02007-08-22 14:00:40 -07001518 if (!(err = copy_from_user_tmpl(xp, attrs)))
1519 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001520 if (err)
1521 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001523 xfrm_mark_get(attrs, &xp->mark);
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001526 error:
1527 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001528 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001529 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001530 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
Christoph Hellwig22e70052007-01-02 15:22:30 -08001533static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001534 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001536 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001537 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001539 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 int err;
1541 int excl;
1542
1543 err = verify_newpolicy_info(p);
1544 if (err)
1545 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001546 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001547 if (err)
1548 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001550 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (!xp)
1552 return err;
1553
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001554 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001555 * Aha! this is anti-netlink really i.e more pfkey derived
1556 * in netlink excl is a flag and you wouldnt need
1557 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1559 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001560 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001563 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 kfree(xp);
1565 return err;
1566 }
1567
Herbert Xuf60f6b82005-06-18 22:44:37 -07001568 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001569 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001570 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001571 km_policy_notify(xp, p->dir, &c);
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 xfrm_pol_put(xp);
1574
1575 return 0;
1576}
1577
1578static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1579{
1580 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1581 int i;
1582
1583 if (xp->xfrm_nr == 0)
1584 return 0;
1585
1586 for (i = 0; i < xp->xfrm_nr; i++) {
1587 struct xfrm_user_tmpl *up = &vec[i];
1588 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1589
Mathias Krause1f868402012-09-19 11:33:41 +00001590 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001592 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1594 up->reqid = kp->reqid;
1595 up->mode = kp->mode;
1596 up->share = kp->share;
1597 up->optional = kp->optional;
1598 up->aalgos = kp->aalgos;
1599 up->ealgos = kp->ealgos;
1600 up->calgos = kp->calgos;
1601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Thomas Grafc0144be2007-08-22 13:55:43 -07001603 return nla_put(skb, XFRMA_TMPL,
1604 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001605}
1606
Serge Hallyn0d681622006-07-24 23:30:44 -07001607static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1608{
1609 if (x->security) {
1610 return copy_sec_ctx(x->security, skb);
1611 }
1612 return 0;
1613}
1614
1615static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1616{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001617 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001618 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001619 return 0;
1620}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001621static inline size_t userpolicy_type_attrsize(void)
1622{
1623#ifdef CONFIG_XFRM_SUB_POLICY
1624 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1625#else
1626 return 0;
1627#endif
1628}
Serge Hallyn0d681622006-07-24 23:30:44 -07001629
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001630#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001631static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001632{
Eric Dumazet2038a9e2018-06-18 21:35:07 -07001633 struct xfrm_userpolicy_type upt;
1634
1635 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1636 memset(&upt, 0, sizeof(upt));
1637 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001638
Thomas Grafc0144be2007-08-22 13:55:43 -07001639 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001640}
1641
1642#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001643static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001644{
1645 return 0;
1646}
1647#endif
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1650{
1651 struct xfrm_dump_info *sp = ptr;
1652 struct xfrm_userpolicy_info *p;
1653 struct sk_buff *in_skb = sp->in_skb;
1654 struct sk_buff *skb = sp->out_skb;
1655 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001656 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Eric W. Biederman15e47302012-09-07 20:12:54 +00001658 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001659 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1660 if (nlh == NULL)
1661 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Thomas Graf7b67c852007-08-22 13:53:52 -07001663 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001665 err = copy_to_user_tmpl(xp, skb);
1666 if (!err)
1667 err = copy_to_user_sec_ctx(xp, skb);
1668 if (!err)
1669 err = copy_to_user_policy_type(xp->type, skb);
1670 if (!err)
1671 err = xfrm_mark_put(skb, &xp->mark);
1672 if (err) {
1673 nlmsg_cancel(skb, nlh);
1674 return err;
1675 }
Thomas Graf98250692007-08-22 12:47:26 -07001676 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Timo Teras4c563f72008-02-28 21:31:08 -08001680static int xfrm_dump_policy_done(struct netlink_callback *cb)
1681{
Herbert Xu543aabb2017-10-19 20:51:10 +08001682 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001683 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001684
Fan Du283bc9f2013-11-07 17:47:50 +08001685 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001686 return 0;
1687}
1688
Herbert Xu543aabb2017-10-19 20:51:10 +08001689static int xfrm_dump_policy_start(struct netlink_callback *cb)
1690{
1691 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1692
1693 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1694
1695 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1696 return 0;
1697}
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1700{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001701 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001702 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 struct xfrm_dump_info info;
1704
1705 info.in_skb = cb->skb;
1706 info.out_skb = skb;
1707 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1708 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001709
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001710 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 return skb->len;
1713}
1714
1715static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1716 struct xfrm_policy *xp,
1717 int dir, u32 seq)
1718{
1719 struct xfrm_dump_info info;
1720 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001721 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Thomas Graf7deb2262007-08-22 13:57:39 -07001723 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (!skb)
1725 return ERR_PTR(-ENOMEM);
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 info.in_skb = in_skb;
1728 info.out_skb = skb;
1729 info.nlmsg_seq = seq;
1730 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Mathias Krausec2546372012-09-14 09:58:32 +00001732 err = dump_one_policy(xp, dir, 0, &info);
1733 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001735 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737
1738 return skb;
1739}
1740
Christoph Hellwig22e70052007-01-02 15:22:30 -08001741static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001742 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001744 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 struct xfrm_policy *xp;
1746 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001747 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001749 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001751 struct xfrm_mark m;
1752 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Thomas Graf7b67c852007-08-22 13:53:52 -07001754 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1756
Thomas Graf35a7aa02007-08-22 14:00:40 -07001757 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001758 if (err)
1759 return err;
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 err = verify_policy_dir(p->dir);
1762 if (err)
1763 return err;
1764
1765 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001766 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001767 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001768 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001769 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001770
Thomas Graf35a7aa02007-08-22 14:00:40 -07001771 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001772 if (err)
1773 return err;
1774
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001775 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001776 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001777 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001778
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001779 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001780 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001781 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001782 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001783 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001784 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001785 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (xp == NULL)
1788 return -ENOENT;
1789
1790 if (!delete) {
1791 struct sk_buff *resp_skb;
1792
1793 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1794 if (IS_ERR(resp_skb)) {
1795 err = PTR_ERR(resp_skb);
1796 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001797 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001798 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001800 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001801 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001802
1803 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001804 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001805
Herbert Xue7443892005-06-18 22:44:18 -07001806 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001807 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001808 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001809 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001810 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001813out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001814 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001815 if (delete && err == 0)
1816 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return err;
1818}
1819
Christoph Hellwig22e70052007-01-02 15:22:30 -08001820static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001821 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001823 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001824 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001825 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001826 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Tetsuo Handa2e710292014-04-22 21:48:30 +09001828 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001829 if (err) {
1830 if (err == -ESRCH) /* empty table */
1831 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001832 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001833 }
Herbert Xubf088672005-06-18 22:44:00 -07001834 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001835 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001836 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001837 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001838 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001839 km_state_notify(NULL, &c);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return 0;
1842}
1843
Steffen Klassertd8647b72011-03-08 00:10:27 +00001844static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001845{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001846 size_t replay_size = x->replay_esn ?
1847 xfrm_replay_state_esn_len(x->replay_esn) :
1848 sizeof(struct xfrm_replay_state);
1849
Thomas Graf7deb2262007-08-22 13:57:39 -07001850 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001851 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001852 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001853 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001854 + nla_total_size(4) /* XFRM_AE_RTHR */
1855 + nla_total_size(4); /* XFRM_AE_ETHR */
1856}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001857
David S. Miller214e0052011-02-24 00:02:38 -05001858static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001859{
1860 struct xfrm_aevent_id *id;
1861 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001862 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001863
Eric W. Biederman15e47302012-09-07 20:12:54 +00001864 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001865 if (nlh == NULL)
1866 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001867
Thomas Graf7b67c852007-08-22 13:53:52 -07001868 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001869 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001870 id->sa_id.spi = x->id.spi;
1871 id->sa_id.family = x->props.family;
1872 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001873 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001874 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001875 id->flags = c->data.aevent;
1876
David S. Millerd0fde792012-03-29 04:02:26 -04001877 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001878 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1879 xfrm_replay_state_esn_len(x->replay_esn),
1880 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001881 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001882 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1883 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001884 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001885 if (err)
1886 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001887 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1888 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001889 if (err)
1890 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001891
David S. Miller1d1e34d2012-06-27 21:57:03 -07001892 if (id->flags & XFRM_AE_RTHR) {
1893 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1894 if (err)
1895 goto out_cancel;
1896 }
1897 if (id->flags & XFRM_AE_ETHR) {
1898 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1899 x->replay_maxage * 10 / HZ);
1900 if (err)
1901 goto out_cancel;
1902 }
1903 err = xfrm_mark_put(skb, &x->mark);
1904 if (err)
1905 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001906
Johannes Berg053c0952015-01-16 22:09:00 +01001907 nlmsg_end(skb, nlh);
1908 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001909
David S. Miller1d1e34d2012-06-27 21:57:03 -07001910out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001911 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001912 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001913}
1914
Christoph Hellwig22e70052007-01-02 15:22:30 -08001915static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001916 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001917{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001918 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001919 struct xfrm_state *x;
1920 struct sk_buff *r_skb;
1921 int err;
1922 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001923 u32 mark;
1924 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001925 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001926 struct xfrm_usersa_id *id = &p->sa_id;
1927
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001928 mark = xfrm_mark_get(attrs, &m);
1929
1930 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001931 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001932 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001933
1934 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1935 if (r_skb == NULL) {
1936 xfrm_state_put(x);
1937 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001938 }
1939
1940 /*
1941 * XXX: is this lock really needed - none of the other
1942 * gets lock (the concern is things getting updated
1943 * while we are still reading) - jhs
1944 */
1945 spin_lock_bh(&x->lock);
1946 c.data.aevent = p->flags;
1947 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001948 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001949
1950 if (build_aevent(r_skb, x, &c) < 0)
1951 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001952 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001953 spin_unlock_bh(&x->lock);
1954 xfrm_state_put(x);
1955 return err;
1956}
1957
Christoph Hellwig22e70052007-01-02 15:22:30 -08001958static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001959 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001960{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001961 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001962 struct xfrm_state *x;
1963 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001964 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001965 u32 mark = 0;
1966 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001967 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001968 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001969 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001970 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001971 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1972 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001973
Michael Rossberg4e077232015-09-29 11:25:08 +02001974 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001975 return err;
1976
1977 /* pedantic mode - thou shalt sayeth replaceth */
1978 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1979 return err;
1980
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001981 mark = xfrm_mark_get(attrs, &m);
1982
1983 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 -08001984 if (x == NULL)
1985 return -ESRCH;
1986
1987 if (x->km.state != XFRM_STATE_VALID)
1988 goto out;
1989
Steffen Klassert4479ff72013-09-09 09:39:01 +02001990 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001991 if (err)
1992 goto out;
1993
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001994 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001995 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001996 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001997
1998 c.event = nlh->nlmsg_type;
1999 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002000 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002001 c.data.aevent = XFRM_AE_CU;
2002 km_state_notify(x, &c);
2003 err = 0;
2004out:
2005 xfrm_state_put(x);
2006 return err;
2007}
2008
Christoph Hellwig22e70052007-01-02 15:22:30 -08002009static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002010 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002012 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002013 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002014 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002015 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002016
Thomas Graf35a7aa02007-08-22 14:00:40 -07002017 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002018 if (err)
2019 return err;
2020
Tetsuo Handa2e710292014-04-22 21:48:30 +09002021 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002022 if (err) {
2023 if (err == -ESRCH) /* empty table */
2024 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002025 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002026 }
2027
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002028 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002029 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002030 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002031 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002032 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002033 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return 0;
2035}
2036
Christoph Hellwig22e70052007-01-02 15:22:30 -08002037static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002038 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002039{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002040 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002041 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002042 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002043 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002044 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002045 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002046 struct xfrm_mark m;
2047 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002048
Thomas Graf35a7aa02007-08-22 14:00:40 -07002049 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002050 if (err)
2051 return err;
2052
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002053 err = verify_policy_dir(p->dir);
2054 if (err)
2055 return err;
2056
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002057 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002058 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002059 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002060 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002061 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002062
Thomas Graf35a7aa02007-08-22 14:00:40 -07002063 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002064 if (err)
2065 return err;
2066
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002067 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002068 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002069 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002070
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002071 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002072 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002073 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002074 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002075 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002076 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002077 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002078 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002079 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002080 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002081
Timo Teräsea2dea92010-03-31 00:17:05 +00002082 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002083 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002084
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002085 err = 0;
2086 if (up->hard) {
2087 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002088 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002089 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002090 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002091
2092out:
2093 xfrm_pol_put(xp);
2094 return err;
2095}
2096
Christoph Hellwig22e70052007-01-02 15:22:30 -08002097static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002098 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002099{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002100 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002101 struct xfrm_state *x;
2102 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002103 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002104 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002105 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002106 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002107
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002108 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 -08002109
David S. Miller3a765aa2007-02-26 14:52:21 -08002110 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002111 if (x == NULL)
2112 return err;
2113
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002114 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002115 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002116 if (x->km.state != XFRM_STATE_VALID)
2117 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002118 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002119
Joy Latten161a09e2006-11-27 13:11:54 -06002120 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002121 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002122 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002123 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002124 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002125out:
2126 spin_unlock_bh(&x->lock);
2127 xfrm_state_put(x);
2128 return err;
2129}
2130
Christoph Hellwig22e70052007-01-02 15:22:30 -08002131static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002132 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002133{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002134 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002135 struct xfrm_policy *xp;
2136 struct xfrm_user_tmpl *ut;
2137 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002138 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002139 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002140
Thomas Graf7b67c852007-08-22 13:53:52 -07002141 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002142 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002143 int err = -ENOMEM;
2144
2145 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002146 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002147
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002148 xfrm_mark_get(attrs, &mark);
2149
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002150 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002151 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002152 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002153
2154 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002155 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002156 if (!xp)
2157 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002158
2159 memcpy(&x->id, &ua->id, sizeof(ua->id));
2160 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2161 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002162 xp->mark.m = x->mark.m = mark.m;
2163 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002164 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002165 /* extract the templates and for each call km_key */
2166 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2167 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2168 memcpy(&x->id, &t->id, sizeof(x->id));
2169 x->props.mode = t->mode;
2170 x->props.reqid = t->reqid;
2171 x->props.family = ut->family;
2172 t->aalgos = ua->aalgos;
2173 t->ealgos = ua->ealgos;
2174 t->calgos = ua->calgos;
2175 err = km_query(x, t, xp);
2176
2177 }
2178
2179 kfree(x);
2180 kfree(xp);
2181
2182 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002183
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002184free_state:
2185 kfree(x);
2186nomem:
2187 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002188}
2189
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002190#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002191static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002192 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002193 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002194{
Thomas Graf5424f322007-08-22 14:01:33 -07002195 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002196 struct xfrm_user_migrate *um;
2197 int i, num_migrate;
2198
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002199 if (k != NULL) {
2200 struct xfrm_user_kmaddress *uk;
2201
2202 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2203 memcpy(&k->local, &uk->local, sizeof(k->local));
2204 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2205 k->family = uk->family;
2206 k->reserved = uk->reserved;
2207 }
2208
Thomas Graf5424f322007-08-22 14:01:33 -07002209 um = nla_data(rt);
2210 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002211
2212 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2213 return -EINVAL;
2214
2215 for (i = 0; i < num_migrate; i++, um++, ma++) {
2216 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2217 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2218 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2219 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2220
2221 ma->proto = um->proto;
2222 ma->mode = um->mode;
2223 ma->reqid = um->reqid;
2224
2225 ma->old_family = um->old_family;
2226 ma->new_family = um->new_family;
2227 }
2228
2229 *num = i;
2230 return 0;
2231}
2232
2233static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002234 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002235{
Thomas Graf7b67c852007-08-22 13:53:52 -07002236 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002237 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002238 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002239 u8 type;
2240 int err;
2241 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002242 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002243
Thomas Graf35a7aa02007-08-22 14:00:40 -07002244 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002245 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002246
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002247 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2248
Thomas Graf5424f322007-08-22 14:01:33 -07002249 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002250 if (err)
2251 return err;
2252
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002253 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254 if (err)
2255 return err;
2256
2257 if (!n)
2258 return 0;
2259
Fan Du8d549c42013-11-07 17:47:49 +08002260 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002261
2262 return 0;
2263}
2264#else
2265static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002266 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002267{
2268 return -ENOPROTOOPT;
2269}
2270#endif
2271
2272#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002273static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002274{
2275 struct xfrm_user_migrate um;
2276
2277 memset(&um, 0, sizeof(um));
2278 um.proto = m->proto;
2279 um.mode = m->mode;
2280 um.reqid = m->reqid;
2281 um.old_family = m->old_family;
2282 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2283 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2284 um.new_family = m->new_family;
2285 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2286 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2287
Thomas Grafc0144be2007-08-22 13:55:43 -07002288 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002289}
2290
David S. Miller183cad12011-02-24 00:28:01 -05002291static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002292{
2293 struct xfrm_user_kmaddress uk;
2294
2295 memset(&uk, 0, sizeof(uk));
2296 uk.family = k->family;
2297 uk.reserved = k->reserved;
2298 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002299 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002300
2301 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2302}
2303
2304static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002305{
2306 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002307 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2308 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2309 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002310}
2311
David S. Miller183cad12011-02-24 00:28:01 -05002312static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2313 int num_migrate, const struct xfrm_kmaddress *k,
2314 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002315{
David S. Miller183cad12011-02-24 00:28:01 -05002316 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002317 struct xfrm_userpolicy_id *pol_id;
2318 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002319 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002320
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002321 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2322 if (nlh == NULL)
2323 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002324
Thomas Graf7b67c852007-08-22 13:53:52 -07002325 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002326 /* copy data from selector, dir, and type to the pol_id */
2327 memset(pol_id, 0, sizeof(*pol_id));
2328 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2329 pol_id->dir = dir;
2330
David S. Miller1d1e34d2012-06-27 21:57:03 -07002331 if (k != NULL) {
2332 err = copy_to_user_kmaddress(k, skb);
2333 if (err)
2334 goto out_cancel;
2335 }
2336 err = copy_to_user_policy_type(type, skb);
2337 if (err)
2338 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002339 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002340 err = copy_to_user_migrate(mp, skb);
2341 if (err)
2342 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343 }
2344
Johannes Berg053c0952015-01-16 22:09:00 +01002345 nlmsg_end(skb, nlh);
2346 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002347
2348out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002349 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002350 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002351}
2352
David S. Miller183cad12011-02-24 00:28:01 -05002353static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2354 const struct xfrm_migrate *m, int num_migrate,
2355 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002356{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002357 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002358 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002359
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002360 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002361 if (skb == NULL)
2362 return -ENOMEM;
2363
2364 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002365 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002366 BUG();
2367
Michal Kubecek21ee5432014-06-03 10:26:06 +02002368 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002369}
2370#else
David S. Miller183cad12011-02-24 00:28:01 -05002371static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2372 const struct xfrm_migrate *m, int num_migrate,
2373 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002374{
2375 return -ENOPROTOOPT;
2376}
2377#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002378
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002379#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002380
2381static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002382 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002383 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2384 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2385 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2386 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2387 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2388 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002389 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002390 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002391 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002392 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002393 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002394 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002395 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002396 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2397 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002398 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002399 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002400 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002401 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002402 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403};
2404
Thomas Graf492b5582005-05-03 14:26:40 -07002405#undef XMSGSIZE
2406
Thomas Grafcf5cb792007-08-22 13:59:04 -07002407static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002408 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2409 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2410 [XFRMA_LASTUSED] = { .type = NLA_U64},
2411 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002412 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002413 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2414 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2415 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2416 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2417 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2418 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2419 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2420 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2421 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2422 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2423 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2424 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2425 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2426 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002427 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002428 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002429 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002430 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002431 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002432 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002433 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002434};
2435
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002436static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2437 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2438 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2439};
2440
Mathias Krause05600a72013-02-24 14:10:27 +01002441static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002442 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002443 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002445 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002446 const struct nla_policy *nla_pol;
2447 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002448} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2449 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2450 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2451 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002452 .dump = xfrm_dump_sa,
2453 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002454 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2455 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2456 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002457 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002458 .dump = xfrm_dump_policy,
2459 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002460 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002461 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002462 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002463 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2464 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002465 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002466 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2467 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002468 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2469 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002470 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002471 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002472 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2473 .nla_pol = xfrma_spd_policy,
2474 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002475 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476};
2477
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002478static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002480 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002481 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002482 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002483 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Fan Du74005992015-01-27 17:00:29 +08002485#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002486 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002487 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002488#endif
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002492 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 type -= XFRM_MSG_BASE;
2495 link = &xfrm_dispatch[type];
2496
2497 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002498 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002499 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Thomas Graf492b5582005-05-03 14:26:40 -07002501 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2502 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002503 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002505 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002507 {
2508 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002509 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002510 .dump = link->dump,
2511 .done = link->done,
2512 };
2513 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
2516
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002517 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2518 link->nla_max ? : XFRMA_MAX,
2519 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002520 if (err < 0)
2521 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002524 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Thomas Graf5424f322007-08-22 14:01:33 -07002526 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002529static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Fan Du283bc9f2013-11-07 17:47:50 +08002531 struct net *net = sock_net(skb->sk);
2532
2533 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002534 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002535 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536}
2537
Thomas Graf7deb2262007-08-22 13:57:39 -07002538static inline size_t xfrm_expire_msgsize(void)
2539{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002540 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2541 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002542}
2543
David S. Miller214e0052011-02-24 00:02:38 -05002544static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
2546 struct xfrm_user_expire *ue;
2547 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002548 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Eric W. Biederman15e47302012-09-07 20:12:54 +00002550 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002551 if (nlh == NULL)
2552 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Thomas Graf7b67c852007-08-22 13:53:52 -07002554 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002556 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
David S. Miller1d1e34d2012-06-27 21:57:03 -07002558 err = xfrm_mark_put(skb, &x->mark);
2559 if (err)
2560 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002561
Johannes Berg053c0952015-01-16 22:09:00 +01002562 nlmsg_end(skb, nlh);
2563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564}
2565
David S. Miller214e0052011-02-24 00:02:38 -05002566static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002568 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 struct sk_buff *skb;
2570
Thomas Graf7deb2262007-08-22 13:57:39 -07002571 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 if (skb == NULL)
2573 return -ENOMEM;
2574
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002575 if (build_expire(skb, x, c) < 0) {
2576 kfree_skb(skb);
2577 return -EMSGSIZE;
2578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Michal Kubecek21ee5432014-06-03 10:26:06 +02002580 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
David S. Miller214e0052011-02-24 00:02:38 -05002583static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002584{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002585 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002586 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002587
Steffen Klassertd8647b72011-03-08 00:10:27 +00002588 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002589 if (skb == NULL)
2590 return -ENOMEM;
2591
2592 if (build_aevent(skb, x, c) < 0)
2593 BUG();
2594
Michal Kubecek21ee5432014-06-03 10:26:06 +02002595 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002596}
2597
David S. Miller214e0052011-02-24 00:02:38 -05002598static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002599{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002600 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002601 struct xfrm_usersa_flush *p;
2602 struct nlmsghdr *nlh;
2603 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002604 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002605
Thomas Graf7deb2262007-08-22 13:57:39 -07002606 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002607 if (skb == NULL)
2608 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002609
Eric W. Biederman15e47302012-09-07 20:12:54 +00002610 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002611 if (nlh == NULL) {
2612 kfree_skb(skb);
2613 return -EMSGSIZE;
2614 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002615
Thomas Graf7b67c852007-08-22 13:53:52 -07002616 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002617 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002618
Thomas Graf98250692007-08-22 12:47:26 -07002619 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002620
Michal Kubecek21ee5432014-06-03 10:26:06 +02002621 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002622}
2623
Thomas Graf7deb2262007-08-22 13:57:39 -07002624static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002625{
Thomas Graf7deb2262007-08-22 13:57:39 -07002626 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002627 if (x->aead)
2628 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002629 if (x->aalg) {
2630 l += nla_total_size(sizeof(struct xfrm_algo) +
2631 (x->aalg->alg_key_len + 7) / 8);
2632 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2633 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002634 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002635 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002636 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002637 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002638 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002639 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002640 if (x->tfcpad)
2641 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002642 if (x->replay_esn)
2643 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002644 else
2645 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002646 if (x->security)
2647 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2648 x->security->ctx_len);
2649 if (x->coaddr)
2650 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002651 if (x->props.extra_flags)
2652 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002653
Herbert Xud26f3982007-11-13 21:47:08 -08002654 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002655 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002656
2657 return l;
2658}
2659
David S. Miller214e0052011-02-24 00:02:38 -05002660static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002661{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002662 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002663 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002664 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002665 struct nlmsghdr *nlh;
2666 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002667 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002668 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002669
2670 headlen = sizeof(*p);
2671 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002672 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002673 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002674 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002675 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002676 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002677
Thomas Graf7deb2262007-08-22 13:57:39 -07002678 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002679 if (skb == NULL)
2680 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002681
Eric W. Biederman15e47302012-09-07 20:12:54 +00002682 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002683 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002684 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002685 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002686
Thomas Graf7b67c852007-08-22 13:53:52 -07002687 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002688 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002689 struct nlattr *attr;
2690
Thomas Graf7b67c852007-08-22 13:53:52 -07002691 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002692 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2693 id->spi = x->id.spi;
2694 id->family = x->props.family;
2695 id->proto = x->id.proto;
2696
Thomas Grafc0144be2007-08-22 13:55:43 -07002697 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002698 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002699 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002700 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002701
2702 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002703 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002704 err = copy_to_user_state_extra(x, p, skb);
2705 if (err)
2706 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002707
Thomas Graf98250692007-08-22 12:47:26 -07002708 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002709
Michal Kubecek21ee5432014-06-03 10:26:06 +02002710 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002711
David S. Miller1d1e34d2012-06-27 21:57:03 -07002712out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002713 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002714 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002715}
2716
David S. Miller214e0052011-02-24 00:02:38 -05002717static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002718{
2719
2720 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002721 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002722 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002723 case XFRM_MSG_NEWAE:
2724 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002725 case XFRM_MSG_DELSA:
2726 case XFRM_MSG_UPDSA:
2727 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002728 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002729 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002730 return xfrm_notify_sa_flush(c);
2731 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002732 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2733 c->event);
2734 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002735 }
2736
2737 return 0;
2738
2739}
2740
Thomas Graf7deb2262007-08-22 13:57:39 -07002741static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2742 struct xfrm_policy *xp)
2743{
2744 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2745 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002746 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002747 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2748 + userpolicy_type_attrsize();
2749}
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002752 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002754 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 struct xfrm_user_acquire *ua;
2756 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002757 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002759 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2760 if (nlh == NULL)
2761 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Thomas Graf7b67c852007-08-22 13:53:52 -07002763 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 memcpy(&ua->id, &x->id, sizeof(ua->id));
2765 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2766 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002767 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 ua->aalgos = xt->aalgos;
2769 ua->ealgos = xt->ealgos;
2770 ua->calgos = xt->calgos;
2771 ua->seq = x->km.seq = seq;
2772
David S. Miller1d1e34d2012-06-27 21:57:03 -07002773 err = copy_to_user_tmpl(xp, skb);
2774 if (!err)
2775 err = copy_to_user_state_sec_ctx(x, skb);
2776 if (!err)
2777 err = copy_to_user_policy_type(xp->type, skb);
2778 if (!err)
2779 err = xfrm_mark_put(skb, &xp->mark);
2780 if (err) {
2781 nlmsg_cancel(skb, nlh);
2782 return err;
2783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Johannes Berg053c0952015-01-16 22:09:00 +01002785 nlmsg_end(skb, nlh);
2786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
2788
2789static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002790 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002792 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Thomas Graf7deb2262007-08-22 13:57:39 -07002795 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 if (skb == NULL)
2797 return -ENOMEM;
2798
Fan Du65e07362012-08-15 10:13:47 +08002799 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 BUG();
2801
Michal Kubecek21ee5432014-06-03 10:26:06 +02002802 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803}
2804
2805/* User gives us xfrm_user_policy_info followed by an array of 0
2806 * or more templates.
2807 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002808static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 u8 *data, int len, int *dir)
2810{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002811 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2813 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2814 struct xfrm_policy *xp;
2815 int nr;
2816
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002817 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 case AF_INET:
2819 if (opt != IP_XFRM_POLICY) {
2820 *dir = -EOPNOTSUPP;
2821 return NULL;
2822 }
2823 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002824#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 case AF_INET6:
2826 if (opt != IPV6_XFRM_POLICY) {
2827 *dir = -EOPNOTSUPP;
2828 return NULL;
2829 }
2830 break;
2831#endif
2832 default:
2833 *dir = -EINVAL;
2834 return NULL;
2835 }
2836
2837 *dir = -EINVAL;
2838
2839 if (len < sizeof(*p) ||
2840 verify_newpolicy_info(p))
2841 return NULL;
2842
2843 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002844 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return NULL;
2846
Herbert Xua4f1bac2005-07-26 15:43:17 -07002847 if (p->dir > XFRM_POLICY_OUT)
2848 return NULL;
2849
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002850 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 if (xp == NULL) {
2852 *dir = -ENOBUFS;
2853 return NULL;
2854 }
2855
2856 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002857 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 copy_templates(xp, ut, nr);
2859
2860 *dir = p->dir;
2861
2862 return xp;
2863}
2864
Thomas Graf7deb2262007-08-22 13:57:39 -07002865static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2866{
2867 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2868 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2869 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002870 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002871 + userpolicy_type_attrsize();
2872}
2873
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002875 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
2877 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002878 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002879 struct nlmsghdr *nlh;
2880 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Eric W. Biederman15e47302012-09-07 20:12:54 +00002882 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002883 if (nlh == NULL)
2884 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Thomas Graf7b67c852007-08-22 13:53:52 -07002886 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002888 err = copy_to_user_tmpl(xp, skb);
2889 if (!err)
2890 err = copy_to_user_sec_ctx(xp, skb);
2891 if (!err)
2892 err = copy_to_user_policy_type(xp->type, skb);
2893 if (!err)
2894 err = xfrm_mark_put(skb, &xp->mark);
2895 if (err) {
2896 nlmsg_cancel(skb, nlh);
2897 return err;
2898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 upe->hard = !!hard;
2900
Johannes Berg053c0952015-01-16 22:09:00 +01002901 nlmsg_end(skb, nlh);
2902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
2904
David S. Miller214e0052011-02-24 00:02:38 -05002905static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002907 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Thomas Graf7deb2262007-08-22 13:57:39 -07002910 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 if (skb == NULL)
2912 return -ENOMEM;
2913
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002914 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 BUG();
2916
Michal Kubecek21ee5432014-06-03 10:26:06 +02002917 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918}
2919
David S. Miller214e0052011-02-24 00:02:38 -05002920static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002921{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002922 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002923 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002924 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002925 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002926 struct nlmsghdr *nlh;
2927 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002928 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002929
2930 headlen = sizeof(*p);
2931 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002932 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002933 headlen = sizeof(*id);
2934 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002935 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002936 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002937 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002938
Thomas Graf7deb2262007-08-22 13:57:39 -07002939 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002940 if (skb == NULL)
2941 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002942
Eric W. Biederman15e47302012-09-07 20:12:54 +00002943 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002944 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002945 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002946 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947
Thomas Graf7b67c852007-08-22 13:53:52 -07002948 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002949 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002950 struct nlattr *attr;
2951
Thomas Graf7b67c852007-08-22 13:53:52 -07002952 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002953 memset(id, 0, sizeof(*id));
2954 id->dir = dir;
2955 if (c->data.byid)
2956 id->index = xp->index;
2957 else
2958 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2959
Thomas Grafc0144be2007-08-22 13:55:43 -07002960 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002961 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002962 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002963 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002964
2965 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002966 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002967
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002968 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002969 err = copy_to_user_tmpl(xp, skb);
2970 if (!err)
2971 err = copy_to_user_policy_type(xp->type, skb);
2972 if (!err)
2973 err = xfrm_mark_put(skb, &xp->mark);
2974 if (err)
2975 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002976
Thomas Graf98250692007-08-22 12:47:26 -07002977 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002978
Michal Kubecek21ee5432014-06-03 10:26:06 +02002979 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002980
David S. Miller1d1e34d2012-06-27 21:57:03 -07002981out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002982 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002983 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002984}
2985
David S. Miller214e0052011-02-24 00:02:38 -05002986static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002987{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002988 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002989 struct nlmsghdr *nlh;
2990 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002991 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002992
Thomas Graf7deb2262007-08-22 13:57:39 -07002993 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002994 if (skb == NULL)
2995 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002996
Eric W. Biederman15e47302012-09-07 20:12:54 +00002997 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002998 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002999 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003000 goto out_free_skb;
3001 err = copy_to_user_policy_type(c->data.type, skb);
3002 if (err)
3003 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003004
Thomas Graf98250692007-08-22 12:47:26 -07003005 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003006
Michal Kubecek21ee5432014-06-03 10:26:06 +02003007 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003008
David S. Miller1d1e34d2012-06-27 21:57:03 -07003009out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003010 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003011 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003012}
3013
David S. Miller214e0052011-02-24 00:02:38 -05003014static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003015{
3016
3017 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003018 case XFRM_MSG_NEWPOLICY:
3019 case XFRM_MSG_UPDPOLICY:
3020 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003021 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003022 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003023 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003024 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003025 return xfrm_exp_policy_notify(xp, dir, c);
3026 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003027 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3028 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003029 }
3030
3031 return 0;
3032
3033}
3034
Thomas Graf7deb2262007-08-22 13:57:39 -07003035static inline size_t xfrm_report_msgsize(void)
3036{
3037 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3038}
3039
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003040static int build_report(struct sk_buff *skb, u8 proto,
3041 struct xfrm_selector *sel, xfrm_address_t *addr)
3042{
3043 struct xfrm_user_report *ur;
3044 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003045
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003046 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3047 if (nlh == NULL)
3048 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003049
Thomas Graf7b67c852007-08-22 13:53:52 -07003050 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003051 ur->proto = proto;
3052 memcpy(&ur->sel, sel, sizeof(ur->sel));
3053
David S. Miller1d1e34d2012-06-27 21:57:03 -07003054 if (addr) {
3055 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3056 if (err) {
3057 nlmsg_cancel(skb, nlh);
3058 return err;
3059 }
3060 }
Johannes Berg053c0952015-01-16 22:09:00 +01003061 nlmsg_end(skb, nlh);
3062 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003063}
3064
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003065static int xfrm_send_report(struct net *net, u8 proto,
3066 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003067{
3068 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003069
Thomas Graf7deb2262007-08-22 13:57:39 -07003070 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003071 if (skb == NULL)
3072 return -ENOMEM;
3073
3074 if (build_report(skb, proto, sel, addr) < 0)
3075 BUG();
3076
Michal Kubecek21ee5432014-06-03 10:26:06 +02003077 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003078}
3079
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003080static inline size_t xfrm_mapping_msgsize(void)
3081{
3082 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3083}
3084
3085static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3086 xfrm_address_t *new_saddr, __be16 new_sport)
3087{
3088 struct xfrm_user_mapping *um;
3089 struct nlmsghdr *nlh;
3090
3091 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3092 if (nlh == NULL)
3093 return -EMSGSIZE;
3094
3095 um = nlmsg_data(nlh);
3096
3097 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3098 um->id.spi = x->id.spi;
3099 um->id.family = x->props.family;
3100 um->id.proto = x->id.proto;
3101 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3102 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3103 um->new_sport = new_sport;
3104 um->old_sport = x->encap->encap_sport;
3105 um->reqid = x->props.reqid;
3106
Johannes Berg053c0952015-01-16 22:09:00 +01003107 nlmsg_end(skb, nlh);
3108 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003109}
3110
3111static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3112 __be16 sport)
3113{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003114 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003115 struct sk_buff *skb;
3116
3117 if (x->id.proto != IPPROTO_ESP)
3118 return -EINVAL;
3119
3120 if (!x->encap)
3121 return -EINVAL;
3122
3123 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3124 if (skb == NULL)
3125 return -ENOMEM;
3126
3127 if (build_mapping(skb, x, ipaddr, sport) < 0)
3128 BUG();
3129
Michal Kubecek21ee5432014-06-03 10:26:06 +02003130 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003131}
3132
Horia Geanta0f245582014-02-12 16:20:06 +02003133static bool xfrm_is_alive(const struct km_event *c)
3134{
3135 return (bool)xfrm_acquire_is_on(c->net);
3136}
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138static struct xfrm_mgr netlink_mgr = {
3139 .id = "netlink",
3140 .notify = xfrm_send_state_notify,
3141 .acquire = xfrm_send_acquire,
3142 .compile_policy = xfrm_compile_policy,
3143 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003144 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003145 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003146 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003147 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148};
3149
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003150static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151{
Patrick McHardybe336902006-03-20 22:40:54 -08003152 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003153 struct netlink_kernel_cfg cfg = {
3154 .groups = XFRMNLGRP_MAX,
3155 .input = xfrm_netlink_rcv,
3156 };
Patrick McHardybe336902006-03-20 22:40:54 -08003157
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003158 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003159 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003161 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003162 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return 0;
3164}
3165
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003166static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003167{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003168 struct net *net;
3169 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003170 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003171 synchronize_net();
3172 list_for_each_entry(net, net_exit_list, exit_list)
3173 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003174}
3175
3176static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003177 .init = xfrm_user_net_init,
3178 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003179};
3180
3181static int __init xfrm_user_init(void)
3182{
3183 int rv;
3184
3185 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3186
3187 rv = register_pernet_subsys(&xfrm_user_net_ops);
3188 if (rv < 0)
3189 return rv;
3190 rv = xfrm_register_km(&netlink_mgr);
3191 if (rv < 0)
3192 unregister_pernet_subsys(&xfrm_user_net_ops);
3193 return rv;
3194}
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196static void __exit xfrm_user_exit(void)
3197{
3198 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003199 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200}
3201
3202module_init(xfrm_user_init);
3203module_exit(xfrm_user_exit);
3204MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003205MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003206