blob: 7de2ed9ec46ddd003ef3db00554335a12f95cb89 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Thomas Graf5424f322007-08-22 14:01:33 -070035static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Thomas Graf5424f322007-08-22 14:01:33 -070037 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct xfrm_algo *algp;
39
40 if (!rt)
41 return 0;
42
Thomas Graf5424f322007-08-22 14:01:33 -070043 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080044 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070045 return -EINVAL;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 switch (type) {
48 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 break;
52
53 default:
54 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
58 return 0;
59}
60
Martin Willi4447bb32009-11-25 00:29:52 +000061static int verify_auth_trunc(struct nlattr **attrs)
62{
63 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
64 struct xfrm_algo_auth *algp;
65
66 if (!rt)
67 return 0;
68
69 algp = nla_data(rt);
70 if (nla_len(rt) < xfrm_alg_auth_len(algp))
71 return -EINVAL;
72
73 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
74 return 0;
75}
76
Herbert Xu1a6509d2008-01-28 19:37:29 -080077static int verify_aead(struct nlattr **attrs)
78{
79 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
80 struct xfrm_algo_aead *algp;
81
82 if (!rt)
83 return 0;
84
85 algp = nla_data(rt);
86 if (nla_len(rt) < aead_len(algp))
87 return -EINVAL;
88
89 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
90 return 0;
91}
92
Thomas Graf5424f322007-08-22 14:01:33 -070093static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070094 xfrm_address_t **addrp)
95{
Thomas Graf5424f322007-08-22 14:01:33 -070096 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070097
Thomas Grafcf5cb792007-08-22 13:59:04 -070098 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -070099 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700100}
Trent Jaegerdf718372005-12-13 23:12:27 -0800101
Thomas Graf5424f322007-08-22 14:01:33 -0700102static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800103{
Thomas Graf5424f322007-08-22 14:01:33 -0700104 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800105 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800106
107 if (!rt)
108 return 0;
109
Thomas Graf5424f322007-08-22 14:01:33 -0700110 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700111 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800112 return -EINVAL;
113
114 return 0;
115}
116
Steffen Klassertd8647b72011-03-08 00:10:27 +0000117static inline int verify_replay(struct xfrm_usersa_info *p,
118 struct nlattr **attrs)
119{
120 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000121 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000122
Mathias Krauseecd79182012-09-20 10:01:49 +0000123 if (p->flags & XFRM_STATE_ESN) {
124 if (!rt)
125 return -EINVAL;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
135 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000136
Steffen Klassertd8647b72011-03-08 00:10:27 +0000137 if (!rt)
138 return 0;
139
Fan Du01714102014-01-18 09:54:28 +0800140 /* As only ESP and AH support ESN feature. */
141 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000142 return -EINVAL;
143
Steffen Klassertd8647b72011-03-08 00:10:27 +0000144 if (p->replay_window != 0)
145 return -EINVAL;
146
147 return 0;
148}
Trent Jaegerdf718372005-12-13 23:12:27 -0800149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700151 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 int err;
154
155 err = -EINVAL;
156 switch (p->family) {
157 case AF_INET:
158 break;
159
160 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000161#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
163#else
164 err = -EAFNOSUPPORT;
165 goto out;
166#endif
167
168 default:
169 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 err = -EINVAL;
173 switch (p->id.proto) {
174 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000175 if ((!attrs[XFRMA_ALG_AUTH] &&
176 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800177 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700178 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000179 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200180 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 goto out;
182 break;
183
184 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800185 if (attrs[XFRMA_ALG_COMP])
186 goto out;
187 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000188 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800189 !attrs[XFRMA_ALG_CRYPT] &&
190 !attrs[XFRMA_ALG_AEAD])
191 goto out;
192 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000193 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800194 attrs[XFRMA_ALG_CRYPT]) &&
195 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000197 if (attrs[XFRMA_TFCPAD] &&
198 p->mode != XFRM_MODE_TUNNEL)
199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 break;
201
202 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700203 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800204 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700205 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000206 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000207 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200208 attrs[XFRMA_TFCPAD] ||
209 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto out;
211 break;
212
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000213#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700214 case IPPROTO_DSTOPTS:
215 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700216 if (attrs[XFRMA_ALG_COMP] ||
217 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000218 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800219 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700220 attrs[XFRMA_ALG_CRYPT] ||
221 attrs[XFRMA_ENCAP] ||
222 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000223 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700224 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700225 goto out;
226 break;
227#endif
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 default:
230 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Herbert Xu1a6509d2008-01-28 19:37:29 -0800233 if ((err = verify_aead(attrs)))
234 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000235 if ((err = verify_auth_trunc(attrs)))
236 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700237 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700241 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700243 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800244 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000245 if ((err = verify_replay(p, attrs)))
246 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 err = -EINVAL;
249 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700250 case XFRM_MODE_TRANSPORT:
251 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700252 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700253 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 break;
255
256 default:
257 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 err = 0;
261
262out:
263 return err;
264}
265
266static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800267 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700268 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct xfrm_algo *p, *ualg;
271 struct xfrm_algo_desc *algo;
272
273 if (!rta)
274 return 0;
275
Thomas Graf5424f322007-08-22 14:01:33 -0700276 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 algo = get_byname(ualg->alg_name, 1);
279 if (!algo)
280 return -ENOSYS;
281 *props = algo->desc.sadb_alg_id;
282
Eric Dumazet0f99be02008-01-08 23:39:06 -0800283 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (!p)
285 return -ENOMEM;
286
Herbert Xu04ff1262006-08-13 08:50:00 +1000287 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 *algpp = p;
289 return 0;
290}
291
Martin Willi4447bb32009-11-25 00:29:52 +0000292static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
293 struct nlattr *rta)
294{
295 struct xfrm_algo *ualg;
296 struct xfrm_algo_auth *p;
297 struct xfrm_algo_desc *algo;
298
299 if (!rta)
300 return 0;
301
302 ualg = nla_data(rta);
303
304 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
305 if (!algo)
306 return -ENOSYS;
307 *props = algo->desc.sadb_alg_id;
308
309 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
310 if (!p)
311 return -ENOMEM;
312
313 strcpy(p->alg_name, algo->name);
314 p->alg_key_len = ualg->alg_key_len;
315 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
316 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
317
318 *algpp = p;
319 return 0;
320}
321
322static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
323 struct nlattr *rta)
324{
325 struct xfrm_algo_auth *p, *ualg;
326 struct xfrm_algo_desc *algo;
327
328 if (!rta)
329 return 0;
330
331 ualg = nla_data(rta);
332
333 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
334 if (!algo)
335 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800336 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000337 return -EINVAL;
338 *props = algo->desc.sadb_alg_id;
339
340 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
341 if (!p)
342 return -ENOMEM;
343
344 strcpy(p->alg_name, algo->name);
345 if (!p->alg_trunc_len)
346 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
347
348 *algpp = p;
349 return 0;
350}
351
Herbert Xu1a6509d2008-01-28 19:37:29 -0800352static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
353 struct nlattr *rta)
354{
355 struct xfrm_algo_aead *p, *ualg;
356 struct xfrm_algo_desc *algo;
357
358 if (!rta)
359 return 0;
360
361 ualg = nla_data(rta);
362
363 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
364 if (!algo)
365 return -ENOSYS;
366 *props = algo->desc.sadb_alg_id;
367
368 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
369 if (!p)
370 return -ENOMEM;
371
372 strcpy(p->alg_name, algo->name);
373 *algpp = p;
374 return 0;
375}
376
Steffen Klasserte2b19122011-03-28 19:47:30 +0000377static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
378 struct nlattr *rp)
379{
380 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000381 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000382
383 if (!replay_esn || !rp)
384 return 0;
385
386 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000387 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000388
Mathias Krauseecd79182012-09-20 10:01:49 +0000389 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000390 return -EINVAL;
391
392 return 0;
393}
394
Steffen Klassertd8647b72011-03-08 00:10:27 +0000395static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
396 struct xfrm_replay_state_esn **preplay_esn,
397 struct nlattr *rta)
398{
399 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000400 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000401
402 if (!rta)
403 return 0;
404
405 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000406 klen = xfrm_replay_state_esn_len(up);
407 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000408
Mathias Krauseecd79182012-09-20 10:01:49 +0000409 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000410 if (!p)
411 return -ENOMEM;
412
Mathias Krauseecd79182012-09-20 10:01:49 +0000413 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000414 if (!pp) {
415 kfree(p);
416 return -ENOMEM;
417 }
418
Mathias Krauseecd79182012-09-20 10:01:49 +0000419 memcpy(p, up, ulen);
420 memcpy(pp, up, ulen);
421
Steffen Klassertd8647b72011-03-08 00:10:27 +0000422 *replay_esn = p;
423 *preplay_esn = pp;
424
425 return 0;
426}
427
Joy Latten661697f2007-04-13 16:14:35 -0700428static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800429{
Trent Jaegerdf718372005-12-13 23:12:27 -0800430 int len = 0;
431
432 if (xfrm_ctx) {
433 len += sizeof(struct xfrm_user_sec_ctx);
434 len += xfrm_ctx->ctx_len;
435 }
436 return len;
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
440{
441 memcpy(&x->id, &p->id, sizeof(x->id));
442 memcpy(&x->sel, &p->sel, sizeof(x->sel));
443 memcpy(&x->lft, &p->lft, sizeof(x->lft));
444 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800445 x->props.replay_window = min_t(unsigned int, p->replay_window,
446 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 x->props.reqid = p->reqid;
448 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700449 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700451
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700452 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700453 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800456/*
457 * someday when pfkey also has support, we could have the code
458 * somehow made shareable and move it to xfrm_state.c - JHS
459 *
460*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000461static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
462 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800463{
Thomas Graf5424f322007-08-22 14:01:33 -0700464 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000465 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700466 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
467 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
468 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800469
Steffen Klassertd8647b72011-03-08 00:10:27 +0000470 if (re) {
471 struct xfrm_replay_state_esn *replay_esn;
472 replay_esn = nla_data(re);
473 memcpy(x->replay_esn, replay_esn,
474 xfrm_replay_state_esn_len(replay_esn));
475 memcpy(x->preplay_esn, replay_esn,
476 xfrm_replay_state_esn_len(replay_esn));
477 }
478
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800479 if (rp) {
480 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700481 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800482 memcpy(&x->replay, replay, sizeof(*replay));
483 memcpy(&x->preplay, replay, sizeof(*replay));
484 }
485
486 if (lt) {
487 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700488 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800489 x->curlft.bytes = ltime->bytes;
490 x->curlft.packets = ltime->packets;
491 x->curlft.add_time = ltime->add_time;
492 x->curlft.use_time = ltime->use_time;
493 }
494
Thomas Grafcf5cb792007-08-22 13:59:04 -0700495 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700496 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497
Thomas Grafcf5cb792007-08-22 13:59:04 -0700498 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700499 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800500}
501
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800502static struct xfrm_state *xfrm_state_construct(struct net *net,
503 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700504 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 int *errp)
506{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800507 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int err = -ENOMEM;
509
510 if (!x)
511 goto error_no_put;
512
513 copy_from_user_state(x, p);
514
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100515 if (attrs[XFRMA_SA_EXTRA_FLAGS])
516 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
517
Herbert Xu1a6509d2008-01-28 19:37:29 -0800518 if ((err = attach_aead(&x->aead, &x->props.ealgo,
519 attrs[XFRMA_ALG_AEAD])))
520 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000521 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
522 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000524 if (!x->props.aalgo) {
525 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
526 attrs[XFRMA_ALG_AUTH])))
527 goto error;
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
530 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700531 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 goto error;
533 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
534 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700535 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700537
538 if (attrs[XFRMA_ENCAP]) {
539 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
540 sizeof(*x->encap), GFP_KERNEL);
541 if (x->encap == NULL)
542 goto error;
543 }
544
Martin Willi35d28562010-12-08 04:37:49 +0000545 if (attrs[XFRMA_TFCPAD])
546 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
547
Thomas Graffd211502007-09-06 03:28:08 -0700548 if (attrs[XFRMA_COADDR]) {
549 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
550 sizeof(*x->coaddr), GFP_KERNEL);
551 if (x->coaddr == NULL)
552 goto error;
553 }
554
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000555 xfrm_mark_get(attrs, &x->mark);
556
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700557 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (err)
559 goto error;
560
Thomas Graffd211502007-09-06 03:28:08 -0700561 if (attrs[XFRMA_SEC_CTX] &&
562 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800563 goto error;
564
Steffen Klassertd8647b72011-03-08 00:10:27 +0000565 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
566 attrs[XFRMA_REPLAY_ESN_VAL])))
567 goto error;
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800570 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800571 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800572 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800573
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000574 if ((err = xfrm_init_replay(x)))
575 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800576
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000577 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000578 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 return x;
581
582error:
583 x->km.state = XFRM_STATE_DEAD;
584 xfrm_state_put(x);
585error_no_put:
586 *errp = err;
587 return NULL;
588}
589
Christoph Hellwig22e70052007-01-02 15:22:30 -0800590static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700591 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800593 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700594 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct xfrm_state *x;
596 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700597 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Thomas Graf35a7aa02007-08-22 14:00:40 -0700599 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (err)
601 return err;
602
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800603 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!x)
605 return err;
606
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700607 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
609 err = xfrm_state_add(x);
610 else
611 err = xfrm_state_update(x);
612
Tetsuo Handa2e710292014-04-22 21:48:30 +0900613 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (err < 0) {
616 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800617 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700618 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700621 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000622 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700623 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700624
625 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700626out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700627 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return err;
629}
630
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800631static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
632 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700633 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700634 int *errp)
635{
636 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000637 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700638 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000639 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700640
641 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
642 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000643 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700644 } else {
645 xfrm_address_t *saddr = NULL;
646
Thomas Graf35a7aa02007-08-22 14:00:40 -0700647 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700648 if (!saddr) {
649 err = -EINVAL;
650 goto out;
651 }
652
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800653 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000654 x = xfrm_state_lookup_byaddr(net, mark,
655 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800656 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700657 }
658
659 out:
660 if (!x && errp)
661 *errp = err;
662 return x;
663}
664
Christoph Hellwig22e70052007-01-02 15:22:30 -0800665static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700666 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800668 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700670 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700671 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700672 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800674 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700676 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
David S. Miller6f68dc32006-06-08 23:58:52 -0700678 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700679 goto out;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700682 err = -EPERM;
683 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700686 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600687
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700688 if (err < 0)
689 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700690
691 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000692 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700693 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700694 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700696out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900697 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700698 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700699 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
703{
Mathias Krausef778a632012-09-19 11:33:39 +0000704 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 memcpy(&p->id, &x->id, sizeof(p->id));
706 memcpy(&p->sel, &x->sel, sizeof(p->sel));
707 memcpy(&p->lft, &x->lft, sizeof(p->lft));
708 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
709 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700710 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 p->mode = x->props.mode;
712 p->replay_window = x->props.replay_window;
713 p->reqid = x->props.reqid;
714 p->family = x->props.family;
715 p->flags = x->props.flags;
716 p->seq = x->km.seq;
717}
718
719struct xfrm_dump_info {
720 struct sk_buff *in_skb;
721 struct sk_buff *out_skb;
722 u32 nlmsg_seq;
723 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
Thomas Grafc0144be2007-08-22 13:55:43 -0700726static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
727{
Thomas Grafc0144be2007-08-22 13:55:43 -0700728 struct xfrm_user_sec_ctx *uctx;
729 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700730 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700731
732 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
733 if (attr == NULL)
734 return -EMSGSIZE;
735
736 uctx = nla_data(attr);
737 uctx->exttype = XFRMA_SEC_CTX;
738 uctx->len = ctx_size;
739 uctx->ctx_doi = s->ctx_doi;
740 uctx->ctx_alg = s->ctx_alg;
741 uctx->ctx_len = s->ctx_len;
742 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
743
744 return 0;
745}
746
Martin Willi4447bb32009-11-25 00:29:52 +0000747static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
748{
749 struct xfrm_algo *algo;
750 struct nlattr *nla;
751
752 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
753 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
754 if (!nla)
755 return -EMSGSIZE;
756
757 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000758 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000759 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
760 algo->alg_key_len = auth->alg_key_len;
761
762 return 0;
763}
764
Herbert Xu68325d32007-10-09 13:30:57 -0700765/* Don't change this without updating xfrm_sa_len! */
766static int copy_to_user_state_extra(struct xfrm_state *x,
767 struct xfrm_usersa_info *p,
768 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700770 int ret = 0;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 copy_to_user_state(x, p);
773
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100774 if (x->props.extra_flags) {
775 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
776 x->props.extra_flags);
777 if (ret)
778 goto out;
779 }
780
David S. Miller1d1e34d2012-06-27 21:57:03 -0700781 if (x->coaddr) {
782 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
783 if (ret)
784 goto out;
785 }
786 if (x->lastused) {
787 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
788 if (ret)
789 goto out;
790 }
791 if (x->aead) {
792 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
793 if (ret)
794 goto out;
795 }
796 if (x->aalg) {
797 ret = copy_to_user_auth(x->aalg, skb);
798 if (!ret)
799 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
800 xfrm_alg_auth_len(x->aalg), x->aalg);
801 if (ret)
802 goto out;
803 }
804 if (x->ealg) {
805 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
806 if (ret)
807 goto out;
808 }
809 if (x->calg) {
810 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
811 if (ret)
812 goto out;
813 }
814 if (x->encap) {
815 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
816 if (ret)
817 goto out;
818 }
819 if (x->tfcpad) {
820 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
821 if (ret)
822 goto out;
823 }
824 ret = xfrm_mark_put(skb, &x->mark);
825 if (ret)
826 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100827 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700828 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
829 xfrm_replay_state_esn_len(x->replay_esn),
830 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100831 else
832 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
833 &x->replay);
834 if (ret)
835 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700836 if (x->security)
837 ret = copy_sec_ctx(x->security, skb);
838out:
839 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700840}
841
842static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
843{
844 struct xfrm_dump_info *sp = ptr;
845 struct sk_buff *in_skb = sp->in_skb;
846 struct sk_buff *skb = sp->out_skb;
847 struct xfrm_usersa_info *p;
848 struct nlmsghdr *nlh;
849 int err;
850
Eric W. Biederman15e47302012-09-07 20:12:54 +0000851 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700852 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
853 if (nlh == NULL)
854 return -EMSGSIZE;
855
856 p = nlmsg_data(nlh);
857
858 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700859 if (err) {
860 nlmsg_cancel(skb, nlh);
861 return err;
862 }
Thomas Graf98250692007-08-22 12:47:26 -0700863 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
Timo Teras4c563f72008-02-28 21:31:08 -0800867static int xfrm_dump_sa_done(struct netlink_callback *cb)
868{
869 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800870 struct sock *sk = cb->skb->sk;
871 struct net *net = sock_net(sk);
872
873 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800874 return 0;
875}
876
Nicolas Dichteld3623092014-02-14 15:30:36 +0100877static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
879{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800880 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800881 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 struct xfrm_dump_info info;
883
Timo Teras4c563f72008-02-28 21:31:08 -0800884 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
885 sizeof(cb->args) - sizeof(cb->args[0]));
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 info.in_skb = cb->skb;
888 info.out_skb = skb;
889 info.nlmsg_seq = cb->nlh->nlmsg_seq;
890 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800891
892 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100893 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100894 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100895 u8 proto = 0;
896 int err;
897
Timo Teras4c563f72008-02-28 21:31:08 -0800898 cb->args[0] = 1;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100899
900 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
901 xfrma_policy);
902 if (err < 0)
903 return err;
904
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100905 if (attrs[XFRMA_ADDRESS_FILTER]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100906 filter = kmalloc(sizeof(*filter), GFP_KERNEL);
907 if (filter == NULL)
908 return -ENOMEM;
909
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100910 memcpy(filter, nla_data(attrs[XFRMA_ADDRESS_FILTER]),
Nicolas Dichteld3623092014-02-14 15:30:36 +0100911 sizeof(*filter));
912 }
913
914 if (attrs[XFRMA_PROTO])
915 proto = nla_get_u8(attrs[XFRMA_PROTO]);
916
917 xfrm_state_walk_init(walk, proto, filter);
Timo Teras4c563f72008-02-28 21:31:08 -0800918 }
919
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800920 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 return skb->len;
923}
924
925static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
926 struct xfrm_state *x, u32 seq)
927{
928 struct xfrm_dump_info info;
929 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000930 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Thomas Graf7deb2262007-08-22 13:57:39 -0700932 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (!skb)
934 return ERR_PTR(-ENOMEM);
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 info.in_skb = in_skb;
937 info.out_skb = skb;
938 info.nlmsg_seq = seq;
939 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Mathias Krause864745d2012-09-13 11:41:26 +0000941 err = dump_one_state(x, 0, &info);
942 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000944 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
947 return skb;
948}
949
Michal Kubecek21ee5432014-06-03 10:26:06 +0200950/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
951 * Must be called with RCU read lock.
952 */
953static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
954 u32 pid, unsigned int group)
955{
956 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
957
958 if (nlsk)
959 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
960 else
961 return -1;
962}
963
Thomas Graf7deb2262007-08-22 13:57:39 -0700964static inline size_t xfrm_spdinfo_msgsize(void)
965{
966 return NLMSG_ALIGN(4)
967 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200968 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
969 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
970 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -0700971}
972
Alexey Dobriyane0710412010-01-23 13:37:10 +0000973static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000974 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700975{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700976 struct xfrmk_spdinfo si;
977 struct xfrmu_spdinfo spc;
978 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200979 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700980 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700981 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700982 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200983 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700984
Eric W. Biederman15e47302012-09-07 20:12:54 +0000985 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300986 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700987 return -EMSGSIZE;
988
989 f = nlmsg_data(nlh);
990 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000991 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700992 spc.incnt = si.incnt;
993 spc.outcnt = si.outcnt;
994 spc.fwdcnt = si.fwdcnt;
995 spc.inscnt = si.inscnt;
996 spc.outscnt = si.outscnt;
997 spc.fwdscnt = si.fwdscnt;
998 sph.spdhcnt = si.spdhcnt;
999 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001000
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001001 do {
1002 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1003
1004 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1005 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1006 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1007 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1008 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1009
David S. Miller1d1e34d2012-06-27 21:57:03 -07001010 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1011 if (!err)
1012 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001013 if (!err)
1014 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1015 if (!err)
1016 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001017 if (err) {
1018 nlmsg_cancel(skb, nlh);
1019 return err;
1020 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001021
Johannes Berg053c0952015-01-16 22:09:00 +01001022 nlmsg_end(skb, nlh);
1023 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001024}
1025
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001026static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1027 struct nlattr **attrs)
1028{
1029 struct net *net = sock_net(skb->sk);
1030 struct xfrmu_spdhthresh *thresh4 = NULL;
1031 struct xfrmu_spdhthresh *thresh6 = NULL;
1032
1033 /* selector prefixlen thresholds to hash policies */
1034 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1035 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1036
1037 if (nla_len(rta) < sizeof(*thresh4))
1038 return -EINVAL;
1039 thresh4 = nla_data(rta);
1040 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1041 return -EINVAL;
1042 }
1043 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1044 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1045
1046 if (nla_len(rta) < sizeof(*thresh6))
1047 return -EINVAL;
1048 thresh6 = nla_data(rta);
1049 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1050 return -EINVAL;
1051 }
1052
1053 if (thresh4 || thresh6) {
1054 write_seqlock(&net->xfrm.policy_hthresh.lock);
1055 if (thresh4) {
1056 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1057 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1058 }
1059 if (thresh6) {
1060 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1061 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1062 }
1063 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1064
1065 xfrm_policy_hash_rebuild(net);
1066 }
1067
1068 return 0;
1069}
1070
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001071static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001072 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001073{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001074 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001075 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001076 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001077 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001078 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001079
Thomas Graf7deb2262007-08-22 13:57:39 -07001080 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001081 if (r_skb == NULL)
1082 return -ENOMEM;
1083
Eric W. Biederman15e47302012-09-07 20:12:54 +00001084 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001085 BUG();
1086
Eric W. Biederman15e47302012-09-07 20:12:54 +00001087 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001088}
1089
Thomas Graf7deb2262007-08-22 13:57:39 -07001090static inline size_t xfrm_sadinfo_msgsize(void)
1091{
1092 return NLMSG_ALIGN(4)
1093 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1094 + nla_total_size(4); /* XFRMA_SAD_CNT */
1095}
1096
Alexey Dobriyane0710412010-01-23 13:37:10 +00001097static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001098 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001099{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001100 struct xfrmk_sadinfo si;
1101 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001102 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001103 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001104 u32 *f;
1105
Eric W. Biederman15e47302012-09-07 20:12:54 +00001106 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001107 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001108 return -EMSGSIZE;
1109
1110 f = nlmsg_data(nlh);
1111 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001112 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001113
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001114 sh.sadhmcnt = si.sadhmcnt;
1115 sh.sadhcnt = si.sadhcnt;
1116
David S. Miller1d1e34d2012-06-27 21:57:03 -07001117 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1118 if (!err)
1119 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1120 if (err) {
1121 nlmsg_cancel(skb, nlh);
1122 return err;
1123 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001124
Johannes Berg053c0952015-01-16 22:09:00 +01001125 nlmsg_end(skb, nlh);
1126 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001127}
1128
1129static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001130 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001131{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001132 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001133 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001134 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001135 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001136 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001137
Thomas Graf7deb2262007-08-22 13:57:39 -07001138 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001139 if (r_skb == NULL)
1140 return -ENOMEM;
1141
Eric W. Biederman15e47302012-09-07 20:12:54 +00001142 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001143 BUG();
1144
Eric W. Biederman15e47302012-09-07 20:12:54 +00001145 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001146}
1147
Christoph Hellwig22e70052007-01-02 15:22:30 -08001148static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001149 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001151 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001152 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 struct xfrm_state *x;
1154 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001155 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001157 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (x == NULL)
1159 goto out_noput;
1160
1161 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1162 if (IS_ERR(resp_skb)) {
1163 err = PTR_ERR(resp_skb);
1164 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001165 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167 xfrm_state_put(x);
1168out_noput:
1169 return err;
1170}
1171
Christoph Hellwig22e70052007-01-02 15:22:30 -08001172static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001173 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001175 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct xfrm_state *x;
1177 struct xfrm_userspi_info *p;
1178 struct sk_buff *resp_skb;
1179 xfrm_address_t *daddr;
1180 int family;
1181 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001182 u32 mark;
1183 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Thomas Graf7b67c852007-08-22 13:53:52 -07001185 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001186 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (err)
1188 goto out_noput;
1189
1190 family = p->info.family;
1191 daddr = &p->info.id.daddr;
1192
1193 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001194
1195 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001197 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001198 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 xfrm_state_put(x);
1200 x = NULL;
1201 }
1202 }
1203
1204 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001205 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 p->info.id.proto, daddr,
1207 &p->info.saddr, 1,
1208 family);
1209 err = -ENOENT;
1210 if (x == NULL)
1211 goto out_noput;
1212
Herbert Xu658b2192007-10-09 13:29:52 -07001213 err = xfrm_alloc_spi(x, p->min, p->max);
1214 if (err)
1215 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Herbert Xu658b2192007-10-09 13:29:52 -07001217 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (IS_ERR(resp_skb)) {
1219 err = PTR_ERR(resp_skb);
1220 goto out;
1221 }
1222
Eric W. Biederman15e47302012-09-07 20:12:54 +00001223 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225out:
1226 xfrm_state_put(x);
1227out_noput:
1228 return err;
1229}
1230
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001231static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
1233 switch (dir) {
1234 case XFRM_POLICY_IN:
1235 case XFRM_POLICY_OUT:
1236 case XFRM_POLICY_FWD:
1237 break;
1238
1239 default:
1240 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 return 0;
1244}
1245
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001246static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001247{
1248 switch (type) {
1249 case XFRM_POLICY_TYPE_MAIN:
1250#ifdef CONFIG_XFRM_SUB_POLICY
1251 case XFRM_POLICY_TYPE_SUB:
1252#endif
1253 break;
1254
1255 default:
1256 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001257 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001258
1259 return 0;
1260}
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1263{
Fan Due682adf2013-11-07 17:47:48 +08001264 int ret;
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 switch (p->share) {
1267 case XFRM_SHARE_ANY:
1268 case XFRM_SHARE_SESSION:
1269 case XFRM_SHARE_USER:
1270 case XFRM_SHARE_UNIQUE:
1271 break;
1272
1273 default:
1274 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 switch (p->action) {
1278 case XFRM_POLICY_ALLOW:
1279 case XFRM_POLICY_BLOCK:
1280 break;
1281
1282 default:
1283 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 switch (p->sel.family) {
1287 case AF_INET:
1288 break;
1289
1290 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001291#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 break;
1293#else
1294 return -EAFNOSUPPORT;
1295#endif
1296
1297 default:
1298 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Fan Due682adf2013-11-07 17:47:48 +08001301 ret = verify_policy_dir(p->dir);
1302 if (ret)
1303 return ret;
1304 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1305 return -EINVAL;
1306
1307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
Thomas Graf5424f322007-08-22 14:01:33 -07001310static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001311{
Thomas Graf5424f322007-08-22 14:01:33 -07001312 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001313 struct xfrm_user_sec_ctx *uctx;
1314
1315 if (!rt)
1316 return 0;
1317
Thomas Graf5424f322007-08-22 14:01:33 -07001318 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001319 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001320}
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1323 int nr)
1324{
1325 int i;
1326
1327 xp->xfrm_nr = nr;
1328 for (i = 0; i < nr; i++, ut++) {
1329 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1330
1331 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1332 memcpy(&t->saddr, &ut->saddr,
1333 sizeof(xfrm_address_t));
1334 t->reqid = ut->reqid;
1335 t->mode = ut->mode;
1336 t->share = ut->share;
1337 t->optional = ut->optional;
1338 t->aalgos = ut->aalgos;
1339 t->ealgos = ut->ealgos;
1340 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001341 /* If all masks are ~0, then we allow all algorithms. */
1342 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001343 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345}
1346
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001347static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1348{
1349 int i;
1350
1351 if (nr > XFRM_MAX_DEPTH)
1352 return -EINVAL;
1353
1354 for (i = 0; i < nr; i++) {
1355 /* We never validated the ut->family value, so many
1356 * applications simply leave it at zero. The check was
1357 * never made and ut->family was ignored because all
1358 * templates could be assumed to have the same family as
1359 * the policy itself. Now that we will have ipv4-in-ipv6
1360 * and ipv6-in-ipv4 tunnels, this is no longer true.
1361 */
1362 if (!ut[i].family)
1363 ut[i].family = family;
1364
1365 switch (ut[i].family) {
1366 case AF_INET:
1367 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001368#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001369 case AF_INET6:
1370 break;
1371#endif
1372 default:
1373 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001374 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001375 }
1376
1377 return 0;
1378}
1379
Thomas Graf5424f322007-08-22 14:01:33 -07001380static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Thomas Graf5424f322007-08-22 14:01:33 -07001382 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 if (!rt) {
1385 pol->xfrm_nr = 0;
1386 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001387 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1388 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001389 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001391 err = validate_tmpl(nr, utmpl, pol->family);
1392 if (err)
1393 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Thomas Graf5424f322007-08-22 14:01:33 -07001395 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 return 0;
1398}
1399
Thomas Graf5424f322007-08-22 14:01:33 -07001400static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001401{
Thomas Graf5424f322007-08-22 14:01:33 -07001402 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001403 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001404 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001405 int err;
1406
1407 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001408 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001409 type = upt->type;
1410 }
1411
1412 err = verify_policy_type(type);
1413 if (err)
1414 return err;
1415
1416 *tp = type;
1417 return 0;
1418}
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1421{
1422 xp->priority = p->priority;
1423 xp->index = p->index;
1424 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1425 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1426 xp->action = p->action;
1427 xp->flags = p->flags;
1428 xp->family = p->sel.family;
1429 /* XXX xp->share = p->share; */
1430}
1431
1432static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1433{
Mathias Krause7b789832012-09-19 11:33:40 +00001434 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1436 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1437 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1438 p->priority = xp->priority;
1439 p->index = xp->index;
1440 p->sel.family = xp->family;
1441 p->dir = dir;
1442 p->action = xp->action;
1443 p->flags = xp->flags;
1444 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1445}
1446
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001447static 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 -07001448{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001449 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 int err;
1451
1452 if (!xp) {
1453 *errp = -ENOMEM;
1454 return NULL;
1455 }
1456
1457 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001458
Thomas Graf35a7aa02007-08-22 14:00:40 -07001459 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001460 if (err)
1461 goto error;
1462
Thomas Graf35a7aa02007-08-22 14:00:40 -07001463 if (!(err = copy_from_user_tmpl(xp, attrs)))
1464 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001465 if (err)
1466 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001468 xfrm_mark_get(attrs, &xp->mark);
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471 error:
1472 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001473 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001474 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001475 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Christoph Hellwig22e70052007-01-02 15:22:30 -08001478static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001479 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001481 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001482 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001484 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 int err;
1486 int excl;
1487
1488 err = verify_newpolicy_info(p);
1489 if (err)
1490 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001491 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001492 if (err)
1493 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001495 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if (!xp)
1497 return err;
1498
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001499 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001500 * Aha! this is anti-netlink really i.e more pfkey derived
1501 * in netlink excl is a flag and you wouldnt need
1502 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1504 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001505 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001508 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 kfree(xp);
1510 return err;
1511 }
1512
Herbert Xuf60f6b82005-06-18 22:44:37 -07001513 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001514 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001515 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001516 km_policy_notify(xp, p->dir, &c);
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 xfrm_pol_put(xp);
1519
1520 return 0;
1521}
1522
1523static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1524{
1525 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1526 int i;
1527
1528 if (xp->xfrm_nr == 0)
1529 return 0;
1530
1531 for (i = 0; i < xp->xfrm_nr; i++) {
1532 struct xfrm_user_tmpl *up = &vec[i];
1533 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1534
Mathias Krause1f868402012-09-19 11:33:41 +00001535 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001537 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1539 up->reqid = kp->reqid;
1540 up->mode = kp->mode;
1541 up->share = kp->share;
1542 up->optional = kp->optional;
1543 up->aalgos = kp->aalgos;
1544 up->ealgos = kp->ealgos;
1545 up->calgos = kp->calgos;
1546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Thomas Grafc0144be2007-08-22 13:55:43 -07001548 return nla_put(skb, XFRMA_TMPL,
1549 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001550}
1551
Serge Hallyn0d681622006-07-24 23:30:44 -07001552static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1553{
1554 if (x->security) {
1555 return copy_sec_ctx(x->security, skb);
1556 }
1557 return 0;
1558}
1559
1560static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1561{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001562 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001563 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001564 return 0;
1565}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001566static inline size_t userpolicy_type_attrsize(void)
1567{
1568#ifdef CONFIG_XFRM_SUB_POLICY
1569 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1570#else
1571 return 0;
1572#endif
1573}
Serge Hallyn0d681622006-07-24 23:30:44 -07001574
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001575#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001576static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001577{
Thomas Grafc0144be2007-08-22 13:55:43 -07001578 struct xfrm_userpolicy_type upt = {
1579 .type = type,
1580 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001581
Thomas Grafc0144be2007-08-22 13:55:43 -07001582 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001583}
1584
1585#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001586static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001587{
1588 return 0;
1589}
1590#endif
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1593{
1594 struct xfrm_dump_info *sp = ptr;
1595 struct xfrm_userpolicy_info *p;
1596 struct sk_buff *in_skb = sp->in_skb;
1597 struct sk_buff *skb = sp->out_skb;
1598 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001599 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Eric W. Biederman15e47302012-09-07 20:12:54 +00001601 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001602 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1603 if (nlh == NULL)
1604 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Thomas Graf7b67c852007-08-22 13:53:52 -07001606 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001608 err = copy_to_user_tmpl(xp, skb);
1609 if (!err)
1610 err = copy_to_user_sec_ctx(xp, skb);
1611 if (!err)
1612 err = copy_to_user_policy_type(xp->type, skb);
1613 if (!err)
1614 err = xfrm_mark_put(skb, &xp->mark);
1615 if (err) {
1616 nlmsg_cancel(skb, nlh);
1617 return err;
1618 }
Thomas Graf98250692007-08-22 12:47:26 -07001619 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
Timo Teras4c563f72008-02-28 21:31:08 -08001623static int xfrm_dump_policy_done(struct netlink_callback *cb)
1624{
1625 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001626 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001627
Fan Du283bc9f2013-11-07 17:47:50 +08001628 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001629 return 0;
1630}
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1633{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001634 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001635 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 struct xfrm_dump_info info;
1637
Timo Teras4c563f72008-02-28 21:31:08 -08001638 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1639 sizeof(cb->args) - sizeof(cb->args[0]));
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 info.in_skb = cb->skb;
1642 info.out_skb = skb;
1643 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1644 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001645
1646 if (!cb->args[0]) {
1647 cb->args[0] = 1;
1648 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1649 }
1650
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001651 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 return skb->len;
1654}
1655
1656static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1657 struct xfrm_policy *xp,
1658 int dir, u32 seq)
1659{
1660 struct xfrm_dump_info info;
1661 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001662 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Thomas Graf7deb2262007-08-22 13:57:39 -07001664 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (!skb)
1666 return ERR_PTR(-ENOMEM);
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 info.in_skb = in_skb;
1669 info.out_skb = skb;
1670 info.nlmsg_seq = seq;
1671 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Mathias Krausec2546372012-09-14 09:58:32 +00001673 err = dump_one_policy(xp, dir, 0, &info);
1674 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001676 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678
1679 return skb;
1680}
1681
Christoph Hellwig22e70052007-01-02 15:22:30 -08001682static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001683 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001685 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 struct xfrm_policy *xp;
1687 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001688 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001690 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001692 struct xfrm_mark m;
1693 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Thomas Graf7b67c852007-08-22 13:53:52 -07001695 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1697
Thomas Graf35a7aa02007-08-22 14:00:40 -07001698 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001699 if (err)
1700 return err;
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 err = verify_policy_dir(p->dir);
1703 if (err)
1704 return err;
1705
1706 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001707 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001708 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001709 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001710 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001711
Thomas Graf35a7aa02007-08-22 14:00:40 -07001712 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001713 if (err)
1714 return err;
1715
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001716 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001717 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001718 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001719
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001720 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001721 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001722 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001723 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001724 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001725 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001726 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (xp == NULL)
1729 return -ENOENT;
1730
1731 if (!delete) {
1732 struct sk_buff *resp_skb;
1733
1734 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1735 if (IS_ERR(resp_skb)) {
1736 err = PTR_ERR(resp_skb);
1737 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001738 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001739 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001741 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001742 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001743
1744 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001745 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001746
Herbert Xue7443892005-06-18 22:44:18 -07001747 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001748 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001749 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001750 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001751 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001754out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001755 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001756 if (delete && err == 0)
1757 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return err;
1759}
1760
Christoph Hellwig22e70052007-01-02 15:22:30 -08001761static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001762 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001764 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001765 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001766 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001767 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Tetsuo Handa2e710292014-04-22 21:48:30 +09001769 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001770 if (err) {
1771 if (err == -ESRCH) /* empty table */
1772 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001773 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001774 }
Herbert Xubf088672005-06-18 22:44:00 -07001775 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001776 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001777 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001778 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001779 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001780 km_state_notify(NULL, &c);
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return 0;
1783}
1784
Steffen Klassertd8647b72011-03-08 00:10:27 +00001785static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001786{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001787 size_t replay_size = x->replay_esn ?
1788 xfrm_replay_state_esn_len(x->replay_esn) :
1789 sizeof(struct xfrm_replay_state);
1790
Thomas Graf7deb2262007-08-22 13:57:39 -07001791 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001792 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001793 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001794 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001795 + nla_total_size(4) /* XFRM_AE_RTHR */
1796 + nla_total_size(4); /* XFRM_AE_ETHR */
1797}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001798
David S. Miller214e0052011-02-24 00:02:38 -05001799static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001800{
1801 struct xfrm_aevent_id *id;
1802 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001803 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001804
Eric W. Biederman15e47302012-09-07 20:12:54 +00001805 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001806 if (nlh == NULL)
1807 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001808
Thomas Graf7b67c852007-08-22 13:53:52 -07001809 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001810 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001811 id->sa_id.spi = x->id.spi;
1812 id->sa_id.family = x->props.family;
1813 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001814 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001815 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001816 id->flags = c->data.aevent;
1817
David S. Millerd0fde792012-03-29 04:02:26 -04001818 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001819 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1820 xfrm_replay_state_esn_len(x->replay_esn),
1821 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001822 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001823 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1824 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001825 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001826 if (err)
1827 goto out_cancel;
1828 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1829 if (err)
1830 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001831
David S. Miller1d1e34d2012-06-27 21:57:03 -07001832 if (id->flags & XFRM_AE_RTHR) {
1833 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1834 if (err)
1835 goto out_cancel;
1836 }
1837 if (id->flags & XFRM_AE_ETHR) {
1838 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1839 x->replay_maxage * 10 / HZ);
1840 if (err)
1841 goto out_cancel;
1842 }
1843 err = xfrm_mark_put(skb, &x->mark);
1844 if (err)
1845 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001846
Johannes Berg053c0952015-01-16 22:09:00 +01001847 nlmsg_end(skb, nlh);
1848 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001849
David S. Miller1d1e34d2012-06-27 21:57:03 -07001850out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001851 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001852 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001853}
1854
Christoph Hellwig22e70052007-01-02 15:22:30 -08001855static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001856 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001857{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001858 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001859 struct xfrm_state *x;
1860 struct sk_buff *r_skb;
1861 int err;
1862 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001863 u32 mark;
1864 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001865 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001866 struct xfrm_usersa_id *id = &p->sa_id;
1867
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001868 mark = xfrm_mark_get(attrs, &m);
1869
1870 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001871 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001872 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001873
1874 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1875 if (r_skb == NULL) {
1876 xfrm_state_put(x);
1877 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001878 }
1879
1880 /*
1881 * XXX: is this lock really needed - none of the other
1882 * gets lock (the concern is things getting updated
1883 * while we are still reading) - jhs
1884 */
1885 spin_lock_bh(&x->lock);
1886 c.data.aevent = p->flags;
1887 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001888 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001889
1890 if (build_aevent(r_skb, x, &c) < 0)
1891 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001892 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001893 spin_unlock_bh(&x->lock);
1894 xfrm_state_put(x);
1895 return err;
1896}
1897
Christoph Hellwig22e70052007-01-02 15:22:30 -08001898static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001899 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001900{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001901 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001902 struct xfrm_state *x;
1903 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001904 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001905 u32 mark = 0;
1906 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001907 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001908 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001909 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001910 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001911
Steffen Klassertd8647b72011-03-08 00:10:27 +00001912 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001913 return err;
1914
1915 /* pedantic mode - thou shalt sayeth replaceth */
1916 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1917 return err;
1918
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001919 mark = xfrm_mark_get(attrs, &m);
1920
1921 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 -08001922 if (x == NULL)
1923 return -ESRCH;
1924
1925 if (x->km.state != XFRM_STATE_VALID)
1926 goto out;
1927
Steffen Klassert4479ff72013-09-09 09:39:01 +02001928 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001929 if (err)
1930 goto out;
1931
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001932 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001933 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001934 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001935
1936 c.event = nlh->nlmsg_type;
1937 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001938 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001939 c.data.aevent = XFRM_AE_CU;
1940 km_state_notify(x, &c);
1941 err = 0;
1942out:
1943 xfrm_state_put(x);
1944 return err;
1945}
1946
Christoph Hellwig22e70052007-01-02 15:22:30 -08001947static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001948 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001950 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001951 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001952 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001953 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001954
Thomas Graf35a7aa02007-08-22 14:00:40 -07001955 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001956 if (err)
1957 return err;
1958
Tetsuo Handa2e710292014-04-22 21:48:30 +09001959 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001960 if (err) {
1961 if (err == -ESRCH) /* empty table */
1962 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001963 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001964 }
1965
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001966 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001967 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001968 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001969 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001970 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001971 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return 0;
1973}
1974
Christoph Hellwig22e70052007-01-02 15:22:30 -08001975static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001976 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001977{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001978 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001979 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001980 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001981 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001982 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001983 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001984 struct xfrm_mark m;
1985 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001986
Thomas Graf35a7aa02007-08-22 14:00:40 -07001987 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001988 if (err)
1989 return err;
1990
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001991 err = verify_policy_dir(p->dir);
1992 if (err)
1993 return err;
1994
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001995 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001996 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001997 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001998 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001999 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002000
Thomas Graf35a7aa02007-08-22 14:00:40 -07002001 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002002 if (err)
2003 return err;
2004
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002005 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002006 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002007 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002008
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002009 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002010 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002011 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002012 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002013 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002014 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002015 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002016 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002017 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002018 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002019
Timo Teräsea2dea92010-03-31 00:17:05 +00002020 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002021 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002022
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002023 err = 0;
2024 if (up->hard) {
2025 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002026 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002027 } else {
2028 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00002029 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002030 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002031 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002032
2033out:
2034 xfrm_pol_put(xp);
2035 return err;
2036}
2037
Christoph Hellwig22e70052007-01-02 15:22:30 -08002038static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002039 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002040{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002041 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002042 struct xfrm_state *x;
2043 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002044 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002045 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002046 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002047 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002048
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002049 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 -08002050
David S. Miller3a765aa2007-02-26 14:52:21 -08002051 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002052 if (x == NULL)
2053 return err;
2054
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002055 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002056 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002057 if (x->km.state != XFRM_STATE_VALID)
2058 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002059 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002060
Joy Latten161a09e2006-11-27 13:11:54 -06002061 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002062 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002063 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002064 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002065 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002066out:
2067 spin_unlock_bh(&x->lock);
2068 xfrm_state_put(x);
2069 return err;
2070}
2071
Christoph Hellwig22e70052007-01-02 15:22:30 -08002072static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002073 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002074{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002075 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002076 struct xfrm_policy *xp;
2077 struct xfrm_user_tmpl *ut;
2078 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002079 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002080 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002081
Thomas Graf7b67c852007-08-22 13:53:52 -07002082 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002083 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002084 int err = -ENOMEM;
2085
2086 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002087 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002088
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002089 xfrm_mark_get(attrs, &mark);
2090
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002091 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002092 if (err)
2093 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002094
2095 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002096 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002097 if (!xp)
2098 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002099
2100 memcpy(&x->id, &ua->id, sizeof(ua->id));
2101 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2102 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002103 xp->mark.m = x->mark.m = mark.m;
2104 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002105 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002106 /* extract the templates and for each call km_key */
2107 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2108 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2109 memcpy(&x->id, &t->id, sizeof(x->id));
2110 x->props.mode = t->mode;
2111 x->props.reqid = t->reqid;
2112 x->props.family = ut->family;
2113 t->aalgos = ua->aalgos;
2114 t->ealgos = ua->ealgos;
2115 t->calgos = ua->calgos;
2116 err = km_query(x, t, xp);
2117
2118 }
2119
2120 kfree(x);
2121 kfree(xp);
2122
2123 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002124
2125bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002126 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002127free_state:
2128 kfree(x);
2129nomem:
2130 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002131}
2132
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002133#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002134static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002135 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002136 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002137{
Thomas Graf5424f322007-08-22 14:01:33 -07002138 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002139 struct xfrm_user_migrate *um;
2140 int i, num_migrate;
2141
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002142 if (k != NULL) {
2143 struct xfrm_user_kmaddress *uk;
2144
2145 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2146 memcpy(&k->local, &uk->local, sizeof(k->local));
2147 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2148 k->family = uk->family;
2149 k->reserved = uk->reserved;
2150 }
2151
Thomas Graf5424f322007-08-22 14:01:33 -07002152 um = nla_data(rt);
2153 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002154
2155 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2156 return -EINVAL;
2157
2158 for (i = 0; i < num_migrate; i++, um++, ma++) {
2159 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2160 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2161 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2162 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2163
2164 ma->proto = um->proto;
2165 ma->mode = um->mode;
2166 ma->reqid = um->reqid;
2167
2168 ma->old_family = um->old_family;
2169 ma->new_family = um->new_family;
2170 }
2171
2172 *num = i;
2173 return 0;
2174}
2175
2176static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002177 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002178{
Thomas Graf7b67c852007-08-22 13:53:52 -07002179 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002180 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002181 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002182 u8 type;
2183 int err;
2184 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002185 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002186
Thomas Graf35a7aa02007-08-22 14:00:40 -07002187 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002188 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002189
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002190 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2191
Thomas Graf5424f322007-08-22 14:01:33 -07002192 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002193 if (err)
2194 return err;
2195
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002196 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002197 if (err)
2198 return err;
2199
2200 if (!n)
2201 return 0;
2202
Fan Du8d549c42013-11-07 17:47:49 +08002203 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002204
2205 return 0;
2206}
2207#else
2208static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002209 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002210{
2211 return -ENOPROTOOPT;
2212}
2213#endif
2214
2215#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002216static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002217{
2218 struct xfrm_user_migrate um;
2219
2220 memset(&um, 0, sizeof(um));
2221 um.proto = m->proto;
2222 um.mode = m->mode;
2223 um.reqid = m->reqid;
2224 um.old_family = m->old_family;
2225 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2226 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2227 um.new_family = m->new_family;
2228 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2229 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2230
Thomas Grafc0144be2007-08-22 13:55:43 -07002231 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002232}
2233
David S. Miller183cad12011-02-24 00:28:01 -05002234static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002235{
2236 struct xfrm_user_kmaddress uk;
2237
2238 memset(&uk, 0, sizeof(uk));
2239 uk.family = k->family;
2240 uk.reserved = k->reserved;
2241 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002242 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002243
2244 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2245}
2246
2247static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002248{
2249 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002250 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2251 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2252 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002253}
2254
David S. Miller183cad12011-02-24 00:28:01 -05002255static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2256 int num_migrate, const struct xfrm_kmaddress *k,
2257 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002258{
David S. Miller183cad12011-02-24 00:28:01 -05002259 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002260 struct xfrm_userpolicy_id *pol_id;
2261 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002262 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002263
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002264 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2265 if (nlh == NULL)
2266 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002267
Thomas Graf7b67c852007-08-22 13:53:52 -07002268 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002269 /* copy data from selector, dir, and type to the pol_id */
2270 memset(pol_id, 0, sizeof(*pol_id));
2271 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2272 pol_id->dir = dir;
2273
David S. Miller1d1e34d2012-06-27 21:57:03 -07002274 if (k != NULL) {
2275 err = copy_to_user_kmaddress(k, skb);
2276 if (err)
2277 goto out_cancel;
2278 }
2279 err = copy_to_user_policy_type(type, skb);
2280 if (err)
2281 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002282 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002283 err = copy_to_user_migrate(mp, skb);
2284 if (err)
2285 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002286 }
2287
Johannes Berg053c0952015-01-16 22:09:00 +01002288 nlmsg_end(skb, nlh);
2289 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002290
2291out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002292 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002293 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294}
2295
David S. Miller183cad12011-02-24 00:28:01 -05002296static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2297 const struct xfrm_migrate *m, int num_migrate,
2298 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002299{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002300 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002301 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002302
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002303 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002304 if (skb == NULL)
2305 return -ENOMEM;
2306
2307 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002308 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002309 BUG();
2310
Michal Kubecek21ee5432014-06-03 10:26:06 +02002311 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002312}
2313#else
David S. Miller183cad12011-02-24 00:28:01 -05002314static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2315 const struct xfrm_migrate *m, int num_migrate,
2316 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002317{
2318 return -ENOPROTOOPT;
2319}
2320#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002321
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002322#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002323
2324static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002325 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002326 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2327 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2328 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2329 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2330 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2331 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002332 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002333 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002334 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002335 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002336 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002337 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002338 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002339 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2340 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002341 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002342 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002343 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002344 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002345 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346};
2347
Thomas Graf492b5582005-05-03 14:26:40 -07002348#undef XMSGSIZE
2349
Thomas Grafcf5cb792007-08-22 13:59:04 -07002350static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002351 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2352 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2353 [XFRMA_LASTUSED] = { .type = NLA_U64},
2354 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002355 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002356 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2357 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2358 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2359 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2360 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2361 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2362 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2363 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2364 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2365 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2366 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2367 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2368 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2369 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002370 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002371 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002372 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002373 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002374 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002375 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002376 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002377};
2378
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002379static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2380 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2381 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2382};
2383
Mathias Krause05600a72013-02-24 14:10:27 +01002384static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002385 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002387 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002388 const struct nla_policy *nla_pol;
2389 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002390} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2391 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2392 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2393 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002394 .dump = xfrm_dump_sa,
2395 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002396 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2397 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2398 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002399 .dump = xfrm_dump_policy,
2400 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002401 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002402 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002403 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002404 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2405 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002406 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002407 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2408 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002409 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2410 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002411 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002412 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002413 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2414 .nla_pol = xfrma_spd_policy,
2415 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002416 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417};
2418
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002419static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002421 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002422 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002423 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002424 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002428 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 type -= XFRM_MSG_BASE;
2431 link = &xfrm_dispatch[type];
2432
2433 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002434 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002435 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Thomas Graf492b5582005-05-03 14:26:40 -07002437 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2438 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002439 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002441 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002443 {
2444 struct netlink_dump_control c = {
2445 .dump = link->dump,
2446 .done = link->done,
2447 };
2448 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
2451
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002452 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2453 link->nla_max ? : XFRMA_MAX,
2454 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002455 if (err < 0)
2456 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
2458 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002459 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Thomas Graf5424f322007-08-22 14:01:33 -07002461 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002464static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Fan Du283bc9f2013-11-07 17:47:50 +08002466 struct net *net = sock_net(skb->sk);
2467
2468 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002469 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002470 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Thomas Graf7deb2262007-08-22 13:57:39 -07002473static inline size_t xfrm_expire_msgsize(void)
2474{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002475 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2476 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002477}
2478
David S. Miller214e0052011-02-24 00:02:38 -05002479static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
2481 struct xfrm_user_expire *ue;
2482 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002483 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Eric W. Biederman15e47302012-09-07 20:12:54 +00002485 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002486 if (nlh == NULL)
2487 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Thomas Graf7b67c852007-08-22 13:53:52 -07002489 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002491 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
David S. Miller1d1e34d2012-06-27 21:57:03 -07002493 err = xfrm_mark_put(skb, &x->mark);
2494 if (err)
2495 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002496
Johannes Berg053c0952015-01-16 22:09:00 +01002497 nlmsg_end(skb, nlh);
2498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499}
2500
David S. Miller214e0052011-02-24 00:02:38 -05002501static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002503 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 struct sk_buff *skb;
2505
Thomas Graf7deb2262007-08-22 13:57:39 -07002506 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (skb == NULL)
2508 return -ENOMEM;
2509
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002510 if (build_expire(skb, x, c) < 0) {
2511 kfree_skb(skb);
2512 return -EMSGSIZE;
2513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Michal Kubecek21ee5432014-06-03 10:26:06 +02002515 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
David S. Miller214e0052011-02-24 00:02:38 -05002518static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002519{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002520 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002521 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002522
Steffen Klassertd8647b72011-03-08 00:10:27 +00002523 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002524 if (skb == NULL)
2525 return -ENOMEM;
2526
2527 if (build_aevent(skb, x, c) < 0)
2528 BUG();
2529
Michal Kubecek21ee5432014-06-03 10:26:06 +02002530 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002531}
2532
David S. Miller214e0052011-02-24 00:02:38 -05002533static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002534{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002535 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002536 struct xfrm_usersa_flush *p;
2537 struct nlmsghdr *nlh;
2538 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002539 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002540
Thomas Graf7deb2262007-08-22 13:57:39 -07002541 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002542 if (skb == NULL)
2543 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002544
Eric W. Biederman15e47302012-09-07 20:12:54 +00002545 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002546 if (nlh == NULL) {
2547 kfree_skb(skb);
2548 return -EMSGSIZE;
2549 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002550
Thomas Graf7b67c852007-08-22 13:53:52 -07002551 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002552 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002553
Thomas Graf98250692007-08-22 12:47:26 -07002554 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002555
Michal Kubecek21ee5432014-06-03 10:26:06 +02002556 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002557}
2558
Thomas Graf7deb2262007-08-22 13:57:39 -07002559static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002560{
Thomas Graf7deb2262007-08-22 13:57:39 -07002561 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002562 if (x->aead)
2563 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002564 if (x->aalg) {
2565 l += nla_total_size(sizeof(struct xfrm_algo) +
2566 (x->aalg->alg_key_len + 7) / 8);
2567 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2568 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002569 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002570 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002571 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002572 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002573 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002574 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002575 if (x->tfcpad)
2576 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002577 if (x->replay_esn)
2578 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002579 else
2580 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002581 if (x->security)
2582 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2583 x->security->ctx_len);
2584 if (x->coaddr)
2585 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002586 if (x->props.extra_flags)
2587 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002588
Herbert Xud26f3982007-11-13 21:47:08 -08002589 /* Must count x->lastused as it may become non-zero behind our back. */
2590 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002591
2592 return l;
2593}
2594
David S. Miller214e0052011-02-24 00:02:38 -05002595static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002596{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002597 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002598 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002599 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002600 struct nlmsghdr *nlh;
2601 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002602 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002603 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002604
2605 headlen = sizeof(*p);
2606 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002607 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002608 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002609 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002610 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002611 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002612
Thomas Graf7deb2262007-08-22 13:57:39 -07002613 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002614 if (skb == NULL)
2615 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002616
Eric W. Biederman15e47302012-09-07 20:12:54 +00002617 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002618 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002619 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002620 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002621
Thomas Graf7b67c852007-08-22 13:53:52 -07002622 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002623 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002624 struct nlattr *attr;
2625
Thomas Graf7b67c852007-08-22 13:53:52 -07002626 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002627 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2628 id->spi = x->id.spi;
2629 id->family = x->props.family;
2630 id->proto = x->id.proto;
2631
Thomas Grafc0144be2007-08-22 13:55:43 -07002632 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002633 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002634 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002635 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002636
2637 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002638 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002639 err = copy_to_user_state_extra(x, p, skb);
2640 if (err)
2641 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002642
Thomas Graf98250692007-08-22 12:47:26 -07002643 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002644
Michal Kubecek21ee5432014-06-03 10:26:06 +02002645 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002646
David S. Miller1d1e34d2012-06-27 21:57:03 -07002647out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002648 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002649 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002650}
2651
David S. Miller214e0052011-02-24 00:02:38 -05002652static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002653{
2654
2655 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002656 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002657 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002658 case XFRM_MSG_NEWAE:
2659 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002660 case XFRM_MSG_DELSA:
2661 case XFRM_MSG_UPDSA:
2662 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002663 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002664 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002665 return xfrm_notify_sa_flush(c);
2666 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002667 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2668 c->event);
2669 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002670 }
2671
2672 return 0;
2673
2674}
2675
Thomas Graf7deb2262007-08-22 13:57:39 -07002676static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2677 struct xfrm_policy *xp)
2678{
2679 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2680 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002681 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002682 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2683 + userpolicy_type_attrsize();
2684}
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002687 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002689 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 struct xfrm_user_acquire *ua;
2691 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002692 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002694 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2695 if (nlh == NULL)
2696 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Thomas Graf7b67c852007-08-22 13:53:52 -07002698 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 memcpy(&ua->id, &x->id, sizeof(ua->id));
2700 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2701 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002702 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 ua->aalgos = xt->aalgos;
2704 ua->ealgos = xt->ealgos;
2705 ua->calgos = xt->calgos;
2706 ua->seq = x->km.seq = seq;
2707
David S. Miller1d1e34d2012-06-27 21:57:03 -07002708 err = copy_to_user_tmpl(xp, skb);
2709 if (!err)
2710 err = copy_to_user_state_sec_ctx(x, skb);
2711 if (!err)
2712 err = copy_to_user_policy_type(xp->type, skb);
2713 if (!err)
2714 err = xfrm_mark_put(skb, &xp->mark);
2715 if (err) {
2716 nlmsg_cancel(skb, nlh);
2717 return err;
2718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Johannes Berg053c0952015-01-16 22:09:00 +01002720 nlmsg_end(skb, nlh);
2721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722}
2723
2724static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002725 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002727 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Thomas Graf7deb2262007-08-22 13:57:39 -07002730 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (skb == NULL)
2732 return -ENOMEM;
2733
Fan Du65e07362012-08-15 10:13:47 +08002734 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 BUG();
2736
Michal Kubecek21ee5432014-06-03 10:26:06 +02002737 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738}
2739
2740/* User gives us xfrm_user_policy_info followed by an array of 0
2741 * or more templates.
2742 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002743static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 u8 *data, int len, int *dir)
2745{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002746 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2748 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2749 struct xfrm_policy *xp;
2750 int nr;
2751
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002752 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 case AF_INET:
2754 if (opt != IP_XFRM_POLICY) {
2755 *dir = -EOPNOTSUPP;
2756 return NULL;
2757 }
2758 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002759#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 case AF_INET6:
2761 if (opt != IPV6_XFRM_POLICY) {
2762 *dir = -EOPNOTSUPP;
2763 return NULL;
2764 }
2765 break;
2766#endif
2767 default:
2768 *dir = -EINVAL;
2769 return NULL;
2770 }
2771
2772 *dir = -EINVAL;
2773
2774 if (len < sizeof(*p) ||
2775 verify_newpolicy_info(p))
2776 return NULL;
2777
2778 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002779 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return NULL;
2781
Herbert Xua4f1bac2005-07-26 15:43:17 -07002782 if (p->dir > XFRM_POLICY_OUT)
2783 return NULL;
2784
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002785 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (xp == NULL) {
2787 *dir = -ENOBUFS;
2788 return NULL;
2789 }
2790
2791 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002792 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 copy_templates(xp, ut, nr);
2794
2795 *dir = p->dir;
2796
2797 return xp;
2798}
2799
Thomas Graf7deb2262007-08-22 13:57:39 -07002800static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2801{
2802 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2803 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2804 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002805 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002806 + userpolicy_type_attrsize();
2807}
2808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002810 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
2812 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002813 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002814 struct nlmsghdr *nlh;
2815 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Eric W. Biederman15e47302012-09-07 20:12:54 +00002817 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002818 if (nlh == NULL)
2819 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Thomas Graf7b67c852007-08-22 13:53:52 -07002821 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002823 err = copy_to_user_tmpl(xp, skb);
2824 if (!err)
2825 err = copy_to_user_sec_ctx(xp, skb);
2826 if (!err)
2827 err = copy_to_user_policy_type(xp->type, skb);
2828 if (!err)
2829 err = xfrm_mark_put(skb, &xp->mark);
2830 if (err) {
2831 nlmsg_cancel(skb, nlh);
2832 return err;
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 upe->hard = !!hard;
2835
Johannes Berg053c0952015-01-16 22:09:00 +01002836 nlmsg_end(skb, nlh);
2837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838}
2839
David S. Miller214e0052011-02-24 00:02:38 -05002840static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002842 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Thomas Graf7deb2262007-08-22 13:57:39 -07002845 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 if (skb == NULL)
2847 return -ENOMEM;
2848
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002849 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 BUG();
2851
Michal Kubecek21ee5432014-06-03 10:26:06 +02002852 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853}
2854
David S. Miller214e0052011-02-24 00:02:38 -05002855static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002856{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002857 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002858 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002859 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002860 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002861 struct nlmsghdr *nlh;
2862 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002863 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002864
2865 headlen = sizeof(*p);
2866 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002867 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002868 headlen = sizeof(*id);
2869 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002870 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002871 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002872 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002873
Thomas Graf7deb2262007-08-22 13:57:39 -07002874 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002875 if (skb == NULL)
2876 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002877
Eric W. Biederman15e47302012-09-07 20:12:54 +00002878 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002879 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002880 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002881 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882
Thomas Graf7b67c852007-08-22 13:53:52 -07002883 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002884 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002885 struct nlattr *attr;
2886
Thomas Graf7b67c852007-08-22 13:53:52 -07002887 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002888 memset(id, 0, sizeof(*id));
2889 id->dir = dir;
2890 if (c->data.byid)
2891 id->index = xp->index;
2892 else
2893 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2894
Thomas Grafc0144be2007-08-22 13:55:43 -07002895 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002896 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002897 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002898 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002899
2900 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002901 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002902
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002903 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002904 err = copy_to_user_tmpl(xp, skb);
2905 if (!err)
2906 err = copy_to_user_policy_type(xp->type, skb);
2907 if (!err)
2908 err = xfrm_mark_put(skb, &xp->mark);
2909 if (err)
2910 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002911
Thomas Graf98250692007-08-22 12:47:26 -07002912 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002913
Michal Kubecek21ee5432014-06-03 10:26:06 +02002914 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002915
David S. Miller1d1e34d2012-06-27 21:57:03 -07002916out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002917 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002918 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002919}
2920
David S. Miller214e0052011-02-24 00:02:38 -05002921static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002922{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002923 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002924 struct nlmsghdr *nlh;
2925 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002926 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002927
Thomas Graf7deb2262007-08-22 13:57:39 -07002928 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002929 if (skb == NULL)
2930 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002931
Eric W. Biederman15e47302012-09-07 20:12:54 +00002932 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002933 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002934 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002935 goto out_free_skb;
2936 err = copy_to_user_policy_type(c->data.type, skb);
2937 if (err)
2938 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002939
Thomas Graf98250692007-08-22 12:47:26 -07002940 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002941
Michal Kubecek21ee5432014-06-03 10:26:06 +02002942 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002943
David S. Miller1d1e34d2012-06-27 21:57:03 -07002944out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002945 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002946 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947}
2948
David S. Miller214e0052011-02-24 00:02:38 -05002949static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002950{
2951
2952 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002953 case XFRM_MSG_NEWPOLICY:
2954 case XFRM_MSG_UPDPOLICY:
2955 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002956 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002957 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002958 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002959 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002960 return xfrm_exp_policy_notify(xp, dir, c);
2961 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002962 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2963 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002964 }
2965
2966 return 0;
2967
2968}
2969
Thomas Graf7deb2262007-08-22 13:57:39 -07002970static inline size_t xfrm_report_msgsize(void)
2971{
2972 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2973}
2974
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002975static int build_report(struct sk_buff *skb, u8 proto,
2976 struct xfrm_selector *sel, xfrm_address_t *addr)
2977{
2978 struct xfrm_user_report *ur;
2979 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002980
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002981 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2982 if (nlh == NULL)
2983 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002984
Thomas Graf7b67c852007-08-22 13:53:52 -07002985 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002986 ur->proto = proto;
2987 memcpy(&ur->sel, sel, sizeof(ur->sel));
2988
David S. Miller1d1e34d2012-06-27 21:57:03 -07002989 if (addr) {
2990 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2991 if (err) {
2992 nlmsg_cancel(skb, nlh);
2993 return err;
2994 }
2995 }
Johannes Berg053c0952015-01-16 22:09:00 +01002996 nlmsg_end(skb, nlh);
2997 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002998}
2999
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003000static int xfrm_send_report(struct net *net, u8 proto,
3001 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003002{
3003 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003004
Thomas Graf7deb2262007-08-22 13:57:39 -07003005 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003006 if (skb == NULL)
3007 return -ENOMEM;
3008
3009 if (build_report(skb, proto, sel, addr) < 0)
3010 BUG();
3011
Michal Kubecek21ee5432014-06-03 10:26:06 +02003012 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003013}
3014
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003015static inline size_t xfrm_mapping_msgsize(void)
3016{
3017 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3018}
3019
3020static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3021 xfrm_address_t *new_saddr, __be16 new_sport)
3022{
3023 struct xfrm_user_mapping *um;
3024 struct nlmsghdr *nlh;
3025
3026 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3027 if (nlh == NULL)
3028 return -EMSGSIZE;
3029
3030 um = nlmsg_data(nlh);
3031
3032 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3033 um->id.spi = x->id.spi;
3034 um->id.family = x->props.family;
3035 um->id.proto = x->id.proto;
3036 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3037 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3038 um->new_sport = new_sport;
3039 um->old_sport = x->encap->encap_sport;
3040 um->reqid = x->props.reqid;
3041
Johannes Berg053c0952015-01-16 22:09:00 +01003042 nlmsg_end(skb, nlh);
3043 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003044}
3045
3046static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3047 __be16 sport)
3048{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003049 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003050 struct sk_buff *skb;
3051
3052 if (x->id.proto != IPPROTO_ESP)
3053 return -EINVAL;
3054
3055 if (!x->encap)
3056 return -EINVAL;
3057
3058 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3059 if (skb == NULL)
3060 return -ENOMEM;
3061
3062 if (build_mapping(skb, x, ipaddr, sport) < 0)
3063 BUG();
3064
Michal Kubecek21ee5432014-06-03 10:26:06 +02003065 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003066}
3067
Horia Geanta0f245582014-02-12 16:20:06 +02003068static bool xfrm_is_alive(const struct km_event *c)
3069{
3070 return (bool)xfrm_acquire_is_on(c->net);
3071}
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073static struct xfrm_mgr netlink_mgr = {
3074 .id = "netlink",
3075 .notify = xfrm_send_state_notify,
3076 .acquire = xfrm_send_acquire,
3077 .compile_policy = xfrm_compile_policy,
3078 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003079 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003080 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003081 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003082 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083};
3084
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003085static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Patrick McHardybe336902006-03-20 22:40:54 -08003087 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003088 struct netlink_kernel_cfg cfg = {
3089 .groups = XFRMNLGRP_MAX,
3090 .input = xfrm_netlink_rcv,
3091 };
Patrick McHardybe336902006-03-20 22:40:54 -08003092
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003093 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003094 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003096 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003097 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 return 0;
3099}
3100
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003101static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003102{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003103 struct net *net;
3104 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003105 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003106 synchronize_net();
3107 list_for_each_entry(net, net_exit_list, exit_list)
3108 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003109}
3110
3111static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003112 .init = xfrm_user_net_init,
3113 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003114};
3115
3116static int __init xfrm_user_init(void)
3117{
3118 int rv;
3119
3120 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3121
3122 rv = register_pernet_subsys(&xfrm_user_net_ops);
3123 if (rv < 0)
3124 return rv;
3125 rv = xfrm_register_km(&netlink_mgr);
3126 if (rv < 0)
3127 unregister_pernet_subsys(&xfrm_user_net_ops);
3128 return rv;
3129}
3130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131static void __exit xfrm_user_exit(void)
3132{
3133 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003134 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135}
3136
3137module_init(xfrm_user_init);
3138module_exit(xfrm_user_exit);
3139MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003140MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003141