blob: 2cc7af858c6f2a599aac11926d018d937622b236 [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
Mathias Krauseecd79182012-09-20 10:01:49 +0000124 if (p->flags & XFRM_STATE_ESN) {
125 if (!rt)
126 return -EINVAL;
127
128 rs = nla_data(rt);
129
130 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
131 return -EINVAL;
132
133 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
134 nla_len(rt) != sizeof(*rs))
135 return -EINVAL;
136 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000137
Steffen Klassertd8647b72011-03-08 00:10:27 +0000138 if (!rt)
139 return 0;
140
Fan Du01714102014-01-18 09:54:28 +0800141 /* As only ESP and AH support ESN feature. */
142 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000143 return -EINVAL;
144
Steffen Klassertd8647b72011-03-08 00:10:27 +0000145 if (p->replay_window != 0)
146 return -EINVAL;
147
148 return 0;
149}
Trent Jaegerdf718372005-12-13 23:12:27 -0800150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700152 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 int err;
155
156 err = -EINVAL;
157 switch (p->family) {
158 case AF_INET:
159 break;
160
161 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000162#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164#else
165 err = -EAFNOSUPPORT;
166 goto out;
167#endif
168
169 default:
170 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 err = -EINVAL;
174 switch (p->id.proto) {
175 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000176 if ((!attrs[XFRMA_ALG_AUTH] &&
177 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800178 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700179 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000180 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200181 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto out;
183 break;
184
185 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800186 if (attrs[XFRMA_ALG_COMP])
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])
192 goto out;
193 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000194 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800195 attrs[XFRMA_ALG_CRYPT]) &&
196 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000198 if (attrs[XFRMA_TFCPAD] &&
199 p->mode != XFRM_MODE_TUNNEL)
200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 break;
202
203 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700204 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800205 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700206 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000207 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000208 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200209 attrs[XFRMA_TFCPAD] ||
210 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto out;
212 break;
213
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000214#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700215 case IPPROTO_DSTOPTS:
216 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700217 if (attrs[XFRMA_ALG_COMP] ||
218 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000219 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800220 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700221 attrs[XFRMA_ALG_CRYPT] ||
222 attrs[XFRMA_ENCAP] ||
223 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000224 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700226 goto out;
227 break;
228#endif
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 default:
231 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Herbert Xu1a6509d2008-01-28 19:37:29 -0800234 if ((err = verify_aead(attrs)))
235 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000236 if ((err = verify_auth_trunc(attrs)))
237 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700238 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700240 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800245 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000246 if ((err = verify_replay(p, attrs)))
247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 err = -EINVAL;
250 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700251 case XFRM_MODE_TRANSPORT:
252 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700253 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700254 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256
257 default:
258 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 err = 0;
262
263out:
264 return err;
265}
266
267static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800268 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700269 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct xfrm_algo *p, *ualg;
272 struct xfrm_algo_desc *algo;
273
274 if (!rta)
275 return 0;
276
Thomas Graf5424f322007-08-22 14:01:33 -0700277 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 algo = get_byname(ualg->alg_name, 1);
280 if (!algo)
281 return -ENOSYS;
282 *props = algo->desc.sadb_alg_id;
283
Eric Dumazet0f99be02008-01-08 23:39:06 -0800284 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!p)
286 return -ENOMEM;
287
Herbert Xu04ff1262006-08-13 08:50:00 +1000288 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *algpp = p;
290 return 0;
291}
292
Herbert Xu69b01372015-05-27 16:03:45 +0800293static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
294{
295 struct xfrm_algo *p, *ualg;
296 struct xfrm_algo_desc *algo;
297
298 if (!rta)
299 return 0;
300
301 ualg = nla_data(rta);
302
303 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
304 if (!algo)
305 return -ENOSYS;
306 x->props.ealgo = algo->desc.sadb_alg_id;
307
308 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
309 if (!p)
310 return -ENOMEM;
311
312 strcpy(p->alg_name, algo->name);
313 x->ealg = p;
314 x->geniv = algo->uinfo.encr.geniv;
315 return 0;
316}
317
Martin Willi4447bb32009-11-25 00:29:52 +0000318static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
319 struct nlattr *rta)
320{
321 struct xfrm_algo *ualg;
322 struct xfrm_algo_auth *p;
323 struct xfrm_algo_desc *algo;
324
325 if (!rta)
326 return 0;
327
328 ualg = nla_data(rta);
329
330 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
331 if (!algo)
332 return -ENOSYS;
333 *props = algo->desc.sadb_alg_id;
334
335 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
336 if (!p)
337 return -ENOMEM;
338
339 strcpy(p->alg_name, algo->name);
340 p->alg_key_len = ualg->alg_key_len;
341 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
342 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
343
344 *algpp = p;
345 return 0;
346}
347
348static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
349 struct nlattr *rta)
350{
351 struct xfrm_algo_auth *p, *ualg;
352 struct xfrm_algo_desc *algo;
353
354 if (!rta)
355 return 0;
356
357 ualg = nla_data(rta);
358
359 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
360 if (!algo)
361 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800362 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000363 return -EINVAL;
364 *props = algo->desc.sadb_alg_id;
365
366 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
367 if (!p)
368 return -ENOMEM;
369
370 strcpy(p->alg_name, algo->name);
371 if (!p->alg_trunc_len)
372 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
373
374 *algpp = p;
375 return 0;
376}
377
Herbert Xu69b01372015-05-27 16:03:45 +0800378static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800379{
380 struct xfrm_algo_aead *p, *ualg;
381 struct xfrm_algo_desc *algo;
382
383 if (!rta)
384 return 0;
385
386 ualg = nla_data(rta);
387
388 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
389 if (!algo)
390 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800391 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800392
393 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
394 if (!p)
395 return -ENOMEM;
396
397 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800398 x->aead = p;
399 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800400 return 0;
401}
402
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
404 struct nlattr *rp)
405{
406 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000407 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000408
409 if (!replay_esn || !rp)
410 return 0;
411
412 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000413 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000414
Mathias Krauseecd79182012-09-20 10:01:49 +0000415 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000416 return -EINVAL;
417
418 return 0;
419}
420
Steffen Klassertd8647b72011-03-08 00:10:27 +0000421static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
422 struct xfrm_replay_state_esn **preplay_esn,
423 struct nlattr *rta)
424{
425 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000426 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000427
428 if (!rta)
429 return 0;
430
431 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000432 klen = xfrm_replay_state_esn_len(up);
433 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000434
Mathias Krauseecd79182012-09-20 10:01:49 +0000435 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000436 if (!p)
437 return -ENOMEM;
438
Mathias Krauseecd79182012-09-20 10:01:49 +0000439 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000440 if (!pp) {
441 kfree(p);
442 return -ENOMEM;
443 }
444
Mathias Krauseecd79182012-09-20 10:01:49 +0000445 memcpy(p, up, ulen);
446 memcpy(pp, up, ulen);
447
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448 *replay_esn = p;
449 *preplay_esn = pp;
450
451 return 0;
452}
453
Joy Latten661697f2007-04-13 16:14:35 -0700454static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800455{
Trent Jaegerdf718372005-12-13 23:12:27 -0800456 int len = 0;
457
458 if (xfrm_ctx) {
459 len += sizeof(struct xfrm_user_sec_ctx);
460 len += xfrm_ctx->ctx_len;
461 }
462 return len;
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
466{
467 memcpy(&x->id, &p->id, sizeof(x->id));
468 memcpy(&x->sel, &p->sel, sizeof(x->sel));
469 memcpy(&x->lft, &p->lft, sizeof(x->lft));
470 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800471 x->props.replay_window = min_t(unsigned int, p->replay_window,
472 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 x->props.reqid = p->reqid;
474 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700475 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700477
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700478 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700479 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800482/*
483 * someday when pfkey also has support, we could have the code
484 * somehow made shareable and move it to xfrm_state.c - JHS
485 *
486*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000487static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
488 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800489{
Thomas Graf5424f322007-08-22 14:01:33 -0700490 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000491 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700492 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
493 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
494 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800495
Steffen Klassertd8647b72011-03-08 00:10:27 +0000496 if (re) {
497 struct xfrm_replay_state_esn *replay_esn;
498 replay_esn = nla_data(re);
499 memcpy(x->replay_esn, replay_esn,
500 xfrm_replay_state_esn_len(replay_esn));
501 memcpy(x->preplay_esn, replay_esn,
502 xfrm_replay_state_esn_len(replay_esn));
503 }
504
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800505 if (rp) {
506 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700507 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800508 memcpy(&x->replay, replay, sizeof(*replay));
509 memcpy(&x->preplay, replay, sizeof(*replay));
510 }
511
512 if (lt) {
513 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700514 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800515 x->curlft.bytes = ltime->bytes;
516 x->curlft.packets = ltime->packets;
517 x->curlft.add_time = ltime->add_time;
518 x->curlft.use_time = ltime->use_time;
519 }
520
Thomas Grafcf5cb792007-08-22 13:59:04 -0700521 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700522 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800523
Thomas Grafcf5cb792007-08-22 13:59:04 -0700524 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700525 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800526}
527
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800528static struct xfrm_state *xfrm_state_construct(struct net *net,
529 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700530 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 int *errp)
532{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800533 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int err = -ENOMEM;
535
536 if (!x)
537 goto error_no_put;
538
539 copy_from_user_state(x, p);
540
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100541 if (attrs[XFRMA_SA_EXTRA_FLAGS])
542 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
543
Herbert Xu69b01372015-05-27 16:03:45 +0800544 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800545 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000546 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
547 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000549 if (!x->props.aalgo) {
550 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
551 attrs[XFRMA_ALG_AUTH])))
552 goto error;
553 }
Herbert Xu69b01372015-05-27 16:03:45 +0800554 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto error;
556 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
557 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700558 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700560
561 if (attrs[XFRMA_ENCAP]) {
562 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
563 sizeof(*x->encap), GFP_KERNEL);
564 if (x->encap == NULL)
565 goto error;
566 }
567
Martin Willi35d28562010-12-08 04:37:49 +0000568 if (attrs[XFRMA_TFCPAD])
569 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
570
Thomas Graffd211502007-09-06 03:28:08 -0700571 if (attrs[XFRMA_COADDR]) {
572 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
573 sizeof(*x->coaddr), GFP_KERNEL);
574 if (x->coaddr == NULL)
575 goto error;
576 }
577
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000578 xfrm_mark_get(attrs, &x->mark);
579
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700580 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (err)
582 goto error;
583
Thomas Graffd211502007-09-06 03:28:08 -0700584 if (attrs[XFRMA_SEC_CTX] &&
585 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800586 goto error;
587
Steffen Klassertd8647b72011-03-08 00:10:27 +0000588 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
589 attrs[XFRMA_REPLAY_ESN_VAL])))
590 goto error;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800593 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800594 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800595 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800596
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000597 if ((err = xfrm_init_replay(x)))
598 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800599
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000600 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000601 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 return x;
604
605error:
606 x->km.state = XFRM_STATE_DEAD;
607 xfrm_state_put(x);
608error_no_put:
609 *errp = err;
610 return NULL;
611}
612
Christoph Hellwig22e70052007-01-02 15:22:30 -0800613static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700614 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800616 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700617 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 struct xfrm_state *x;
619 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700620 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Thomas Graf35a7aa02007-08-22 14:00:40 -0700622 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (err)
624 return err;
625
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800626 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (!x)
628 return err;
629
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700630 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
632 err = xfrm_state_add(x);
633 else
634 err = xfrm_state_update(x);
635
Tetsuo Handa2e710292014-04-22 21:48:30 +0900636 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (err < 0) {
639 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800640 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700641 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700644 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000645 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700646 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700647
648 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700649out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700650 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return err;
652}
653
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800654static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
655 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700656 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700657 int *errp)
658{
659 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000660 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700661 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000662 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700663
664 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
665 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000666 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700667 } else {
668 xfrm_address_t *saddr = NULL;
669
Thomas Graf35a7aa02007-08-22 14:00:40 -0700670 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700671 if (!saddr) {
672 err = -EINVAL;
673 goto out;
674 }
675
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800676 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000677 x = xfrm_state_lookup_byaddr(net, mark,
678 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800679 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700680 }
681
682 out:
683 if (!x && errp)
684 *errp = err;
685 return x;
686}
687
Christoph Hellwig22e70052007-01-02 15:22:30 -0800688static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700689 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800691 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700693 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700694 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700695 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800697 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700699 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
David S. Miller6f68dc32006-06-08 23:58:52 -0700701 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700702 goto out;
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700705 err = -EPERM;
706 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700709 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600710
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700711 if (err < 0)
712 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700713
714 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000715 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700716 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700717 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700719out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900720 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700721 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700722 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
726{
Mathias Krausef778a632012-09-19 11:33:39 +0000727 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 memcpy(&p->id, &x->id, sizeof(p->id));
729 memcpy(&p->sel, &x->sel, sizeof(p->sel));
730 memcpy(&p->lft, &x->lft, sizeof(p->lft));
731 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400732 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
733 put_unaligned(x->stats.replay, &p->stats.replay);
734 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700735 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 p->mode = x->props.mode;
737 p->replay_window = x->props.replay_window;
738 p->reqid = x->props.reqid;
739 p->family = x->props.family;
740 p->flags = x->props.flags;
741 p->seq = x->km.seq;
742}
743
744struct xfrm_dump_info {
745 struct sk_buff *in_skb;
746 struct sk_buff *out_skb;
747 u32 nlmsg_seq;
748 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749};
750
Thomas Grafc0144be2007-08-22 13:55:43 -0700751static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
752{
Thomas Grafc0144be2007-08-22 13:55:43 -0700753 struct xfrm_user_sec_ctx *uctx;
754 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700755 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700756
757 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
758 if (attr == NULL)
759 return -EMSGSIZE;
760
761 uctx = nla_data(attr);
762 uctx->exttype = XFRMA_SEC_CTX;
763 uctx->len = ctx_size;
764 uctx->ctx_doi = s->ctx_doi;
765 uctx->ctx_alg = s->ctx_alg;
766 uctx->ctx_len = s->ctx_len;
767 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
768
769 return 0;
770}
771
Martin Willi4447bb32009-11-25 00:29:52 +0000772static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
773{
774 struct xfrm_algo *algo;
775 struct nlattr *nla;
776
777 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
778 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
779 if (!nla)
780 return -EMSGSIZE;
781
782 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000783 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000784 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
785 algo->alg_key_len = auth->alg_key_len;
786
787 return 0;
788}
789
Herbert Xu68325d32007-10-09 13:30:57 -0700790/* Don't change this without updating xfrm_sa_len! */
791static int copy_to_user_state_extra(struct xfrm_state *x,
792 struct xfrm_usersa_info *p,
793 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700795 int ret = 0;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 copy_to_user_state(x, p);
798
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100799 if (x->props.extra_flags) {
800 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
801 x->props.extra_flags);
802 if (ret)
803 goto out;
804 }
805
David S. Miller1d1e34d2012-06-27 21:57:03 -0700806 if (x->coaddr) {
807 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
808 if (ret)
809 goto out;
810 }
811 if (x->lastused) {
812 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
813 if (ret)
814 goto out;
815 }
816 if (x->aead) {
817 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
818 if (ret)
819 goto out;
820 }
821 if (x->aalg) {
822 ret = copy_to_user_auth(x->aalg, skb);
823 if (!ret)
824 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
825 xfrm_alg_auth_len(x->aalg), x->aalg);
826 if (ret)
827 goto out;
828 }
829 if (x->ealg) {
830 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
831 if (ret)
832 goto out;
833 }
834 if (x->calg) {
835 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
836 if (ret)
837 goto out;
838 }
839 if (x->encap) {
840 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
841 if (ret)
842 goto out;
843 }
844 if (x->tfcpad) {
845 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
846 if (ret)
847 goto out;
848 }
849 ret = xfrm_mark_put(skb, &x->mark);
850 if (ret)
851 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100852 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700853 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
854 xfrm_replay_state_esn_len(x->replay_esn),
855 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100856 else
857 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
858 &x->replay);
859 if (ret)
860 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700861 if (x->security)
862 ret = copy_sec_ctx(x->security, skb);
863out:
864 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700865}
866
867static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
868{
869 struct xfrm_dump_info *sp = ptr;
870 struct sk_buff *in_skb = sp->in_skb;
871 struct sk_buff *skb = sp->out_skb;
872 struct xfrm_usersa_info *p;
873 struct nlmsghdr *nlh;
874 int err;
875
Eric W. Biederman15e47302012-09-07 20:12:54 +0000876 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700877 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
878 if (nlh == NULL)
879 return -EMSGSIZE;
880
881 p = nlmsg_data(nlh);
882
883 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700884 if (err) {
885 nlmsg_cancel(skb, nlh);
886 return err;
887 }
Thomas Graf98250692007-08-22 12:47:26 -0700888 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Timo Teras4c563f72008-02-28 21:31:08 -0800892static int xfrm_dump_sa_done(struct netlink_callback *cb)
893{
894 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800895 struct sock *sk = cb->skb->sk;
896 struct net *net = sock_net(sk);
897
898 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800899 return 0;
900}
901
Nicolas Dichteld3623092014-02-14 15:30:36 +0100902static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
904{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800905 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800906 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 struct xfrm_dump_info info;
908
Timo Teras4c563f72008-02-28 21:31:08 -0800909 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
910 sizeof(cb->args) - sizeof(cb->args[0]));
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 info.in_skb = cb->skb;
913 info.out_skb = skb;
914 info.nlmsg_seq = cb->nlh->nlmsg_seq;
915 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800916
917 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100918 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100919 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100920 u8 proto = 0;
921 int err;
922
Timo Teras4c563f72008-02-28 21:31:08 -0800923 cb->args[0] = 1;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100924
925 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
926 xfrma_policy);
927 if (err < 0)
928 return err;
929
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100930 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200931 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
932 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100933 if (filter == NULL)
934 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100935 }
936
937 if (attrs[XFRMA_PROTO])
938 proto = nla_get_u8(attrs[XFRMA_PROTO]);
939
940 xfrm_state_walk_init(walk, proto, filter);
Timo Teras4c563f72008-02-28 21:31:08 -0800941 }
942
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800943 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 return skb->len;
946}
947
948static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
949 struct xfrm_state *x, u32 seq)
950{
951 struct xfrm_dump_info info;
952 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000953 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Thomas Graf7deb2262007-08-22 13:57:39 -0700955 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (!skb)
957 return ERR_PTR(-ENOMEM);
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 info.in_skb = in_skb;
960 info.out_skb = skb;
961 info.nlmsg_seq = seq;
962 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Mathias Krause864745d2012-09-13 11:41:26 +0000964 err = dump_one_state(x, 0, &info);
965 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000967 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969
970 return skb;
971}
972
Michal Kubecek21ee5432014-06-03 10:26:06 +0200973/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
974 * Must be called with RCU read lock.
975 */
976static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
977 u32 pid, unsigned int group)
978{
979 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
980
981 if (nlsk)
982 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
983 else
984 return -1;
985}
986
Thomas Graf7deb2262007-08-22 13:57:39 -0700987static inline size_t xfrm_spdinfo_msgsize(void)
988{
989 return NLMSG_ALIGN(4)
990 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200991 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
992 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
993 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -0700994}
995
Alexey Dobriyane0710412010-01-23 13:37:10 +0000996static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000997 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700998{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700999 struct xfrmk_spdinfo si;
1000 struct xfrmu_spdinfo spc;
1001 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001002 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001003 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001004 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001005 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001006 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001007
Eric W. Biederman15e47302012-09-07 20:12:54 +00001008 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001009 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001010 return -EMSGSIZE;
1011
1012 f = nlmsg_data(nlh);
1013 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001014 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001015 spc.incnt = si.incnt;
1016 spc.outcnt = si.outcnt;
1017 spc.fwdcnt = si.fwdcnt;
1018 spc.inscnt = si.inscnt;
1019 spc.outscnt = si.outscnt;
1020 spc.fwdscnt = si.fwdscnt;
1021 sph.spdhcnt = si.spdhcnt;
1022 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001023
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001024 do {
1025 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1026
1027 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1028 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1029 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1030 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1031 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1032
David S. Miller1d1e34d2012-06-27 21:57:03 -07001033 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1034 if (!err)
1035 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001036 if (!err)
1037 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1038 if (!err)
1039 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001040 if (err) {
1041 nlmsg_cancel(skb, nlh);
1042 return err;
1043 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001044
Johannes Berg053c0952015-01-16 22:09:00 +01001045 nlmsg_end(skb, nlh);
1046 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001047}
1048
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001049static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1050 struct nlattr **attrs)
1051{
1052 struct net *net = sock_net(skb->sk);
1053 struct xfrmu_spdhthresh *thresh4 = NULL;
1054 struct xfrmu_spdhthresh *thresh6 = NULL;
1055
1056 /* selector prefixlen thresholds to hash policies */
1057 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1058 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1059
1060 if (nla_len(rta) < sizeof(*thresh4))
1061 return -EINVAL;
1062 thresh4 = nla_data(rta);
1063 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1064 return -EINVAL;
1065 }
1066 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1067 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1068
1069 if (nla_len(rta) < sizeof(*thresh6))
1070 return -EINVAL;
1071 thresh6 = nla_data(rta);
1072 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1073 return -EINVAL;
1074 }
1075
1076 if (thresh4 || thresh6) {
1077 write_seqlock(&net->xfrm.policy_hthresh.lock);
1078 if (thresh4) {
1079 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1080 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1081 }
1082 if (thresh6) {
1083 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1084 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1085 }
1086 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1087
1088 xfrm_policy_hash_rebuild(net);
1089 }
1090
1091 return 0;
1092}
1093
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001094static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001095 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001096{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001097 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001098 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001099 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001100 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001101 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001102
Thomas Graf7deb2262007-08-22 13:57:39 -07001103 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001104 if (r_skb == NULL)
1105 return -ENOMEM;
1106
Eric W. Biederman15e47302012-09-07 20:12:54 +00001107 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001108 BUG();
1109
Eric W. Biederman15e47302012-09-07 20:12:54 +00001110 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001111}
1112
Thomas Graf7deb2262007-08-22 13:57:39 -07001113static inline size_t xfrm_sadinfo_msgsize(void)
1114{
1115 return NLMSG_ALIGN(4)
1116 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1117 + nla_total_size(4); /* XFRMA_SAD_CNT */
1118}
1119
Alexey Dobriyane0710412010-01-23 13:37:10 +00001120static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001121 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001122{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001123 struct xfrmk_sadinfo si;
1124 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001125 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001126 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001127 u32 *f;
1128
Eric W. Biederman15e47302012-09-07 20:12:54 +00001129 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001130 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001131 return -EMSGSIZE;
1132
1133 f = nlmsg_data(nlh);
1134 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001135 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001136
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001137 sh.sadhmcnt = si.sadhmcnt;
1138 sh.sadhcnt = si.sadhcnt;
1139
David S. Miller1d1e34d2012-06-27 21:57:03 -07001140 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1141 if (!err)
1142 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1143 if (err) {
1144 nlmsg_cancel(skb, nlh);
1145 return err;
1146 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001147
Johannes Berg053c0952015-01-16 22:09:00 +01001148 nlmsg_end(skb, nlh);
1149 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001150}
1151
1152static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001153 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001154{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001155 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001156 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001157 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001158 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001159 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001160
Thomas Graf7deb2262007-08-22 13:57:39 -07001161 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001162 if (r_skb == NULL)
1163 return -ENOMEM;
1164
Eric W. Biederman15e47302012-09-07 20:12:54 +00001165 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001166 BUG();
1167
Eric W. Biederman15e47302012-09-07 20:12:54 +00001168 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001169}
1170
Christoph Hellwig22e70052007-01-02 15:22:30 -08001171static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001172 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001174 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001175 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct xfrm_state *x;
1177 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001178 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001180 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (x == NULL)
1182 goto out_noput;
1183
1184 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1185 if (IS_ERR(resp_skb)) {
1186 err = PTR_ERR(resp_skb);
1187 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001188 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190 xfrm_state_put(x);
1191out_noput:
1192 return err;
1193}
1194
Christoph Hellwig22e70052007-01-02 15:22:30 -08001195static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001196 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001198 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 struct xfrm_state *x;
1200 struct xfrm_userspi_info *p;
1201 struct sk_buff *resp_skb;
1202 xfrm_address_t *daddr;
1203 int family;
1204 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001205 u32 mark;
1206 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Thomas Graf7b67c852007-08-22 13:53:52 -07001208 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001209 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (err)
1211 goto out_noput;
1212
1213 family = p->info.family;
1214 daddr = &p->info.id.daddr;
1215
1216 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001217
1218 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001220 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001221 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 xfrm_state_put(x);
1223 x = NULL;
1224 }
1225 }
1226
1227 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001228 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 p->info.id.proto, daddr,
1230 &p->info.saddr, 1,
1231 family);
1232 err = -ENOENT;
1233 if (x == NULL)
1234 goto out_noput;
1235
Herbert Xu658b2192007-10-09 13:29:52 -07001236 err = xfrm_alloc_spi(x, p->min, p->max);
1237 if (err)
1238 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Herbert Xu658b2192007-10-09 13:29:52 -07001240 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if (IS_ERR(resp_skb)) {
1242 err = PTR_ERR(resp_skb);
1243 goto out;
1244 }
1245
Eric W. Biederman15e47302012-09-07 20:12:54 +00001246 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248out:
1249 xfrm_state_put(x);
1250out_noput:
1251 return err;
1252}
1253
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001254static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 switch (dir) {
1257 case XFRM_POLICY_IN:
1258 case XFRM_POLICY_OUT:
1259 case XFRM_POLICY_FWD:
1260 break;
1261
1262 default:
1263 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 return 0;
1267}
1268
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001269static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001270{
1271 switch (type) {
1272 case XFRM_POLICY_TYPE_MAIN:
1273#ifdef CONFIG_XFRM_SUB_POLICY
1274 case XFRM_POLICY_TYPE_SUB:
1275#endif
1276 break;
1277
1278 default:
1279 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001280 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001281
1282 return 0;
1283}
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1286{
Fan Due682adf2013-11-07 17:47:48 +08001287 int ret;
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 switch (p->share) {
1290 case XFRM_SHARE_ANY:
1291 case XFRM_SHARE_SESSION:
1292 case XFRM_SHARE_USER:
1293 case XFRM_SHARE_UNIQUE:
1294 break;
1295
1296 default:
1297 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 switch (p->action) {
1301 case XFRM_POLICY_ALLOW:
1302 case XFRM_POLICY_BLOCK:
1303 break;
1304
1305 default:
1306 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 switch (p->sel.family) {
1310 case AF_INET:
1311 break;
1312
1313 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001314#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 break;
1316#else
1317 return -EAFNOSUPPORT;
1318#endif
1319
1320 default:
1321 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Fan Due682adf2013-11-07 17:47:48 +08001324 ret = verify_policy_dir(p->dir);
1325 if (ret)
1326 return ret;
1327 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1328 return -EINVAL;
1329
1330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Thomas Graf5424f322007-08-22 14:01:33 -07001333static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001334{
Thomas Graf5424f322007-08-22 14:01:33 -07001335 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001336 struct xfrm_user_sec_ctx *uctx;
1337
1338 if (!rt)
1339 return 0;
1340
Thomas Graf5424f322007-08-22 14:01:33 -07001341 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001342 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001343}
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1346 int nr)
1347{
1348 int i;
1349
1350 xp->xfrm_nr = nr;
1351 for (i = 0; i < nr; i++, ut++) {
1352 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1353
1354 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1355 memcpy(&t->saddr, &ut->saddr,
1356 sizeof(xfrm_address_t));
1357 t->reqid = ut->reqid;
1358 t->mode = ut->mode;
1359 t->share = ut->share;
1360 t->optional = ut->optional;
1361 t->aalgos = ut->aalgos;
1362 t->ealgos = ut->ealgos;
1363 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001364 /* If all masks are ~0, then we allow all algorithms. */
1365 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001366 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368}
1369
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001370static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1371{
1372 int i;
1373
1374 if (nr > XFRM_MAX_DEPTH)
1375 return -EINVAL;
1376
1377 for (i = 0; i < nr; i++) {
1378 /* We never validated the ut->family value, so many
1379 * applications simply leave it at zero. The check was
1380 * never made and ut->family was ignored because all
1381 * templates could be assumed to have the same family as
1382 * the policy itself. Now that we will have ipv4-in-ipv6
1383 * and ipv6-in-ipv4 tunnels, this is no longer true.
1384 */
1385 if (!ut[i].family)
1386 ut[i].family = family;
1387
1388 switch (ut[i].family) {
1389 case AF_INET:
1390 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001391#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001392 case AF_INET6:
1393 break;
1394#endif
1395 default:
1396 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001397 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001398 }
1399
1400 return 0;
1401}
1402
Thomas Graf5424f322007-08-22 14:01:33 -07001403static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Thomas Graf5424f322007-08-22 14:01:33 -07001405 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 if (!rt) {
1408 pol->xfrm_nr = 0;
1409 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001410 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1411 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001412 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001414 err = validate_tmpl(nr, utmpl, pol->family);
1415 if (err)
1416 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Thomas Graf5424f322007-08-22 14:01:33 -07001418 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420 return 0;
1421}
1422
Thomas Graf5424f322007-08-22 14:01:33 -07001423static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001424{
Thomas Graf5424f322007-08-22 14:01:33 -07001425 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001426 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001427 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001428 int err;
1429
1430 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001431 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001432 type = upt->type;
1433 }
1434
1435 err = verify_policy_type(type);
1436 if (err)
1437 return err;
1438
1439 *tp = type;
1440 return 0;
1441}
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1444{
1445 xp->priority = p->priority;
1446 xp->index = p->index;
1447 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1448 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1449 xp->action = p->action;
1450 xp->flags = p->flags;
1451 xp->family = p->sel.family;
1452 /* XXX xp->share = p->share; */
1453}
1454
1455static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1456{
Mathias Krause7b789832012-09-19 11:33:40 +00001457 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1459 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1460 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1461 p->priority = xp->priority;
1462 p->index = xp->index;
1463 p->sel.family = xp->family;
1464 p->dir = dir;
1465 p->action = xp->action;
1466 p->flags = xp->flags;
1467 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1468}
1469
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001470static 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 -07001471{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001472 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 int err;
1474
1475 if (!xp) {
1476 *errp = -ENOMEM;
1477 return NULL;
1478 }
1479
1480 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001481
Thomas Graf35a7aa02007-08-22 14:00:40 -07001482 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001483 if (err)
1484 goto error;
1485
Thomas Graf35a7aa02007-08-22 14:00:40 -07001486 if (!(err = copy_from_user_tmpl(xp, attrs)))
1487 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001488 if (err)
1489 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001491 xfrm_mark_get(attrs, &xp->mark);
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001494 error:
1495 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001496 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001497 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001498 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Christoph Hellwig22e70052007-01-02 15:22:30 -08001501static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001502 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001504 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001505 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001507 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 int err;
1509 int excl;
1510
1511 err = verify_newpolicy_info(p);
1512 if (err)
1513 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001514 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001515 if (err)
1516 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001518 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (!xp)
1520 return err;
1521
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001522 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001523 * Aha! this is anti-netlink really i.e more pfkey derived
1524 * in netlink excl is a flag and you wouldnt need
1525 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1527 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001528 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001531 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 kfree(xp);
1533 return err;
1534 }
1535
Herbert Xuf60f6b82005-06-18 22:44:37 -07001536 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001537 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001538 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001539 km_policy_notify(xp, p->dir, &c);
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 xfrm_pol_put(xp);
1542
1543 return 0;
1544}
1545
1546static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1547{
1548 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1549 int i;
1550
1551 if (xp->xfrm_nr == 0)
1552 return 0;
1553
1554 for (i = 0; i < xp->xfrm_nr; i++) {
1555 struct xfrm_user_tmpl *up = &vec[i];
1556 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1557
Mathias Krause1f868402012-09-19 11:33:41 +00001558 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001560 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1562 up->reqid = kp->reqid;
1563 up->mode = kp->mode;
1564 up->share = kp->share;
1565 up->optional = kp->optional;
1566 up->aalgos = kp->aalgos;
1567 up->ealgos = kp->ealgos;
1568 up->calgos = kp->calgos;
1569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Thomas Grafc0144be2007-08-22 13:55:43 -07001571 return nla_put(skb, XFRMA_TMPL,
1572 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001573}
1574
Serge Hallyn0d681622006-07-24 23:30:44 -07001575static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1576{
1577 if (x->security) {
1578 return copy_sec_ctx(x->security, skb);
1579 }
1580 return 0;
1581}
1582
1583static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1584{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001585 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001586 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001587 return 0;
1588}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001589static inline size_t userpolicy_type_attrsize(void)
1590{
1591#ifdef CONFIG_XFRM_SUB_POLICY
1592 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1593#else
1594 return 0;
1595#endif
1596}
Serge Hallyn0d681622006-07-24 23:30:44 -07001597
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001598#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001599static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001600{
Thomas Grafc0144be2007-08-22 13:55:43 -07001601 struct xfrm_userpolicy_type upt = {
1602 .type = type,
1603 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001604
Thomas Grafc0144be2007-08-22 13:55:43 -07001605 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001606}
1607
1608#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001609static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001610{
1611 return 0;
1612}
1613#endif
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1616{
1617 struct xfrm_dump_info *sp = ptr;
1618 struct xfrm_userpolicy_info *p;
1619 struct sk_buff *in_skb = sp->in_skb;
1620 struct sk_buff *skb = sp->out_skb;
1621 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001622 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Eric W. Biederman15e47302012-09-07 20:12:54 +00001624 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001625 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1626 if (nlh == NULL)
1627 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Thomas Graf7b67c852007-08-22 13:53:52 -07001629 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001631 err = copy_to_user_tmpl(xp, skb);
1632 if (!err)
1633 err = copy_to_user_sec_ctx(xp, skb);
1634 if (!err)
1635 err = copy_to_user_policy_type(xp->type, skb);
1636 if (!err)
1637 err = xfrm_mark_put(skb, &xp->mark);
1638 if (err) {
1639 nlmsg_cancel(skb, nlh);
1640 return err;
1641 }
Thomas Graf98250692007-08-22 12:47:26 -07001642 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Timo Teras4c563f72008-02-28 21:31:08 -08001646static int xfrm_dump_policy_done(struct netlink_callback *cb)
1647{
1648 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001649 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001650
Fan Du283bc9f2013-11-07 17:47:50 +08001651 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001652 return 0;
1653}
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1656{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001657 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001658 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct xfrm_dump_info info;
1660
Timo Teras4c563f72008-02-28 21:31:08 -08001661 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1662 sizeof(cb->args) - sizeof(cb->args[0]));
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 info.in_skb = cb->skb;
1665 info.out_skb = skb;
1666 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1667 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001668
1669 if (!cb->args[0]) {
1670 cb->args[0] = 1;
1671 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1672 }
1673
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001674 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 return skb->len;
1677}
1678
1679static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1680 struct xfrm_policy *xp,
1681 int dir, u32 seq)
1682{
1683 struct xfrm_dump_info info;
1684 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001685 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Thomas Graf7deb2262007-08-22 13:57:39 -07001687 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (!skb)
1689 return ERR_PTR(-ENOMEM);
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 info.in_skb = in_skb;
1692 info.out_skb = skb;
1693 info.nlmsg_seq = seq;
1694 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Mathias Krausec2546372012-09-14 09:58:32 +00001696 err = dump_one_policy(xp, dir, 0, &info);
1697 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001699 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
1701
1702 return skb;
1703}
1704
Christoph Hellwig22e70052007-01-02 15:22:30 -08001705static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001706 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001708 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 struct xfrm_policy *xp;
1710 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001711 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001713 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001715 struct xfrm_mark m;
1716 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Thomas Graf7b67c852007-08-22 13:53:52 -07001718 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1720
Thomas Graf35a7aa02007-08-22 14:00:40 -07001721 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001722 if (err)
1723 return err;
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 err = verify_policy_dir(p->dir);
1726 if (err)
1727 return err;
1728
1729 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001730 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001731 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001732 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001733 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001734
Thomas Graf35a7aa02007-08-22 14:00:40 -07001735 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001736 if (err)
1737 return err;
1738
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001739 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001740 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001741 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001742
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001743 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001744 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001745 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001746 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001747 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001748 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001749 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (xp == NULL)
1752 return -ENOENT;
1753
1754 if (!delete) {
1755 struct sk_buff *resp_skb;
1756
1757 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1758 if (IS_ERR(resp_skb)) {
1759 err = PTR_ERR(resp_skb);
1760 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001761 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001762 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001764 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001765 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001766
1767 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001768 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001769
Herbert Xue7443892005-06-18 22:44:18 -07001770 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001771 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001772 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001773 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001774 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001777out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001778 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001779 if (delete && err == 0)
1780 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 return err;
1782}
1783
Christoph Hellwig22e70052007-01-02 15:22:30 -08001784static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001785 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001787 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001788 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001789 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001790 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Tetsuo Handa2e710292014-04-22 21:48:30 +09001792 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001793 if (err) {
1794 if (err == -ESRCH) /* empty table */
1795 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001796 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001797 }
Herbert Xubf088672005-06-18 22:44:00 -07001798 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001799 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001800 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001801 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001802 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001803 km_state_notify(NULL, &c);
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return 0;
1806}
1807
Steffen Klassertd8647b72011-03-08 00:10:27 +00001808static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001809{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001810 size_t replay_size = x->replay_esn ?
1811 xfrm_replay_state_esn_len(x->replay_esn) :
1812 sizeof(struct xfrm_replay_state);
1813
Thomas Graf7deb2262007-08-22 13:57:39 -07001814 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001815 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001816 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001817 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001818 + nla_total_size(4) /* XFRM_AE_RTHR */
1819 + nla_total_size(4); /* XFRM_AE_ETHR */
1820}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001821
David S. Miller214e0052011-02-24 00:02:38 -05001822static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001823{
1824 struct xfrm_aevent_id *id;
1825 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001826 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001827
Eric W. Biederman15e47302012-09-07 20:12:54 +00001828 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001829 if (nlh == NULL)
1830 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001831
Thomas Graf7b67c852007-08-22 13:53:52 -07001832 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001833 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001834 id->sa_id.spi = x->id.spi;
1835 id->sa_id.family = x->props.family;
1836 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001837 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001838 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001839 id->flags = c->data.aevent;
1840
David S. Millerd0fde792012-03-29 04:02:26 -04001841 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001842 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1843 xfrm_replay_state_esn_len(x->replay_esn),
1844 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001845 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001846 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1847 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001848 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001849 if (err)
1850 goto out_cancel;
1851 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1852 if (err)
1853 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001854
David S. Miller1d1e34d2012-06-27 21:57:03 -07001855 if (id->flags & XFRM_AE_RTHR) {
1856 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1857 if (err)
1858 goto out_cancel;
1859 }
1860 if (id->flags & XFRM_AE_ETHR) {
1861 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1862 x->replay_maxage * 10 / HZ);
1863 if (err)
1864 goto out_cancel;
1865 }
1866 err = xfrm_mark_put(skb, &x->mark);
1867 if (err)
1868 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001869
Johannes Berg053c0952015-01-16 22:09:00 +01001870 nlmsg_end(skb, nlh);
1871 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001872
David S. Miller1d1e34d2012-06-27 21:57:03 -07001873out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001874 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001875 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001876}
1877
Christoph Hellwig22e70052007-01-02 15:22:30 -08001878static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001879 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001880{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001881 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001882 struct xfrm_state *x;
1883 struct sk_buff *r_skb;
1884 int err;
1885 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001886 u32 mark;
1887 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001888 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001889 struct xfrm_usersa_id *id = &p->sa_id;
1890
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001891 mark = xfrm_mark_get(attrs, &m);
1892
1893 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001894 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001895 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001896
1897 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1898 if (r_skb == NULL) {
1899 xfrm_state_put(x);
1900 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001901 }
1902
1903 /*
1904 * XXX: is this lock really needed - none of the other
1905 * gets lock (the concern is things getting updated
1906 * while we are still reading) - jhs
1907 */
1908 spin_lock_bh(&x->lock);
1909 c.data.aevent = p->flags;
1910 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001911 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001912
1913 if (build_aevent(r_skb, x, &c) < 0)
1914 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001915 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001916 spin_unlock_bh(&x->lock);
1917 xfrm_state_put(x);
1918 return err;
1919}
1920
Christoph Hellwig22e70052007-01-02 15:22:30 -08001921static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001922 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001923{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001924 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001925 struct xfrm_state *x;
1926 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001927 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001928 u32 mark = 0;
1929 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001930 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001931 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001932 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001933 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001934 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1935 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001936
Michael Rossberg4e077232015-09-29 11:25:08 +02001937 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001938 return err;
1939
1940 /* pedantic mode - thou shalt sayeth replaceth */
1941 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1942 return err;
1943
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001944 mark = xfrm_mark_get(attrs, &m);
1945
1946 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 -08001947 if (x == NULL)
1948 return -ESRCH;
1949
1950 if (x->km.state != XFRM_STATE_VALID)
1951 goto out;
1952
Steffen Klassert4479ff72013-09-09 09:39:01 +02001953 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001954 if (err)
1955 goto out;
1956
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001957 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001958 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001959 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001960
1961 c.event = nlh->nlmsg_type;
1962 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001963 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964 c.data.aevent = XFRM_AE_CU;
1965 km_state_notify(x, &c);
1966 err = 0;
1967out:
1968 xfrm_state_put(x);
1969 return err;
1970}
1971
Christoph Hellwig22e70052007-01-02 15:22:30 -08001972static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001973 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001975 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001976 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001977 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001978 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001979
Thomas Graf35a7aa02007-08-22 14:00:40 -07001980 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001981 if (err)
1982 return err;
1983
Tetsuo Handa2e710292014-04-22 21:48:30 +09001984 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001985 if (err) {
1986 if (err == -ESRCH) /* empty table */
1987 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001988 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001989 }
1990
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001991 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001992 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001993 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001994 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001995 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001996 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return 0;
1998}
1999
Christoph Hellwig22e70052007-01-02 15:22:30 -08002000static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002001 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002002{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002003 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002004 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002005 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002006 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002007 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002008 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002009 struct xfrm_mark m;
2010 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002011
Thomas Graf35a7aa02007-08-22 14:00:40 -07002012 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002013 if (err)
2014 return err;
2015
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002016 err = verify_policy_dir(p->dir);
2017 if (err)
2018 return err;
2019
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002020 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002021 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002022 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002023 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002024 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002025
Thomas Graf35a7aa02007-08-22 14:00:40 -07002026 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002027 if (err)
2028 return err;
2029
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002030 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002031 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002032 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002033
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002034 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002035 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002036 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002037 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002038 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002039 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002040 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002041 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002042 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002043 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002044
Timo Teräsea2dea92010-03-31 00:17:05 +00002045 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002046 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002047
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002048 err = 0;
2049 if (up->hard) {
2050 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002051 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002052 } else {
2053 // reset the timers here?
Jakub Wilk0c199a92015-07-18 14:41:51 +02002054 WARN(1, "Don't know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002055 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002056 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002057
2058out:
2059 xfrm_pol_put(xp);
2060 return err;
2061}
2062
Christoph Hellwig22e70052007-01-02 15:22:30 -08002063static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002064 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002065{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002066 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002067 struct xfrm_state *x;
2068 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002069 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002070 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002071 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002072 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002073
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002074 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 -08002075
David S. Miller3a765aa2007-02-26 14:52:21 -08002076 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002077 if (x == NULL)
2078 return err;
2079
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002080 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002081 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002082 if (x->km.state != XFRM_STATE_VALID)
2083 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002084 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002085
Joy Latten161a09e2006-11-27 13:11:54 -06002086 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002087 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002088 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002089 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002090 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002091out:
2092 spin_unlock_bh(&x->lock);
2093 xfrm_state_put(x);
2094 return err;
2095}
2096
Christoph Hellwig22e70052007-01-02 15:22:30 -08002097static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002098 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002099{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002100 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002101 struct xfrm_policy *xp;
2102 struct xfrm_user_tmpl *ut;
2103 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002104 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002105 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002106
Thomas Graf7b67c852007-08-22 13:53:52 -07002107 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002108 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002109 int err = -ENOMEM;
2110
2111 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002112 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002113
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002114 xfrm_mark_get(attrs, &mark);
2115
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002116 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002117 if (err)
2118 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002119
2120 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002121 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002122 if (!xp)
2123 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002124
2125 memcpy(&x->id, &ua->id, sizeof(ua->id));
2126 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2127 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002128 xp->mark.m = x->mark.m = mark.m;
2129 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002130 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002131 /* extract the templates and for each call km_key */
2132 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2133 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2134 memcpy(&x->id, &t->id, sizeof(x->id));
2135 x->props.mode = t->mode;
2136 x->props.reqid = t->reqid;
2137 x->props.family = ut->family;
2138 t->aalgos = ua->aalgos;
2139 t->ealgos = ua->ealgos;
2140 t->calgos = ua->calgos;
2141 err = km_query(x, t, xp);
2142
2143 }
2144
2145 kfree(x);
2146 kfree(xp);
2147
2148 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002149
2150bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002151 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002152free_state:
2153 kfree(x);
2154nomem:
2155 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002156}
2157
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002158#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002159static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002160 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002161 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002162{
Thomas Graf5424f322007-08-22 14:01:33 -07002163 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002164 struct xfrm_user_migrate *um;
2165 int i, num_migrate;
2166
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002167 if (k != NULL) {
2168 struct xfrm_user_kmaddress *uk;
2169
2170 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2171 memcpy(&k->local, &uk->local, sizeof(k->local));
2172 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2173 k->family = uk->family;
2174 k->reserved = uk->reserved;
2175 }
2176
Thomas Graf5424f322007-08-22 14:01:33 -07002177 um = nla_data(rt);
2178 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002179
2180 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2181 return -EINVAL;
2182
2183 for (i = 0; i < num_migrate; i++, um++, ma++) {
2184 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2185 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2186 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2187 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2188
2189 ma->proto = um->proto;
2190 ma->mode = um->mode;
2191 ma->reqid = um->reqid;
2192
2193 ma->old_family = um->old_family;
2194 ma->new_family = um->new_family;
2195 }
2196
2197 *num = i;
2198 return 0;
2199}
2200
2201static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002202 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002203{
Thomas Graf7b67c852007-08-22 13:53:52 -07002204 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002205 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002206 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002207 u8 type;
2208 int err;
2209 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002210 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002211
Thomas Graf35a7aa02007-08-22 14:00:40 -07002212 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002213 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002214
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002215 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2216
Thomas Graf5424f322007-08-22 14:01:33 -07002217 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002218 if (err)
2219 return err;
2220
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002221 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002222 if (err)
2223 return err;
2224
2225 if (!n)
2226 return 0;
2227
Fan Du8d549c42013-11-07 17:47:49 +08002228 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002229
2230 return 0;
2231}
2232#else
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{
2236 return -ENOPROTOOPT;
2237}
2238#endif
2239
2240#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002241static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002242{
2243 struct xfrm_user_migrate um;
2244
2245 memset(&um, 0, sizeof(um));
2246 um.proto = m->proto;
2247 um.mode = m->mode;
2248 um.reqid = m->reqid;
2249 um.old_family = m->old_family;
2250 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2251 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2252 um.new_family = m->new_family;
2253 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2254 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2255
Thomas Grafc0144be2007-08-22 13:55:43 -07002256 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002257}
2258
David S. Miller183cad12011-02-24 00:28:01 -05002259static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002260{
2261 struct xfrm_user_kmaddress uk;
2262
2263 memset(&uk, 0, sizeof(uk));
2264 uk.family = k->family;
2265 uk.reserved = k->reserved;
2266 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002267 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002268
2269 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2270}
2271
2272static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002273{
2274 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002275 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2276 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2277 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002278}
2279
David S. Miller183cad12011-02-24 00:28:01 -05002280static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2281 int num_migrate, const struct xfrm_kmaddress *k,
2282 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283{
David S. Miller183cad12011-02-24 00:28:01 -05002284 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002285 struct xfrm_userpolicy_id *pol_id;
2286 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002287 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002288
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002289 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2290 if (nlh == NULL)
2291 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002292
Thomas Graf7b67c852007-08-22 13:53:52 -07002293 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294 /* copy data from selector, dir, and type to the pol_id */
2295 memset(pol_id, 0, sizeof(*pol_id));
2296 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2297 pol_id->dir = dir;
2298
David S. Miller1d1e34d2012-06-27 21:57:03 -07002299 if (k != NULL) {
2300 err = copy_to_user_kmaddress(k, skb);
2301 if (err)
2302 goto out_cancel;
2303 }
2304 err = copy_to_user_policy_type(type, skb);
2305 if (err)
2306 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002307 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002308 err = copy_to_user_migrate(mp, skb);
2309 if (err)
2310 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002311 }
2312
Johannes Berg053c0952015-01-16 22:09:00 +01002313 nlmsg_end(skb, nlh);
2314 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002315
2316out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002317 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002318 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002319}
2320
David S. Miller183cad12011-02-24 00:28:01 -05002321static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2322 const struct xfrm_migrate *m, int num_migrate,
2323 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002324{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002325 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002326 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002327
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002328 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002329 if (skb == NULL)
2330 return -ENOMEM;
2331
2332 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002333 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002334 BUG();
2335
Michal Kubecek21ee5432014-06-03 10:26:06 +02002336 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002337}
2338#else
David S. Miller183cad12011-02-24 00:28:01 -05002339static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2340 const struct xfrm_migrate *m, int num_migrate,
2341 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002342{
2343 return -ENOPROTOOPT;
2344}
2345#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002346
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002347#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002348
2349static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002350 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002351 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2352 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2353 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2354 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2355 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2356 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002357 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002358 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002359 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002360 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002361 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002362 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002363 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002364 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2365 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002366 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002367 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002368 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002369 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002370 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371};
2372
Thomas Graf492b5582005-05-03 14:26:40 -07002373#undef XMSGSIZE
2374
Thomas Grafcf5cb792007-08-22 13:59:04 -07002375static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002376 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2377 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2378 [XFRMA_LASTUSED] = { .type = NLA_U64},
2379 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002380 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002381 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2382 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2383 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2384 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2385 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2386 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2387 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2388 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2389 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2390 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2391 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2392 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2393 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2394 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002395 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002396 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002397 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002398 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002399 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002400 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002401 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002402};
2403
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002404static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2405 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2406 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2407};
2408
Mathias Krause05600a72013-02-24 14:10:27 +01002409static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002410 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002412 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002413 const struct nla_policy *nla_pol;
2414 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002415} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2416 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2417 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2418 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002419 .dump = xfrm_dump_sa,
2420 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002421 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2422 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2423 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002424 .dump = xfrm_dump_policy,
2425 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002426 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002427 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002428 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002429 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2430 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002431 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002432 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2433 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002434 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2435 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002436 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002437 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002438 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2439 .nla_pol = xfrma_spd_policy,
2440 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002441 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442};
2443
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002444static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002446 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002447 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002448 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002449 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Fan Du74005992015-01-27 17:00:29 +08002451#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002452 if (in_compat_syscall())
Fan Du74005992015-01-27 17:00:29 +08002453 return -ENOTSUPP;
2454#endif
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002458 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 type -= XFRM_MSG_BASE;
2461 link = &xfrm_dispatch[type];
2462
2463 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002464 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002465 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Thomas Graf492b5582005-05-03 14:26:40 -07002467 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2468 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002469 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002471 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002473 {
2474 struct netlink_dump_control c = {
2475 .dump = link->dump,
2476 .done = link->done,
2477 };
2478 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002482 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2483 link->nla_max ? : XFRMA_MAX,
2484 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002485 if (err < 0)
2486 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002489 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Thomas Graf5424f322007-08-22 14:01:33 -07002491 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002494static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
Fan Du283bc9f2013-11-07 17:47:50 +08002496 struct net *net = sock_net(skb->sk);
2497
2498 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002499 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002500 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
Thomas Graf7deb2262007-08-22 13:57:39 -07002503static inline size_t xfrm_expire_msgsize(void)
2504{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002505 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2506 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002507}
2508
David S. Miller214e0052011-02-24 00:02:38 -05002509static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
2511 struct xfrm_user_expire *ue;
2512 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002513 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Eric W. Biederman15e47302012-09-07 20:12:54 +00002515 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002516 if (nlh == NULL)
2517 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Thomas Graf7b67c852007-08-22 13:53:52 -07002519 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002521 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
David S. Miller1d1e34d2012-06-27 21:57:03 -07002523 err = xfrm_mark_put(skb, &x->mark);
2524 if (err)
2525 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002526
Johannes Berg053c0952015-01-16 22:09:00 +01002527 nlmsg_end(skb, nlh);
2528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529}
2530
David S. Miller214e0052011-02-24 00:02:38 -05002531static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002533 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 struct sk_buff *skb;
2535
Thomas Graf7deb2262007-08-22 13:57:39 -07002536 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (skb == NULL)
2538 return -ENOMEM;
2539
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002540 if (build_expire(skb, x, c) < 0) {
2541 kfree_skb(skb);
2542 return -EMSGSIZE;
2543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Michal Kubecek21ee5432014-06-03 10:26:06 +02002545 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
2547
David S. Miller214e0052011-02-24 00:02:38 -05002548static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002549{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002550 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002551 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002552
Steffen Klassertd8647b72011-03-08 00:10:27 +00002553 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002554 if (skb == NULL)
2555 return -ENOMEM;
2556
2557 if (build_aevent(skb, x, c) < 0)
2558 BUG();
2559
Michal Kubecek21ee5432014-06-03 10:26:06 +02002560 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002561}
2562
David S. Miller214e0052011-02-24 00:02:38 -05002563static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002564{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002565 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002566 struct xfrm_usersa_flush *p;
2567 struct nlmsghdr *nlh;
2568 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002569 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002570
Thomas Graf7deb2262007-08-22 13:57:39 -07002571 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002572 if (skb == NULL)
2573 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002574
Eric W. Biederman15e47302012-09-07 20:12:54 +00002575 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002576 if (nlh == NULL) {
2577 kfree_skb(skb);
2578 return -EMSGSIZE;
2579 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002580
Thomas Graf7b67c852007-08-22 13:53:52 -07002581 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002582 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002583
Thomas Graf98250692007-08-22 12:47:26 -07002584 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002585
Michal Kubecek21ee5432014-06-03 10:26:06 +02002586 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002587}
2588
Thomas Graf7deb2262007-08-22 13:57:39 -07002589static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002590{
Thomas Graf7deb2262007-08-22 13:57:39 -07002591 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002592 if (x->aead)
2593 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002594 if (x->aalg) {
2595 l += nla_total_size(sizeof(struct xfrm_algo) +
2596 (x->aalg->alg_key_len + 7) / 8);
2597 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2598 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002599 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002600 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002601 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002602 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002603 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002604 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002605 if (x->tfcpad)
2606 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002607 if (x->replay_esn)
2608 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002609 else
2610 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002611 if (x->security)
2612 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2613 x->security->ctx_len);
2614 if (x->coaddr)
2615 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002616 if (x->props.extra_flags)
2617 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002618
Herbert Xud26f3982007-11-13 21:47:08 -08002619 /* Must count x->lastused as it may become non-zero behind our back. */
2620 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002621
2622 return l;
2623}
2624
David S. Miller214e0052011-02-24 00:02:38 -05002625static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002626{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002627 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002628 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002629 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002630 struct nlmsghdr *nlh;
2631 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002632 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002633 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002634
2635 headlen = sizeof(*p);
2636 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002637 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002638 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002639 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002640 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002641 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002642
Thomas Graf7deb2262007-08-22 13:57:39 -07002643 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002644 if (skb == NULL)
2645 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002646
Eric W. Biederman15e47302012-09-07 20:12:54 +00002647 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002648 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002649 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002650 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002651
Thomas Graf7b67c852007-08-22 13:53:52 -07002652 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002653 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002654 struct nlattr *attr;
2655
Thomas Graf7b67c852007-08-22 13:53:52 -07002656 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002657 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2658 id->spi = x->id.spi;
2659 id->family = x->props.family;
2660 id->proto = x->id.proto;
2661
Thomas Grafc0144be2007-08-22 13:55:43 -07002662 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002663 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002664 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002665 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002666
2667 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002668 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002669 err = copy_to_user_state_extra(x, p, skb);
2670 if (err)
2671 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002672
Thomas Graf98250692007-08-22 12:47:26 -07002673 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002674
Michal Kubecek21ee5432014-06-03 10:26:06 +02002675 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002676
David S. Miller1d1e34d2012-06-27 21:57:03 -07002677out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002678 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002679 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002680}
2681
David S. Miller214e0052011-02-24 00:02:38 -05002682static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002683{
2684
2685 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002686 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002687 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002688 case XFRM_MSG_NEWAE:
2689 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002690 case XFRM_MSG_DELSA:
2691 case XFRM_MSG_UPDSA:
2692 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002693 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002694 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002695 return xfrm_notify_sa_flush(c);
2696 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002697 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2698 c->event);
2699 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002700 }
2701
2702 return 0;
2703
2704}
2705
Thomas Graf7deb2262007-08-22 13:57:39 -07002706static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2707 struct xfrm_policy *xp)
2708{
2709 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2710 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002711 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002712 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2713 + userpolicy_type_attrsize();
2714}
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002717 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002719 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 struct xfrm_user_acquire *ua;
2721 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002722 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002724 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2725 if (nlh == NULL)
2726 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Thomas Graf7b67c852007-08-22 13:53:52 -07002728 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 memcpy(&ua->id, &x->id, sizeof(ua->id));
2730 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2731 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002732 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 ua->aalgos = xt->aalgos;
2734 ua->ealgos = xt->ealgos;
2735 ua->calgos = xt->calgos;
2736 ua->seq = x->km.seq = seq;
2737
David S. Miller1d1e34d2012-06-27 21:57:03 -07002738 err = copy_to_user_tmpl(xp, skb);
2739 if (!err)
2740 err = copy_to_user_state_sec_ctx(x, skb);
2741 if (!err)
2742 err = copy_to_user_policy_type(xp->type, skb);
2743 if (!err)
2744 err = xfrm_mark_put(skb, &xp->mark);
2745 if (err) {
2746 nlmsg_cancel(skb, nlh);
2747 return err;
2748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Johannes Berg053c0952015-01-16 22:09:00 +01002750 nlmsg_end(skb, nlh);
2751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752}
2753
2754static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002755 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002757 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Thomas Graf7deb2262007-08-22 13:57:39 -07002760 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 if (skb == NULL)
2762 return -ENOMEM;
2763
Fan Du65e07362012-08-15 10:13:47 +08002764 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 BUG();
2766
Michal Kubecek21ee5432014-06-03 10:26:06 +02002767 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
2770/* User gives us xfrm_user_policy_info followed by an array of 0
2771 * or more templates.
2772 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002773static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 u8 *data, int len, int *dir)
2775{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002776 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2778 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2779 struct xfrm_policy *xp;
2780 int nr;
2781
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002782 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 case AF_INET:
2784 if (opt != IP_XFRM_POLICY) {
2785 *dir = -EOPNOTSUPP;
2786 return NULL;
2787 }
2788 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002789#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 case AF_INET6:
2791 if (opt != IPV6_XFRM_POLICY) {
2792 *dir = -EOPNOTSUPP;
2793 return NULL;
2794 }
2795 break;
2796#endif
2797 default:
2798 *dir = -EINVAL;
2799 return NULL;
2800 }
2801
2802 *dir = -EINVAL;
2803
2804 if (len < sizeof(*p) ||
2805 verify_newpolicy_info(p))
2806 return NULL;
2807
2808 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002809 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return NULL;
2811
Herbert Xua4f1bac2005-07-26 15:43:17 -07002812 if (p->dir > XFRM_POLICY_OUT)
2813 return NULL;
2814
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002815 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if (xp == NULL) {
2817 *dir = -ENOBUFS;
2818 return NULL;
2819 }
2820
2821 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002822 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 copy_templates(xp, ut, nr);
2824
2825 *dir = p->dir;
2826
2827 return xp;
2828}
2829
Thomas Graf7deb2262007-08-22 13:57:39 -07002830static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2831{
2832 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2833 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2834 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002835 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002836 + userpolicy_type_attrsize();
2837}
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002840 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
2842 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002843 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002844 struct nlmsghdr *nlh;
2845 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Eric W. Biederman15e47302012-09-07 20:12:54 +00002847 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002848 if (nlh == NULL)
2849 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Thomas Graf7b67c852007-08-22 13:53:52 -07002851 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002853 err = copy_to_user_tmpl(xp, skb);
2854 if (!err)
2855 err = copy_to_user_sec_ctx(xp, skb);
2856 if (!err)
2857 err = copy_to_user_policy_type(xp->type, skb);
2858 if (!err)
2859 err = xfrm_mark_put(skb, &xp->mark);
2860 if (err) {
2861 nlmsg_cancel(skb, nlh);
2862 return err;
2863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 upe->hard = !!hard;
2865
Johannes Berg053c0952015-01-16 22:09:00 +01002866 nlmsg_end(skb, nlh);
2867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
2869
David S. Miller214e0052011-02-24 00:02:38 -05002870static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002872 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Thomas Graf7deb2262007-08-22 13:57:39 -07002875 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 if (skb == NULL)
2877 return -ENOMEM;
2878
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002879 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 BUG();
2881
Michal Kubecek21ee5432014-06-03 10:26:06 +02002882 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883}
2884
David S. Miller214e0052011-02-24 00:02:38 -05002885static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002886{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002887 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002888 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002889 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002890 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002891 struct nlmsghdr *nlh;
2892 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002893 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002894
2895 headlen = sizeof(*p);
2896 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002897 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002898 headlen = sizeof(*id);
2899 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002900 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002901 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002902 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002903
Thomas Graf7deb2262007-08-22 13:57:39 -07002904 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002905 if (skb == NULL)
2906 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002907
Eric W. Biederman15e47302012-09-07 20:12:54 +00002908 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002909 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002910 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002911 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002912
Thomas Graf7b67c852007-08-22 13:53:52 -07002913 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002914 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002915 struct nlattr *attr;
2916
Thomas Graf7b67c852007-08-22 13:53:52 -07002917 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002918 memset(id, 0, sizeof(*id));
2919 id->dir = dir;
2920 if (c->data.byid)
2921 id->index = xp->index;
2922 else
2923 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2924
Thomas Grafc0144be2007-08-22 13:55:43 -07002925 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002926 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002927 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002928 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002929
2930 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002931 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002932
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002933 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002934 err = copy_to_user_tmpl(xp, skb);
2935 if (!err)
2936 err = copy_to_user_policy_type(xp->type, skb);
2937 if (!err)
2938 err = xfrm_mark_put(skb, &xp->mark);
2939 if (err)
2940 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002941
Thomas Graf98250692007-08-22 12:47:26 -07002942 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002943
Michal Kubecek21ee5432014-06-03 10:26:06 +02002944 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002945
David S. Miller1d1e34d2012-06-27 21:57:03 -07002946out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002948 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002949}
2950
David S. Miller214e0052011-02-24 00:02:38 -05002951static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002952{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002953 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002954 struct nlmsghdr *nlh;
2955 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002956 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002957
Thomas Graf7deb2262007-08-22 13:57:39 -07002958 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002959 if (skb == NULL)
2960 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002961
Eric W. Biederman15e47302012-09-07 20:12:54 +00002962 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002963 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002964 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002965 goto out_free_skb;
2966 err = copy_to_user_policy_type(c->data.type, skb);
2967 if (err)
2968 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002969
Thomas Graf98250692007-08-22 12:47:26 -07002970 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002971
Michal Kubecek21ee5432014-06-03 10:26:06 +02002972 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002973
David S. Miller1d1e34d2012-06-27 21:57:03 -07002974out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002975 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002976 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002977}
2978
David S. Miller214e0052011-02-24 00:02:38 -05002979static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002980{
2981
2982 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002983 case XFRM_MSG_NEWPOLICY:
2984 case XFRM_MSG_UPDPOLICY:
2985 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002986 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002987 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002988 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002989 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002990 return xfrm_exp_policy_notify(xp, dir, c);
2991 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002992 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2993 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002994 }
2995
2996 return 0;
2997
2998}
2999
Thomas Graf7deb2262007-08-22 13:57:39 -07003000static inline size_t xfrm_report_msgsize(void)
3001{
3002 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3003}
3004
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003005static int build_report(struct sk_buff *skb, u8 proto,
3006 struct xfrm_selector *sel, xfrm_address_t *addr)
3007{
3008 struct xfrm_user_report *ur;
3009 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003010
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003011 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3012 if (nlh == NULL)
3013 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003014
Thomas Graf7b67c852007-08-22 13:53:52 -07003015 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003016 ur->proto = proto;
3017 memcpy(&ur->sel, sel, sizeof(ur->sel));
3018
David S. Miller1d1e34d2012-06-27 21:57:03 -07003019 if (addr) {
3020 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3021 if (err) {
3022 nlmsg_cancel(skb, nlh);
3023 return err;
3024 }
3025 }
Johannes Berg053c0952015-01-16 22:09:00 +01003026 nlmsg_end(skb, nlh);
3027 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003028}
3029
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003030static int xfrm_send_report(struct net *net, u8 proto,
3031 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003032{
3033 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003034
Thomas Graf7deb2262007-08-22 13:57:39 -07003035 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003036 if (skb == NULL)
3037 return -ENOMEM;
3038
3039 if (build_report(skb, proto, sel, addr) < 0)
3040 BUG();
3041
Michal Kubecek21ee5432014-06-03 10:26:06 +02003042 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003043}
3044
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003045static inline size_t xfrm_mapping_msgsize(void)
3046{
3047 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3048}
3049
3050static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3051 xfrm_address_t *new_saddr, __be16 new_sport)
3052{
3053 struct xfrm_user_mapping *um;
3054 struct nlmsghdr *nlh;
3055
3056 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3057 if (nlh == NULL)
3058 return -EMSGSIZE;
3059
3060 um = nlmsg_data(nlh);
3061
3062 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3063 um->id.spi = x->id.spi;
3064 um->id.family = x->props.family;
3065 um->id.proto = x->id.proto;
3066 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3067 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3068 um->new_sport = new_sport;
3069 um->old_sport = x->encap->encap_sport;
3070 um->reqid = x->props.reqid;
3071
Johannes Berg053c0952015-01-16 22:09:00 +01003072 nlmsg_end(skb, nlh);
3073 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003074}
3075
3076static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3077 __be16 sport)
3078{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003079 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003080 struct sk_buff *skb;
3081
3082 if (x->id.proto != IPPROTO_ESP)
3083 return -EINVAL;
3084
3085 if (!x->encap)
3086 return -EINVAL;
3087
3088 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3089 if (skb == NULL)
3090 return -ENOMEM;
3091
3092 if (build_mapping(skb, x, ipaddr, sport) < 0)
3093 BUG();
3094
Michal Kubecek21ee5432014-06-03 10:26:06 +02003095 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003096}
3097
Horia Geanta0f245582014-02-12 16:20:06 +02003098static bool xfrm_is_alive(const struct km_event *c)
3099{
3100 return (bool)xfrm_acquire_is_on(c->net);
3101}
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103static struct xfrm_mgr netlink_mgr = {
3104 .id = "netlink",
3105 .notify = xfrm_send_state_notify,
3106 .acquire = xfrm_send_acquire,
3107 .compile_policy = xfrm_compile_policy,
3108 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003109 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003110 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003111 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003112 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113};
3114
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003115static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
Patrick McHardybe336902006-03-20 22:40:54 -08003117 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003118 struct netlink_kernel_cfg cfg = {
3119 .groups = XFRMNLGRP_MAX,
3120 .input = xfrm_netlink_rcv,
3121 };
Patrick McHardybe336902006-03-20 22:40:54 -08003122
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003123 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003124 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003126 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003127 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 return 0;
3129}
3130
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003131static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003132{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003133 struct net *net;
3134 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003135 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003136 synchronize_net();
3137 list_for_each_entry(net, net_exit_list, exit_list)
3138 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003139}
3140
3141static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003142 .init = xfrm_user_net_init,
3143 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003144};
3145
3146static int __init xfrm_user_init(void)
3147{
3148 int rv;
3149
3150 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3151
3152 rv = register_pernet_subsys(&xfrm_user_net_ops);
3153 if (rv < 0)
3154 return rv;
3155 rv = xfrm_register_km(&netlink_mgr);
3156 if (rv < 0)
3157 unregister_pernet_subsys(&xfrm_user_net_ops);
3158 return rv;
3159}
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161static void __exit xfrm_user_exit(void)
3162{
3163 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003164 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165}
3166
3167module_init(xfrm_user_init);
3168module_exit(xfrm_user_exit);
3169MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003170MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003171