blob: e812e988c111b7d83b4e52321f394aabc9a69036 [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;
827 if (x->replay_esn) {
828 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
829 xfrm_replay_state_esn_len(x->replay_esn),
830 x->replay_esn);
831 if (ret)
832 goto out;
833 }
834 if (x->security)
835 ret = copy_sec_ctx(x->security, skb);
836out:
837 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700838}
839
840static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
841{
842 struct xfrm_dump_info *sp = ptr;
843 struct sk_buff *in_skb = sp->in_skb;
844 struct sk_buff *skb = sp->out_skb;
845 struct xfrm_usersa_info *p;
846 struct nlmsghdr *nlh;
847 int err;
848
Eric W. Biederman15e47302012-09-07 20:12:54 +0000849 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700850 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
851 if (nlh == NULL)
852 return -EMSGSIZE;
853
854 p = nlmsg_data(nlh);
855
856 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700857 if (err) {
858 nlmsg_cancel(skb, nlh);
859 return err;
860 }
Thomas Graf98250692007-08-22 12:47:26 -0700861 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
Timo Teras4c563f72008-02-28 21:31:08 -0800865static int xfrm_dump_sa_done(struct netlink_callback *cb)
866{
867 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800868 struct sock *sk = cb->skb->sk;
869 struct net *net = sock_net(sk);
870
871 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800872 return 0;
873}
874
Nicolas Dichteld3623092014-02-14 15:30:36 +0100875static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
877{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800878 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800879 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct xfrm_dump_info info;
881
Timo Teras4c563f72008-02-28 21:31:08 -0800882 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
883 sizeof(cb->args) - sizeof(cb->args[0]));
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 info.in_skb = cb->skb;
886 info.out_skb = skb;
887 info.nlmsg_seq = cb->nlh->nlmsg_seq;
888 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800889
890 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100891 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100892 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100893 u8 proto = 0;
894 int err;
895
Timo Teras4c563f72008-02-28 21:31:08 -0800896 cb->args[0] = 1;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100897
898 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
899 xfrma_policy);
900 if (err < 0)
901 return err;
902
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100903 if (attrs[XFRMA_ADDRESS_FILTER]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100904 filter = kmalloc(sizeof(*filter), GFP_KERNEL);
905 if (filter == NULL)
906 return -ENOMEM;
907
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100908 memcpy(filter, nla_data(attrs[XFRMA_ADDRESS_FILTER]),
Nicolas Dichteld3623092014-02-14 15:30:36 +0100909 sizeof(*filter));
910 }
911
912 if (attrs[XFRMA_PROTO])
913 proto = nla_get_u8(attrs[XFRMA_PROTO]);
914
915 xfrm_state_walk_init(walk, proto, filter);
Timo Teras4c563f72008-02-28 21:31:08 -0800916 }
917
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800918 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 return skb->len;
921}
922
923static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
924 struct xfrm_state *x, u32 seq)
925{
926 struct xfrm_dump_info info;
927 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000928 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Thomas Graf7deb2262007-08-22 13:57:39 -0700930 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (!skb)
932 return ERR_PTR(-ENOMEM);
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 info.in_skb = in_skb;
935 info.out_skb = skb;
936 info.nlmsg_seq = seq;
937 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Mathias Krause864745d2012-09-13 11:41:26 +0000939 err = dump_one_state(x, 0, &info);
940 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000942 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944
945 return skb;
946}
947
Michal Kubecek21ee5432014-06-03 10:26:06 +0200948/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
949 * Must be called with RCU read lock.
950 */
951static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
952 u32 pid, unsigned int group)
953{
954 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
955
956 if (nlsk)
957 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
958 else
959 return -1;
960}
961
Thomas Graf7deb2262007-08-22 13:57:39 -0700962static inline size_t xfrm_spdinfo_msgsize(void)
963{
964 return NLMSG_ALIGN(4)
965 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200966 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
967 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
968 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -0700969}
970
Alexey Dobriyane0710412010-01-23 13:37:10 +0000971static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000972 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700973{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700974 struct xfrmk_spdinfo si;
975 struct xfrmu_spdinfo spc;
976 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200977 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700978 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700979 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700980 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200981 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700982
Eric W. Biederman15e47302012-09-07 20:12:54 +0000983 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300984 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700985 return -EMSGSIZE;
986
987 f = nlmsg_data(nlh);
988 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000989 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700990 spc.incnt = si.incnt;
991 spc.outcnt = si.outcnt;
992 spc.fwdcnt = si.fwdcnt;
993 spc.inscnt = si.inscnt;
994 spc.outscnt = si.outscnt;
995 spc.fwdscnt = si.fwdscnt;
996 sph.spdhcnt = si.spdhcnt;
997 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700998
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200999 do {
1000 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1001
1002 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1003 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1004 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1005 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1006 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1007
David S. Miller1d1e34d2012-06-27 21:57:03 -07001008 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1009 if (!err)
1010 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001011 if (!err)
1012 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1013 if (!err)
1014 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001015 if (err) {
1016 nlmsg_cancel(skb, nlh);
1017 return err;
1018 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001019
1020 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001021}
1022
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001023static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1024 struct nlattr **attrs)
1025{
1026 struct net *net = sock_net(skb->sk);
1027 struct xfrmu_spdhthresh *thresh4 = NULL;
1028 struct xfrmu_spdhthresh *thresh6 = NULL;
1029
1030 /* selector prefixlen thresholds to hash policies */
1031 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1032 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1033
1034 if (nla_len(rta) < sizeof(*thresh4))
1035 return -EINVAL;
1036 thresh4 = nla_data(rta);
1037 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1038 return -EINVAL;
1039 }
1040 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1041 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1042
1043 if (nla_len(rta) < sizeof(*thresh6))
1044 return -EINVAL;
1045 thresh6 = nla_data(rta);
1046 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1047 return -EINVAL;
1048 }
1049
1050 if (thresh4 || thresh6) {
1051 write_seqlock(&net->xfrm.policy_hthresh.lock);
1052 if (thresh4) {
1053 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1054 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1055 }
1056 if (thresh6) {
1057 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1058 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1059 }
1060 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1061
1062 xfrm_policy_hash_rebuild(net);
1063 }
1064
1065 return 0;
1066}
1067
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001068static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001069 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001070{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001071 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001072 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001073 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001074 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001075 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001076
Thomas Graf7deb2262007-08-22 13:57:39 -07001077 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001078 if (r_skb == NULL)
1079 return -ENOMEM;
1080
Eric W. Biederman15e47302012-09-07 20:12:54 +00001081 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001082 BUG();
1083
Eric W. Biederman15e47302012-09-07 20:12:54 +00001084 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001085}
1086
Thomas Graf7deb2262007-08-22 13:57:39 -07001087static inline size_t xfrm_sadinfo_msgsize(void)
1088{
1089 return NLMSG_ALIGN(4)
1090 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1091 + nla_total_size(4); /* XFRMA_SAD_CNT */
1092}
1093
Alexey Dobriyane0710412010-01-23 13:37:10 +00001094static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001095 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001096{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001097 struct xfrmk_sadinfo si;
1098 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001099 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001100 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001101 u32 *f;
1102
Eric W. Biederman15e47302012-09-07 20:12:54 +00001103 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001104 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001105 return -EMSGSIZE;
1106
1107 f = nlmsg_data(nlh);
1108 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001109 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001110
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001111 sh.sadhmcnt = si.sadhmcnt;
1112 sh.sadhcnt = si.sadhcnt;
1113
David S. Miller1d1e34d2012-06-27 21:57:03 -07001114 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1115 if (!err)
1116 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1117 if (err) {
1118 nlmsg_cancel(skb, nlh);
1119 return err;
1120 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001121
1122 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001123}
1124
1125static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001126 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001127{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001128 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001129 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001130 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001131 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001132 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001133
Thomas Graf7deb2262007-08-22 13:57:39 -07001134 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001135 if (r_skb == NULL)
1136 return -ENOMEM;
1137
Eric W. Biederman15e47302012-09-07 20:12:54 +00001138 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001139 BUG();
1140
Eric W. Biederman15e47302012-09-07 20:12:54 +00001141 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001142}
1143
Christoph Hellwig22e70052007-01-02 15:22:30 -08001144static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001145 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001147 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001148 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 struct xfrm_state *x;
1150 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001151 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001153 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (x == NULL)
1155 goto out_noput;
1156
1157 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1158 if (IS_ERR(resp_skb)) {
1159 err = PTR_ERR(resp_skb);
1160 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001161 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163 xfrm_state_put(x);
1164out_noput:
1165 return err;
1166}
1167
Christoph Hellwig22e70052007-01-02 15:22:30 -08001168static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001169 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001171 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 struct xfrm_state *x;
1173 struct xfrm_userspi_info *p;
1174 struct sk_buff *resp_skb;
1175 xfrm_address_t *daddr;
1176 int family;
1177 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001178 u32 mark;
1179 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Thomas Graf7b67c852007-08-22 13:53:52 -07001181 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001182 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (err)
1184 goto out_noput;
1185
1186 family = p->info.family;
1187 daddr = &p->info.id.daddr;
1188
1189 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001190
1191 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001193 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001194 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 xfrm_state_put(x);
1196 x = NULL;
1197 }
1198 }
1199
1200 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001201 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 p->info.id.proto, daddr,
1203 &p->info.saddr, 1,
1204 family);
1205 err = -ENOENT;
1206 if (x == NULL)
1207 goto out_noput;
1208
Herbert Xu658b2192007-10-09 13:29:52 -07001209 err = xfrm_alloc_spi(x, p->min, p->max);
1210 if (err)
1211 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Herbert Xu658b2192007-10-09 13:29:52 -07001213 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (IS_ERR(resp_skb)) {
1215 err = PTR_ERR(resp_skb);
1216 goto out;
1217 }
1218
Eric W. Biederman15e47302012-09-07 20:12:54 +00001219 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221out:
1222 xfrm_state_put(x);
1223out_noput:
1224 return err;
1225}
1226
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001227static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 switch (dir) {
1230 case XFRM_POLICY_IN:
1231 case XFRM_POLICY_OUT:
1232 case XFRM_POLICY_FWD:
1233 break;
1234
1235 default:
1236 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 return 0;
1240}
1241
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001242static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001243{
1244 switch (type) {
1245 case XFRM_POLICY_TYPE_MAIN:
1246#ifdef CONFIG_XFRM_SUB_POLICY
1247 case XFRM_POLICY_TYPE_SUB:
1248#endif
1249 break;
1250
1251 default:
1252 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001253 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001254
1255 return 0;
1256}
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1259{
Fan Due682adf2013-11-07 17:47:48 +08001260 int ret;
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 switch (p->share) {
1263 case XFRM_SHARE_ANY:
1264 case XFRM_SHARE_SESSION:
1265 case XFRM_SHARE_USER:
1266 case XFRM_SHARE_UNIQUE:
1267 break;
1268
1269 default:
1270 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 switch (p->action) {
1274 case XFRM_POLICY_ALLOW:
1275 case XFRM_POLICY_BLOCK:
1276 break;
1277
1278 default:
1279 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 switch (p->sel.family) {
1283 case AF_INET:
1284 break;
1285
1286 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001287#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 break;
1289#else
1290 return -EAFNOSUPPORT;
1291#endif
1292
1293 default:
1294 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Fan Due682adf2013-11-07 17:47:48 +08001297 ret = verify_policy_dir(p->dir);
1298 if (ret)
1299 return ret;
1300 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1301 return -EINVAL;
1302
1303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Thomas Graf5424f322007-08-22 14:01:33 -07001306static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001307{
Thomas Graf5424f322007-08-22 14:01:33 -07001308 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001309 struct xfrm_user_sec_ctx *uctx;
1310
1311 if (!rt)
1312 return 0;
1313
Thomas Graf5424f322007-08-22 14:01:33 -07001314 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001315 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001316}
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1319 int nr)
1320{
1321 int i;
1322
1323 xp->xfrm_nr = nr;
1324 for (i = 0; i < nr; i++, ut++) {
1325 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1326
1327 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1328 memcpy(&t->saddr, &ut->saddr,
1329 sizeof(xfrm_address_t));
1330 t->reqid = ut->reqid;
1331 t->mode = ut->mode;
1332 t->share = ut->share;
1333 t->optional = ut->optional;
1334 t->aalgos = ut->aalgos;
1335 t->ealgos = ut->ealgos;
1336 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001337 /* If all masks are ~0, then we allow all algorithms. */
1338 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001339 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341}
1342
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001343static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1344{
1345 int i;
1346
1347 if (nr > XFRM_MAX_DEPTH)
1348 return -EINVAL;
1349
1350 for (i = 0; i < nr; i++) {
1351 /* We never validated the ut->family value, so many
1352 * applications simply leave it at zero. The check was
1353 * never made and ut->family was ignored because all
1354 * templates could be assumed to have the same family as
1355 * the policy itself. Now that we will have ipv4-in-ipv6
1356 * and ipv6-in-ipv4 tunnels, this is no longer true.
1357 */
1358 if (!ut[i].family)
1359 ut[i].family = family;
1360
1361 switch (ut[i].family) {
1362 case AF_INET:
1363 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001364#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001365 case AF_INET6:
1366 break;
1367#endif
1368 default:
1369 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001370 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001371 }
1372
1373 return 0;
1374}
1375
Thomas Graf5424f322007-08-22 14:01:33 -07001376static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Thomas Graf5424f322007-08-22 14:01:33 -07001378 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 if (!rt) {
1381 pol->xfrm_nr = 0;
1382 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001383 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1384 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001385 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001387 err = validate_tmpl(nr, utmpl, pol->family);
1388 if (err)
1389 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Thomas Graf5424f322007-08-22 14:01:33 -07001391 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393 return 0;
1394}
1395
Thomas Graf5424f322007-08-22 14:01:33 -07001396static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001397{
Thomas Graf5424f322007-08-22 14:01:33 -07001398 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001399 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001400 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001401 int err;
1402
1403 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001404 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001405 type = upt->type;
1406 }
1407
1408 err = verify_policy_type(type);
1409 if (err)
1410 return err;
1411
1412 *tp = type;
1413 return 0;
1414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1417{
1418 xp->priority = p->priority;
1419 xp->index = p->index;
1420 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1421 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1422 xp->action = p->action;
1423 xp->flags = p->flags;
1424 xp->family = p->sel.family;
1425 /* XXX xp->share = p->share; */
1426}
1427
1428static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1429{
Mathias Krause7b789832012-09-19 11:33:40 +00001430 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1432 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1433 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1434 p->priority = xp->priority;
1435 p->index = xp->index;
1436 p->sel.family = xp->family;
1437 p->dir = dir;
1438 p->action = xp->action;
1439 p->flags = xp->flags;
1440 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1441}
1442
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001443static 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 -07001444{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001445 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 int err;
1447
1448 if (!xp) {
1449 *errp = -ENOMEM;
1450 return NULL;
1451 }
1452
1453 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001454
Thomas Graf35a7aa02007-08-22 14:00:40 -07001455 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001456 if (err)
1457 goto error;
1458
Thomas Graf35a7aa02007-08-22 14:00:40 -07001459 if (!(err = copy_from_user_tmpl(xp, attrs)))
1460 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001461 if (err)
1462 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001464 xfrm_mark_get(attrs, &xp->mark);
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001467 error:
1468 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001469 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001470 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Christoph Hellwig22e70052007-01-02 15:22:30 -08001474static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001475 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001477 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001478 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001480 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 int err;
1482 int excl;
1483
1484 err = verify_newpolicy_info(p);
1485 if (err)
1486 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001487 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001488 if (err)
1489 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001491 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (!xp)
1493 return err;
1494
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001495 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001496 * Aha! this is anti-netlink really i.e more pfkey derived
1497 * in netlink excl is a flag and you wouldnt need
1498 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1500 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001501 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001504 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 kfree(xp);
1506 return err;
1507 }
1508
Herbert Xuf60f6b82005-06-18 22:44:37 -07001509 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001510 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001511 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001512 km_policy_notify(xp, p->dir, &c);
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 xfrm_pol_put(xp);
1515
1516 return 0;
1517}
1518
1519static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1520{
1521 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1522 int i;
1523
1524 if (xp->xfrm_nr == 0)
1525 return 0;
1526
1527 for (i = 0; i < xp->xfrm_nr; i++) {
1528 struct xfrm_user_tmpl *up = &vec[i];
1529 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1530
Mathias Krause1f868402012-09-19 11:33:41 +00001531 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001533 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1535 up->reqid = kp->reqid;
1536 up->mode = kp->mode;
1537 up->share = kp->share;
1538 up->optional = kp->optional;
1539 up->aalgos = kp->aalgos;
1540 up->ealgos = kp->ealgos;
1541 up->calgos = kp->calgos;
1542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Thomas Grafc0144be2007-08-22 13:55:43 -07001544 return nla_put(skb, XFRMA_TMPL,
1545 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001546}
1547
Serge Hallyn0d681622006-07-24 23:30:44 -07001548static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1549{
1550 if (x->security) {
1551 return copy_sec_ctx(x->security, skb);
1552 }
1553 return 0;
1554}
1555
1556static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1557{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001558 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001559 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001560 return 0;
1561}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001562static inline size_t userpolicy_type_attrsize(void)
1563{
1564#ifdef CONFIG_XFRM_SUB_POLICY
1565 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1566#else
1567 return 0;
1568#endif
1569}
Serge Hallyn0d681622006-07-24 23:30:44 -07001570
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001571#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001572static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001573{
Thomas Grafc0144be2007-08-22 13:55:43 -07001574 struct xfrm_userpolicy_type upt = {
1575 .type = type,
1576 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001577
Thomas Grafc0144be2007-08-22 13:55:43 -07001578 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001579}
1580
1581#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001582static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001583{
1584 return 0;
1585}
1586#endif
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1589{
1590 struct xfrm_dump_info *sp = ptr;
1591 struct xfrm_userpolicy_info *p;
1592 struct sk_buff *in_skb = sp->in_skb;
1593 struct sk_buff *skb = sp->out_skb;
1594 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001595 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Eric W. Biederman15e47302012-09-07 20:12:54 +00001597 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001598 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1599 if (nlh == NULL)
1600 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Thomas Graf7b67c852007-08-22 13:53:52 -07001602 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001604 err = copy_to_user_tmpl(xp, skb);
1605 if (!err)
1606 err = copy_to_user_sec_ctx(xp, skb);
1607 if (!err)
1608 err = copy_to_user_policy_type(xp->type, skb);
1609 if (!err)
1610 err = xfrm_mark_put(skb, &xp->mark);
1611 if (err) {
1612 nlmsg_cancel(skb, nlh);
1613 return err;
1614 }
Thomas Graf98250692007-08-22 12:47:26 -07001615 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Timo Teras4c563f72008-02-28 21:31:08 -08001619static int xfrm_dump_policy_done(struct netlink_callback *cb)
1620{
1621 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001622 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001623
Fan Du283bc9f2013-11-07 17:47:50 +08001624 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001625 return 0;
1626}
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1629{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001630 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001631 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 struct xfrm_dump_info info;
1633
Timo Teras4c563f72008-02-28 21:31:08 -08001634 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1635 sizeof(cb->args) - sizeof(cb->args[0]));
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 info.in_skb = cb->skb;
1638 info.out_skb = skb;
1639 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1640 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001641
1642 if (!cb->args[0]) {
1643 cb->args[0] = 1;
1644 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1645 }
1646
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001647 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 return skb->len;
1650}
1651
1652static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1653 struct xfrm_policy *xp,
1654 int dir, u32 seq)
1655{
1656 struct xfrm_dump_info info;
1657 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001658 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Thomas Graf7deb2262007-08-22 13:57:39 -07001660 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (!skb)
1662 return ERR_PTR(-ENOMEM);
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 info.in_skb = in_skb;
1665 info.out_skb = skb;
1666 info.nlmsg_seq = seq;
1667 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Mathias Krausec2546372012-09-14 09:58:32 +00001669 err = dump_one_policy(xp, dir, 0, &info);
1670 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001672 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674
1675 return skb;
1676}
1677
Christoph Hellwig22e70052007-01-02 15:22:30 -08001678static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001679 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001681 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 struct xfrm_policy *xp;
1683 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001684 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001686 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001688 struct xfrm_mark m;
1689 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Thomas Graf7b67c852007-08-22 13:53:52 -07001691 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1693
Thomas Graf35a7aa02007-08-22 14:00:40 -07001694 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001695 if (err)
1696 return err;
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 err = verify_policy_dir(p->dir);
1699 if (err)
1700 return err;
1701
1702 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001703 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001704 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001705 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001706 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001707
Thomas Graf35a7aa02007-08-22 14:00:40 -07001708 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001709 if (err)
1710 return err;
1711
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001712 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001713 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001714 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001715
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001716 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001717 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001718 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001719 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001720 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001721 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001722 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (xp == NULL)
1725 return -ENOENT;
1726
1727 if (!delete) {
1728 struct sk_buff *resp_skb;
1729
1730 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1731 if (IS_ERR(resp_skb)) {
1732 err = PTR_ERR(resp_skb);
1733 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001734 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001735 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001737 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001738 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001739
1740 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001741 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001742
Herbert Xue7443892005-06-18 22:44:18 -07001743 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001744 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001745 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001746 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001747 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
1749
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001750out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001751 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001752 if (delete && err == 0)
1753 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return err;
1755}
1756
Christoph Hellwig22e70052007-01-02 15:22:30 -08001757static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001758 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001760 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001761 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001762 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001763 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Tetsuo Handa2e710292014-04-22 21:48:30 +09001765 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001766 if (err) {
1767 if (err == -ESRCH) /* empty table */
1768 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001769 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001770 }
Herbert Xubf088672005-06-18 22:44:00 -07001771 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001772 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001773 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001774 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001775 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001776 km_state_notify(NULL, &c);
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 return 0;
1779}
1780
Steffen Klassertd8647b72011-03-08 00:10:27 +00001781static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001782{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001783 size_t replay_size = x->replay_esn ?
1784 xfrm_replay_state_esn_len(x->replay_esn) :
1785 sizeof(struct xfrm_replay_state);
1786
Thomas Graf7deb2262007-08-22 13:57:39 -07001787 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001788 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001789 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001790 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001791 + nla_total_size(4) /* XFRM_AE_RTHR */
1792 + nla_total_size(4); /* XFRM_AE_ETHR */
1793}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001794
David S. Miller214e0052011-02-24 00:02:38 -05001795static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001796{
1797 struct xfrm_aevent_id *id;
1798 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001799 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001800
Eric W. Biederman15e47302012-09-07 20:12:54 +00001801 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001802 if (nlh == NULL)
1803 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001804
Thomas Graf7b67c852007-08-22 13:53:52 -07001805 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001806 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001807 id->sa_id.spi = x->id.spi;
1808 id->sa_id.family = x->props.family;
1809 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001810 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001811 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001812 id->flags = c->data.aevent;
1813
David S. Millerd0fde792012-03-29 04:02:26 -04001814 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001815 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1816 xfrm_replay_state_esn_len(x->replay_esn),
1817 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001818 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001819 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1820 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001821 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001822 if (err)
1823 goto out_cancel;
1824 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1825 if (err)
1826 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001827
David S. Miller1d1e34d2012-06-27 21:57:03 -07001828 if (id->flags & XFRM_AE_RTHR) {
1829 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1830 if (err)
1831 goto out_cancel;
1832 }
1833 if (id->flags & XFRM_AE_ETHR) {
1834 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1835 x->replay_maxage * 10 / HZ);
1836 if (err)
1837 goto out_cancel;
1838 }
1839 err = xfrm_mark_put(skb, &x->mark);
1840 if (err)
1841 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001842
Thomas Graf98250692007-08-22 12:47:26 -07001843 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001844
David S. Miller1d1e34d2012-06-27 21:57:03 -07001845out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001846 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001847 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001848}
1849
Christoph Hellwig22e70052007-01-02 15:22:30 -08001850static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001851 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001852{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001853 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001854 struct xfrm_state *x;
1855 struct sk_buff *r_skb;
1856 int err;
1857 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001858 u32 mark;
1859 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001860 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001861 struct xfrm_usersa_id *id = &p->sa_id;
1862
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001863 mark = xfrm_mark_get(attrs, &m);
1864
1865 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001866 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001867 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001868
1869 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1870 if (r_skb == NULL) {
1871 xfrm_state_put(x);
1872 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001873 }
1874
1875 /*
1876 * XXX: is this lock really needed - none of the other
1877 * gets lock (the concern is things getting updated
1878 * while we are still reading) - jhs
1879 */
1880 spin_lock_bh(&x->lock);
1881 c.data.aevent = p->flags;
1882 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001883 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001884
1885 if (build_aevent(r_skb, x, &c) < 0)
1886 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001887 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001888 spin_unlock_bh(&x->lock);
1889 xfrm_state_put(x);
1890 return err;
1891}
1892
Christoph Hellwig22e70052007-01-02 15:22:30 -08001893static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001894 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001895{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001896 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001897 struct xfrm_state *x;
1898 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001899 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001900 u32 mark = 0;
1901 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001902 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001903 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001904 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001905 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001906
Steffen Klassertd8647b72011-03-08 00:10:27 +00001907 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001908 return err;
1909
1910 /* pedantic mode - thou shalt sayeth replaceth */
1911 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1912 return err;
1913
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001914 mark = xfrm_mark_get(attrs, &m);
1915
1916 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 -08001917 if (x == NULL)
1918 return -ESRCH;
1919
1920 if (x->km.state != XFRM_STATE_VALID)
1921 goto out;
1922
Steffen Klassert4479ff72013-09-09 09:39:01 +02001923 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001924 if (err)
1925 goto out;
1926
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001927 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001928 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001929 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001930
1931 c.event = nlh->nlmsg_type;
1932 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001933 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001934 c.data.aevent = XFRM_AE_CU;
1935 km_state_notify(x, &c);
1936 err = 0;
1937out:
1938 xfrm_state_put(x);
1939 return err;
1940}
1941
Christoph Hellwig22e70052007-01-02 15:22:30 -08001942static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001943 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001945 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001946 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001947 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001948 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001949
Thomas Graf35a7aa02007-08-22 14:00:40 -07001950 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001951 if (err)
1952 return err;
1953
Tetsuo Handa2e710292014-04-22 21:48:30 +09001954 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001955 if (err) {
1956 if (err == -ESRCH) /* empty table */
1957 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001958 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001959 }
1960
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001961 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001962 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001963 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001964 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001965 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001966 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 0;
1968}
1969
Christoph Hellwig22e70052007-01-02 15:22:30 -08001970static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001971 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001972{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001973 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001974 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001975 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001976 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001977 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001978 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001979 struct xfrm_mark m;
1980 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001981
Thomas Graf35a7aa02007-08-22 14:00:40 -07001982 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001983 if (err)
1984 return err;
1985
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001986 err = verify_policy_dir(p->dir);
1987 if (err)
1988 return err;
1989
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001990 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001991 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001992 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001993 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001994 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001995
Thomas Graf35a7aa02007-08-22 14:00:40 -07001996 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001997 if (err)
1998 return err;
1999
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002000 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002001 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002002 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002003
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002004 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002005 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002006 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002007 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002008 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002009 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002010 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002011 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002012 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002013 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002014
Timo Teräsea2dea92010-03-31 00:17:05 +00002015 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002016 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002017
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002018 err = 0;
2019 if (up->hard) {
2020 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002021 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002022 } else {
2023 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00002024 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002025 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002026 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002027
2028out:
2029 xfrm_pol_put(xp);
2030 return err;
2031}
2032
Christoph Hellwig22e70052007-01-02 15:22:30 -08002033static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002034 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002035{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002036 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002037 struct xfrm_state *x;
2038 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002039 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002040 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002041 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002042 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002043
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002044 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 -08002045
David S. Miller3a765aa2007-02-26 14:52:21 -08002046 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002047 if (x == NULL)
2048 return err;
2049
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002050 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002051 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002052 if (x->km.state != XFRM_STATE_VALID)
2053 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002054 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002055
Joy Latten161a09e2006-11-27 13:11:54 -06002056 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002057 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002058 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002059 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002060 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002061out:
2062 spin_unlock_bh(&x->lock);
2063 xfrm_state_put(x);
2064 return err;
2065}
2066
Christoph Hellwig22e70052007-01-02 15:22:30 -08002067static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002068 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002069{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002070 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002071 struct xfrm_policy *xp;
2072 struct xfrm_user_tmpl *ut;
2073 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002074 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002075 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002076
Thomas Graf7b67c852007-08-22 13:53:52 -07002077 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002078 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002079 int err = -ENOMEM;
2080
2081 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002082 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002083
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002084 xfrm_mark_get(attrs, &mark);
2085
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002086 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002087 if (err)
2088 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002089
2090 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002091 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002092 if (!xp)
2093 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002094
2095 memcpy(&x->id, &ua->id, sizeof(ua->id));
2096 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2097 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002098 xp->mark.m = x->mark.m = mark.m;
2099 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002100 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002101 /* extract the templates and for each call km_key */
2102 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2103 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2104 memcpy(&x->id, &t->id, sizeof(x->id));
2105 x->props.mode = t->mode;
2106 x->props.reqid = t->reqid;
2107 x->props.family = ut->family;
2108 t->aalgos = ua->aalgos;
2109 t->ealgos = ua->ealgos;
2110 t->calgos = ua->calgos;
2111 err = km_query(x, t, xp);
2112
2113 }
2114
2115 kfree(x);
2116 kfree(xp);
2117
2118 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002119
2120bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002121 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002122free_state:
2123 kfree(x);
2124nomem:
2125 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002126}
2127
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002128#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002129static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002130 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002131 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002132{
Thomas Graf5424f322007-08-22 14:01:33 -07002133 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002134 struct xfrm_user_migrate *um;
2135 int i, num_migrate;
2136
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002137 if (k != NULL) {
2138 struct xfrm_user_kmaddress *uk;
2139
2140 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2141 memcpy(&k->local, &uk->local, sizeof(k->local));
2142 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2143 k->family = uk->family;
2144 k->reserved = uk->reserved;
2145 }
2146
Thomas Graf5424f322007-08-22 14:01:33 -07002147 um = nla_data(rt);
2148 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002149
2150 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2151 return -EINVAL;
2152
2153 for (i = 0; i < num_migrate; i++, um++, ma++) {
2154 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2155 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2156 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2157 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2158
2159 ma->proto = um->proto;
2160 ma->mode = um->mode;
2161 ma->reqid = um->reqid;
2162
2163 ma->old_family = um->old_family;
2164 ma->new_family = um->new_family;
2165 }
2166
2167 *num = i;
2168 return 0;
2169}
2170
2171static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002172 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002173{
Thomas Graf7b67c852007-08-22 13:53:52 -07002174 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002175 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002176 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002177 u8 type;
2178 int err;
2179 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002180 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002181
Thomas Graf35a7aa02007-08-22 14:00:40 -07002182 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002183 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002184
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002185 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2186
Thomas Graf5424f322007-08-22 14:01:33 -07002187 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002188 if (err)
2189 return err;
2190
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002191 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002192 if (err)
2193 return err;
2194
2195 if (!n)
2196 return 0;
2197
Fan Du8d549c42013-11-07 17:47:49 +08002198 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002199
2200 return 0;
2201}
2202#else
2203static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002204 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002205{
2206 return -ENOPROTOOPT;
2207}
2208#endif
2209
2210#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002211static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002212{
2213 struct xfrm_user_migrate um;
2214
2215 memset(&um, 0, sizeof(um));
2216 um.proto = m->proto;
2217 um.mode = m->mode;
2218 um.reqid = m->reqid;
2219 um.old_family = m->old_family;
2220 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2221 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2222 um.new_family = m->new_family;
2223 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2224 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2225
Thomas Grafc0144be2007-08-22 13:55:43 -07002226 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002227}
2228
David S. Miller183cad12011-02-24 00:28:01 -05002229static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002230{
2231 struct xfrm_user_kmaddress uk;
2232
2233 memset(&uk, 0, sizeof(uk));
2234 uk.family = k->family;
2235 uk.reserved = k->reserved;
2236 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002237 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002238
2239 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2240}
2241
2242static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002243{
2244 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002245 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2246 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2247 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002248}
2249
David S. Miller183cad12011-02-24 00:28:01 -05002250static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2251 int num_migrate, const struct xfrm_kmaddress *k,
2252 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002253{
David S. Miller183cad12011-02-24 00:28:01 -05002254 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002255 struct xfrm_userpolicy_id *pol_id;
2256 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002257 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002258
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002259 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2260 if (nlh == NULL)
2261 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002262
Thomas Graf7b67c852007-08-22 13:53:52 -07002263 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002264 /* copy data from selector, dir, and type to the pol_id */
2265 memset(pol_id, 0, sizeof(*pol_id));
2266 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2267 pol_id->dir = dir;
2268
David S. Miller1d1e34d2012-06-27 21:57:03 -07002269 if (k != NULL) {
2270 err = copy_to_user_kmaddress(k, skb);
2271 if (err)
2272 goto out_cancel;
2273 }
2274 err = copy_to_user_policy_type(type, skb);
2275 if (err)
2276 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002277 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002278 err = copy_to_user_migrate(mp, skb);
2279 if (err)
2280 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002281 }
2282
Thomas Graf98250692007-08-22 12:47:26 -07002283 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002284
2285out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002286 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002287 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002288}
2289
David S. Miller183cad12011-02-24 00:28:01 -05002290static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2291 const struct xfrm_migrate *m, int num_migrate,
2292 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002293{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002294 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002295 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002296
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002297 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002298 if (skb == NULL)
2299 return -ENOMEM;
2300
2301 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002302 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002303 BUG();
2304
Michal Kubecek21ee5432014-06-03 10:26:06 +02002305 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002306}
2307#else
David S. Miller183cad12011-02-24 00:28:01 -05002308static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2309 const struct xfrm_migrate *m, int num_migrate,
2310 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002311{
2312 return -ENOPROTOOPT;
2313}
2314#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002315
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002316#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002317
2318static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002319 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002320 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2321 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2322 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2323 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2324 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2325 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002326 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002327 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002328 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002329 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002330 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002331 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002332 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002333 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2334 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002335 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002336 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002337 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002338 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002339 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340};
2341
Thomas Graf492b5582005-05-03 14:26:40 -07002342#undef XMSGSIZE
2343
Thomas Grafcf5cb792007-08-22 13:59:04 -07002344static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002345 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2346 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2347 [XFRMA_LASTUSED] = { .type = NLA_U64},
2348 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002349 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002350 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2351 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2352 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2353 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2354 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2355 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2356 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2357 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2358 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2359 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2360 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2361 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2362 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2363 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002364 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002365 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002366 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002367 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002368 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002369 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002370 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002371};
2372
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002373static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2374 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2375 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2376};
2377
Mathias Krause05600a72013-02-24 14:10:27 +01002378static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002379 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002381 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002382 const struct nla_policy *nla_pol;
2383 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002384} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2385 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2386 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2387 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002388 .dump = xfrm_dump_sa,
2389 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002390 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2391 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2392 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002393 .dump = xfrm_dump_policy,
2394 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002395 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002396 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002397 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002398 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2399 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002400 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002401 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2402 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002403 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2404 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002405 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002406 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002407 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2408 .nla_pol = xfrma_spd_policy,
2409 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002410 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411};
2412
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002413static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002415 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002416 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002417 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002418 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002422 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 type -= XFRM_MSG_BASE;
2425 link = &xfrm_dispatch[type];
2426
2427 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002428 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002429 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Thomas Graf492b5582005-05-03 14:26:40 -07002431 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2432 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002433 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002435 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002437 {
2438 struct netlink_dump_control c = {
2439 .dump = link->dump,
2440 .done = link->done,
2441 };
2442 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 }
2445
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002446 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2447 link->nla_max ? : XFRMA_MAX,
2448 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002449 if (err < 0)
2450 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002453 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Thomas Graf5424f322007-08-22 14:01:33 -07002455 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
2457
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002458static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
Fan Du283bc9f2013-11-07 17:47:50 +08002460 struct net *net = sock_net(skb->sk);
2461
2462 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002463 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002464 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
Thomas Graf7deb2262007-08-22 13:57:39 -07002467static inline size_t xfrm_expire_msgsize(void)
2468{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002469 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2470 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002471}
2472
David S. Miller214e0052011-02-24 00:02:38 -05002473static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
2475 struct xfrm_user_expire *ue;
2476 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002477 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Eric W. Biederman15e47302012-09-07 20:12:54 +00002479 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002480 if (nlh == NULL)
2481 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Thomas Graf7b67c852007-08-22 13:53:52 -07002483 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002485 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
David S. Miller1d1e34d2012-06-27 21:57:03 -07002487 err = xfrm_mark_put(skb, &x->mark);
2488 if (err)
2489 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002490
Thomas Graf98250692007-08-22 12:47:26 -07002491 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
David S. Miller214e0052011-02-24 00:02:38 -05002494static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002496 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 struct sk_buff *skb;
2498
Thomas Graf7deb2262007-08-22 13:57:39 -07002499 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 if (skb == NULL)
2501 return -ENOMEM;
2502
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002503 if (build_expire(skb, x, c) < 0) {
2504 kfree_skb(skb);
2505 return -EMSGSIZE;
2506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Michal Kubecek21ee5432014-06-03 10:26:06 +02002508 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
2510
David S. Miller214e0052011-02-24 00:02:38 -05002511static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002512{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002513 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002514 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002515
Steffen Klassertd8647b72011-03-08 00:10:27 +00002516 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002517 if (skb == NULL)
2518 return -ENOMEM;
2519
2520 if (build_aevent(skb, x, c) < 0)
2521 BUG();
2522
Michal Kubecek21ee5432014-06-03 10:26:06 +02002523 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002524}
2525
David S. Miller214e0052011-02-24 00:02:38 -05002526static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002527{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002528 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002529 struct xfrm_usersa_flush *p;
2530 struct nlmsghdr *nlh;
2531 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002532 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002533
Thomas Graf7deb2262007-08-22 13:57:39 -07002534 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002535 if (skb == NULL)
2536 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002537
Eric W. Biederman15e47302012-09-07 20:12:54 +00002538 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002539 if (nlh == NULL) {
2540 kfree_skb(skb);
2541 return -EMSGSIZE;
2542 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002543
Thomas Graf7b67c852007-08-22 13:53:52 -07002544 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002545 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002546
Thomas Graf98250692007-08-22 12:47:26 -07002547 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002548
Michal Kubecek21ee5432014-06-03 10:26:06 +02002549 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002550}
2551
Thomas Graf7deb2262007-08-22 13:57:39 -07002552static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002553{
Thomas Graf7deb2262007-08-22 13:57:39 -07002554 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002555 if (x->aead)
2556 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002557 if (x->aalg) {
2558 l += nla_total_size(sizeof(struct xfrm_algo) +
2559 (x->aalg->alg_key_len + 7) / 8);
2560 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2561 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002562 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002563 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002564 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002565 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002566 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002567 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002568 if (x->tfcpad)
2569 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002570 if (x->replay_esn)
2571 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002572 if (x->security)
2573 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2574 x->security->ctx_len);
2575 if (x->coaddr)
2576 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002577 if (x->props.extra_flags)
2578 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002579
Herbert Xud26f3982007-11-13 21:47:08 -08002580 /* Must count x->lastused as it may become non-zero behind our back. */
2581 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002582
2583 return l;
2584}
2585
David S. Miller214e0052011-02-24 00:02:38 -05002586static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002587{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002588 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002589 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002590 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002591 struct nlmsghdr *nlh;
2592 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002593 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002594 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002595
2596 headlen = sizeof(*p);
2597 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002598 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002599 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002600 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002601 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002602 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002603
Thomas Graf7deb2262007-08-22 13:57:39 -07002604 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002605 if (skb == NULL)
2606 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002607
Eric W. Biederman15e47302012-09-07 20:12:54 +00002608 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002609 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002610 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002611 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002612
Thomas Graf7b67c852007-08-22 13:53:52 -07002613 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002614 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002615 struct nlattr *attr;
2616
Thomas Graf7b67c852007-08-22 13:53:52 -07002617 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002618 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2619 id->spi = x->id.spi;
2620 id->family = x->props.family;
2621 id->proto = x->id.proto;
2622
Thomas Grafc0144be2007-08-22 13:55:43 -07002623 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002624 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002625 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002626 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002627
2628 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002629 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002630 err = copy_to_user_state_extra(x, p, skb);
2631 if (err)
2632 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002633
Thomas Graf98250692007-08-22 12:47:26 -07002634 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002635
Michal Kubecek21ee5432014-06-03 10:26:06 +02002636 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002637
David S. Miller1d1e34d2012-06-27 21:57:03 -07002638out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002639 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002640 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002641}
2642
David S. Miller214e0052011-02-24 00:02:38 -05002643static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002644{
2645
2646 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002647 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002648 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002649 case XFRM_MSG_NEWAE:
2650 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002651 case XFRM_MSG_DELSA:
2652 case XFRM_MSG_UPDSA:
2653 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002654 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002655 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002656 return xfrm_notify_sa_flush(c);
2657 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002658 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2659 c->event);
2660 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002661 }
2662
2663 return 0;
2664
2665}
2666
Thomas Graf7deb2262007-08-22 13:57:39 -07002667static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2668 struct xfrm_policy *xp)
2669{
2670 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2671 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002672 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002673 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2674 + userpolicy_type_attrsize();
2675}
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002678 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002680 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 struct xfrm_user_acquire *ua;
2682 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002683 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002685 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2686 if (nlh == NULL)
2687 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Thomas Graf7b67c852007-08-22 13:53:52 -07002689 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 memcpy(&ua->id, &x->id, sizeof(ua->id));
2691 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2692 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002693 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 ua->aalgos = xt->aalgos;
2695 ua->ealgos = xt->ealgos;
2696 ua->calgos = xt->calgos;
2697 ua->seq = x->km.seq = seq;
2698
David S. Miller1d1e34d2012-06-27 21:57:03 -07002699 err = copy_to_user_tmpl(xp, skb);
2700 if (!err)
2701 err = copy_to_user_state_sec_ctx(x, skb);
2702 if (!err)
2703 err = copy_to_user_policy_type(xp->type, skb);
2704 if (!err)
2705 err = xfrm_mark_put(skb, &xp->mark);
2706 if (err) {
2707 nlmsg_cancel(skb, nlh);
2708 return err;
2709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Thomas Graf98250692007-08-22 12:47:26 -07002711 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}
2713
2714static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002715 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002717 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Thomas Graf7deb2262007-08-22 13:57:39 -07002720 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (skb == NULL)
2722 return -ENOMEM;
2723
Fan Du65e07362012-08-15 10:13:47 +08002724 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 BUG();
2726
Michal Kubecek21ee5432014-06-03 10:26:06 +02002727 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728}
2729
2730/* User gives us xfrm_user_policy_info followed by an array of 0
2731 * or more templates.
2732 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002733static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 u8 *data, int len, int *dir)
2735{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002736 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2738 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2739 struct xfrm_policy *xp;
2740 int nr;
2741
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002742 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 case AF_INET:
2744 if (opt != IP_XFRM_POLICY) {
2745 *dir = -EOPNOTSUPP;
2746 return NULL;
2747 }
2748 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002749#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 case AF_INET6:
2751 if (opt != IPV6_XFRM_POLICY) {
2752 *dir = -EOPNOTSUPP;
2753 return NULL;
2754 }
2755 break;
2756#endif
2757 default:
2758 *dir = -EINVAL;
2759 return NULL;
2760 }
2761
2762 *dir = -EINVAL;
2763
2764 if (len < sizeof(*p) ||
2765 verify_newpolicy_info(p))
2766 return NULL;
2767
2768 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002769 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 return NULL;
2771
Herbert Xua4f1bac2005-07-26 15:43:17 -07002772 if (p->dir > XFRM_POLICY_OUT)
2773 return NULL;
2774
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002775 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 if (xp == NULL) {
2777 *dir = -ENOBUFS;
2778 return NULL;
2779 }
2780
2781 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002782 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 copy_templates(xp, ut, nr);
2784
2785 *dir = p->dir;
2786
2787 return xp;
2788}
2789
Thomas Graf7deb2262007-08-22 13:57:39 -07002790static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2791{
2792 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2793 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2794 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002795 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002796 + userpolicy_type_attrsize();
2797}
2798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002800 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
2802 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002803 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002804 struct nlmsghdr *nlh;
2805 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Eric W. Biederman15e47302012-09-07 20:12:54 +00002807 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002808 if (nlh == NULL)
2809 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Thomas Graf7b67c852007-08-22 13:53:52 -07002811 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002813 err = copy_to_user_tmpl(xp, skb);
2814 if (!err)
2815 err = copy_to_user_sec_ctx(xp, skb);
2816 if (!err)
2817 err = copy_to_user_policy_type(xp->type, skb);
2818 if (!err)
2819 err = xfrm_mark_put(skb, &xp->mark);
2820 if (err) {
2821 nlmsg_cancel(skb, nlh);
2822 return err;
2823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 upe->hard = !!hard;
2825
Thomas Graf98250692007-08-22 12:47:26 -07002826 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
David S. Miller214e0052011-02-24 00:02:38 -05002829static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002831 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Thomas Graf7deb2262007-08-22 13:57:39 -07002834 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (skb == NULL)
2836 return -ENOMEM;
2837
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002838 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 BUG();
2840
Michal Kubecek21ee5432014-06-03 10:26:06 +02002841 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842}
2843
David S. Miller214e0052011-02-24 00:02:38 -05002844static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002845{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002846 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002847 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002849 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002850 struct nlmsghdr *nlh;
2851 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002852 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002853
2854 headlen = sizeof(*p);
2855 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002856 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002857 headlen = sizeof(*id);
2858 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002859 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002860 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002861 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002862
Thomas Graf7deb2262007-08-22 13:57:39 -07002863 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002864 if (skb == NULL)
2865 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002866
Eric W. Biederman15e47302012-09-07 20:12:54 +00002867 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002868 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002869 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002870 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002871
Thomas Graf7b67c852007-08-22 13:53:52 -07002872 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002873 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002874 struct nlattr *attr;
2875
Thomas Graf7b67c852007-08-22 13:53:52 -07002876 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002877 memset(id, 0, sizeof(*id));
2878 id->dir = dir;
2879 if (c->data.byid)
2880 id->index = xp->index;
2881 else
2882 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2883
Thomas Grafc0144be2007-08-22 13:55:43 -07002884 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002885 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002886 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002887 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002888
2889 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002890 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002891
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002892 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002893 err = copy_to_user_tmpl(xp, skb);
2894 if (!err)
2895 err = copy_to_user_policy_type(xp->type, skb);
2896 if (!err)
2897 err = xfrm_mark_put(skb, &xp->mark);
2898 if (err)
2899 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002900
Thomas Graf98250692007-08-22 12:47:26 -07002901 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002902
Michal Kubecek21ee5432014-06-03 10:26:06 +02002903 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002904
David S. Miller1d1e34d2012-06-27 21:57:03 -07002905out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002906 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002907 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002908}
2909
David S. Miller214e0052011-02-24 00:02:38 -05002910static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002911{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002912 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002913 struct nlmsghdr *nlh;
2914 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002915 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002916
Thomas Graf7deb2262007-08-22 13:57:39 -07002917 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002918 if (skb == NULL)
2919 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002920
Eric W. Biederman15e47302012-09-07 20:12:54 +00002921 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002922 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002923 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002924 goto out_free_skb;
2925 err = copy_to_user_policy_type(c->data.type, skb);
2926 if (err)
2927 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002928
Thomas Graf98250692007-08-22 12:47:26 -07002929 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002930
Michal Kubecek21ee5432014-06-03 10:26:06 +02002931 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002932
David S. Miller1d1e34d2012-06-27 21:57:03 -07002933out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002934 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002935 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002936}
2937
David S. Miller214e0052011-02-24 00:02:38 -05002938static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002939{
2940
2941 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002942 case XFRM_MSG_NEWPOLICY:
2943 case XFRM_MSG_UPDPOLICY:
2944 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002945 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002946 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002948 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002949 return xfrm_exp_policy_notify(xp, dir, c);
2950 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002951 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2952 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002953 }
2954
2955 return 0;
2956
2957}
2958
Thomas Graf7deb2262007-08-22 13:57:39 -07002959static inline size_t xfrm_report_msgsize(void)
2960{
2961 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2962}
2963
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002964static int build_report(struct sk_buff *skb, u8 proto,
2965 struct xfrm_selector *sel, xfrm_address_t *addr)
2966{
2967 struct xfrm_user_report *ur;
2968 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002969
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002970 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2971 if (nlh == NULL)
2972 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002973
Thomas Graf7b67c852007-08-22 13:53:52 -07002974 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002975 ur->proto = proto;
2976 memcpy(&ur->sel, sel, sizeof(ur->sel));
2977
David S. Miller1d1e34d2012-06-27 21:57:03 -07002978 if (addr) {
2979 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2980 if (err) {
2981 nlmsg_cancel(skb, nlh);
2982 return err;
2983 }
2984 }
Thomas Graf98250692007-08-22 12:47:26 -07002985 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002986}
2987
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002988static int xfrm_send_report(struct net *net, u8 proto,
2989 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002990{
2991 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002992
Thomas Graf7deb2262007-08-22 13:57:39 -07002993 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002994 if (skb == NULL)
2995 return -ENOMEM;
2996
2997 if (build_report(skb, proto, sel, addr) < 0)
2998 BUG();
2999
Michal Kubecek21ee5432014-06-03 10:26:06 +02003000 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003001}
3002
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003003static inline size_t xfrm_mapping_msgsize(void)
3004{
3005 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3006}
3007
3008static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3009 xfrm_address_t *new_saddr, __be16 new_sport)
3010{
3011 struct xfrm_user_mapping *um;
3012 struct nlmsghdr *nlh;
3013
3014 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3015 if (nlh == NULL)
3016 return -EMSGSIZE;
3017
3018 um = nlmsg_data(nlh);
3019
3020 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3021 um->id.spi = x->id.spi;
3022 um->id.family = x->props.family;
3023 um->id.proto = x->id.proto;
3024 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3025 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3026 um->new_sport = new_sport;
3027 um->old_sport = x->encap->encap_sport;
3028 um->reqid = x->props.reqid;
3029
3030 return nlmsg_end(skb, nlh);
3031}
3032
3033static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3034 __be16 sport)
3035{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003036 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003037 struct sk_buff *skb;
3038
3039 if (x->id.proto != IPPROTO_ESP)
3040 return -EINVAL;
3041
3042 if (!x->encap)
3043 return -EINVAL;
3044
3045 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3046 if (skb == NULL)
3047 return -ENOMEM;
3048
3049 if (build_mapping(skb, x, ipaddr, sport) < 0)
3050 BUG();
3051
Michal Kubecek21ee5432014-06-03 10:26:06 +02003052 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003053}
3054
Horia Geanta0f245582014-02-12 16:20:06 +02003055static bool xfrm_is_alive(const struct km_event *c)
3056{
3057 return (bool)xfrm_acquire_is_on(c->net);
3058}
3059
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060static struct xfrm_mgr netlink_mgr = {
3061 .id = "netlink",
3062 .notify = xfrm_send_state_notify,
3063 .acquire = xfrm_send_acquire,
3064 .compile_policy = xfrm_compile_policy,
3065 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003066 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003067 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003068 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003069 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070};
3071
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003072static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
Patrick McHardybe336902006-03-20 22:40:54 -08003074 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003075 struct netlink_kernel_cfg cfg = {
3076 .groups = XFRMNLGRP_MAX,
3077 .input = xfrm_netlink_rcv,
3078 };
Patrick McHardybe336902006-03-20 22:40:54 -08003079
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003080 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003081 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003083 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003084 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 return 0;
3086}
3087
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003088static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003089{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003090 struct net *net;
3091 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003092 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003093 synchronize_net();
3094 list_for_each_entry(net, net_exit_list, exit_list)
3095 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003096}
3097
3098static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003099 .init = xfrm_user_net_init,
3100 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003101};
3102
3103static int __init xfrm_user_init(void)
3104{
3105 int rv;
3106
3107 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3108
3109 rv = register_pernet_subsys(&xfrm_user_net_ops);
3110 if (rv < 0)
3111 return rv;
3112 rv = xfrm_register_km(&netlink_mgr);
3113 if (rv < 0)
3114 unregister_pernet_subsys(&xfrm_user_net_ops);
3115 return rv;
3116}
3117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118static void __exit xfrm_user_exit(void)
3119{
3120 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003121 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
3123
3124module_init(xfrm_user_init);
3125module_exit(xfrm_user_exit);
3126MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003127MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003128