blob: a8de9e3002000d7eaa76f6764797e5b231d187ff [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
Herbert Xu69b01372015-05-27 16:03:45 +0800292static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
293{
294 struct xfrm_algo *p, *ualg;
295 struct xfrm_algo_desc *algo;
296
297 if (!rta)
298 return 0;
299
300 ualg = nla_data(rta);
301
302 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
303 if (!algo)
304 return -ENOSYS;
305 x->props.ealgo = algo->desc.sadb_alg_id;
306
307 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
308 if (!p)
309 return -ENOMEM;
310
311 strcpy(p->alg_name, algo->name);
312 x->ealg = p;
313 x->geniv = algo->uinfo.encr.geniv;
314 return 0;
315}
316
Martin Willi4447bb32009-11-25 00:29:52 +0000317static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
318 struct nlattr *rta)
319{
320 struct xfrm_algo *ualg;
321 struct xfrm_algo_auth *p;
322 struct xfrm_algo_desc *algo;
323
324 if (!rta)
325 return 0;
326
327 ualg = nla_data(rta);
328
329 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
330 if (!algo)
331 return -ENOSYS;
332 *props = algo->desc.sadb_alg_id;
333
334 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
335 if (!p)
336 return -ENOMEM;
337
338 strcpy(p->alg_name, algo->name);
339 p->alg_key_len = ualg->alg_key_len;
340 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
341 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
342
343 *algpp = p;
344 return 0;
345}
346
347static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
348 struct nlattr *rta)
349{
350 struct xfrm_algo_auth *p, *ualg;
351 struct xfrm_algo_desc *algo;
352
353 if (!rta)
354 return 0;
355
356 ualg = nla_data(rta);
357
358 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
359 if (!algo)
360 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800361 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000362 return -EINVAL;
363 *props = algo->desc.sadb_alg_id;
364
365 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
366 if (!p)
367 return -ENOMEM;
368
369 strcpy(p->alg_name, algo->name);
370 if (!p->alg_trunc_len)
371 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
372
373 *algpp = p;
374 return 0;
375}
376
Herbert Xu69b01372015-05-27 16:03:45 +0800377static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800378{
379 struct xfrm_algo_aead *p, *ualg;
380 struct xfrm_algo_desc *algo;
381
382 if (!rta)
383 return 0;
384
385 ualg = nla_data(rta);
386
387 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
388 if (!algo)
389 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800390 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800391
392 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
393 if (!p)
394 return -ENOMEM;
395
396 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800397 x->aead = p;
398 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800399 return 0;
400}
401
Steffen Klasserte2b19122011-03-28 19:47:30 +0000402static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
403 struct nlattr *rp)
404{
405 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000406 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000407
408 if (!replay_esn || !rp)
409 return 0;
410
411 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000412 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000413
Mathias Krauseecd79182012-09-20 10:01:49 +0000414 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415 return -EINVAL;
416
417 return 0;
418}
419
Steffen Klassertd8647b72011-03-08 00:10:27 +0000420static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
421 struct xfrm_replay_state_esn **preplay_esn,
422 struct nlattr *rta)
423{
424 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000425 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000426
427 if (!rta)
428 return 0;
429
430 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000431 klen = xfrm_replay_state_esn_len(up);
432 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000433
Mathias Krauseecd79182012-09-20 10:01:49 +0000434 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000435 if (!p)
436 return -ENOMEM;
437
Mathias Krauseecd79182012-09-20 10:01:49 +0000438 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000439 if (!pp) {
440 kfree(p);
441 return -ENOMEM;
442 }
443
Mathias Krauseecd79182012-09-20 10:01:49 +0000444 memcpy(p, up, ulen);
445 memcpy(pp, up, ulen);
446
Steffen Klassertd8647b72011-03-08 00:10:27 +0000447 *replay_esn = p;
448 *preplay_esn = pp;
449
450 return 0;
451}
452
Joy Latten661697f2007-04-13 16:14:35 -0700453static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800454{
Trent Jaegerdf718372005-12-13 23:12:27 -0800455 int len = 0;
456
457 if (xfrm_ctx) {
458 len += sizeof(struct xfrm_user_sec_ctx);
459 len += xfrm_ctx->ctx_len;
460 }
461 return len;
462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
465{
466 memcpy(&x->id, &p->id, sizeof(x->id));
467 memcpy(&x->sel, &p->sel, sizeof(x->sel));
468 memcpy(&x->lft, &p->lft, sizeof(x->lft));
469 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800470 x->props.replay_window = min_t(unsigned int, p->replay_window,
471 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 x->props.reqid = p->reqid;
473 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700474 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700476
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700477 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700478 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800481/*
482 * someday when pfkey also has support, we could have the code
483 * somehow made shareable and move it to xfrm_state.c - JHS
484 *
485*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000486static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
487 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800488{
Thomas Graf5424f322007-08-22 14:01:33 -0700489 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000490 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700491 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
492 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
493 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800494
Steffen Klassertd8647b72011-03-08 00:10:27 +0000495 if (re) {
496 struct xfrm_replay_state_esn *replay_esn;
497 replay_esn = nla_data(re);
498 memcpy(x->replay_esn, replay_esn,
499 xfrm_replay_state_esn_len(replay_esn));
500 memcpy(x->preplay_esn, replay_esn,
501 xfrm_replay_state_esn_len(replay_esn));
502 }
503
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800504 if (rp) {
505 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700506 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800507 memcpy(&x->replay, replay, sizeof(*replay));
508 memcpy(&x->preplay, replay, sizeof(*replay));
509 }
510
511 if (lt) {
512 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700513 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800514 x->curlft.bytes = ltime->bytes;
515 x->curlft.packets = ltime->packets;
516 x->curlft.add_time = ltime->add_time;
517 x->curlft.use_time = ltime->use_time;
518 }
519
Thomas Grafcf5cb792007-08-22 13:59:04 -0700520 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700521 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800522
Thomas Grafcf5cb792007-08-22 13:59:04 -0700523 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700524 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800525}
526
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800527static struct xfrm_state *xfrm_state_construct(struct net *net,
528 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700529 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int *errp)
531{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800532 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int err = -ENOMEM;
534
535 if (!x)
536 goto error_no_put;
537
538 copy_from_user_state(x, p);
539
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100540 if (attrs[XFRMA_SA_EXTRA_FLAGS])
541 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
542
Herbert Xu69b01372015-05-27 16:03:45 +0800543 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800544 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000545 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
546 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000548 if (!x->props.aalgo) {
549 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
550 attrs[XFRMA_ALG_AUTH])))
551 goto error;
552 }
Herbert Xu69b01372015-05-27 16:03:45 +0800553 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 goto error;
555 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
556 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700557 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700559
560 if (attrs[XFRMA_ENCAP]) {
561 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
562 sizeof(*x->encap), GFP_KERNEL);
563 if (x->encap == NULL)
564 goto error;
565 }
566
Martin Willi35d28562010-12-08 04:37:49 +0000567 if (attrs[XFRMA_TFCPAD])
568 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
569
Thomas Graffd211502007-09-06 03:28:08 -0700570 if (attrs[XFRMA_COADDR]) {
571 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
572 sizeof(*x->coaddr), GFP_KERNEL);
573 if (x->coaddr == NULL)
574 goto error;
575 }
576
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000577 xfrm_mark_get(attrs, &x->mark);
578
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700579 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (err)
581 goto error;
582
Thomas Graffd211502007-09-06 03:28:08 -0700583 if (attrs[XFRMA_SEC_CTX] &&
584 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800585 goto error;
586
Steffen Klassertd8647b72011-03-08 00:10:27 +0000587 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
588 attrs[XFRMA_REPLAY_ESN_VAL])))
589 goto error;
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800592 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800593 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800594 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800595
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000596 if ((err = xfrm_init_replay(x)))
597 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800598
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000599 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000600 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 return x;
603
604error:
605 x->km.state = XFRM_STATE_DEAD;
606 xfrm_state_put(x);
607error_no_put:
608 *errp = err;
609 return NULL;
610}
611
Christoph Hellwig22e70052007-01-02 15:22:30 -0800612static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700613 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800615 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700616 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct xfrm_state *x;
618 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700619 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Thomas Graf35a7aa02007-08-22 14:00:40 -0700621 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (err)
623 return err;
624
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800625 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (!x)
627 return err;
628
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700629 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
631 err = xfrm_state_add(x);
632 else
633 err = xfrm_state_update(x);
634
Tetsuo Handa2e710292014-04-22 21:48:30 +0900635 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (err < 0) {
638 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800639 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700640 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700643 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000644 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700645 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700646
647 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700648out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700649 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return err;
651}
652
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800653static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
654 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700655 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700656 int *errp)
657{
658 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000659 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700660 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000661 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700662
663 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
664 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000665 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700666 } else {
667 xfrm_address_t *saddr = NULL;
668
Thomas Graf35a7aa02007-08-22 14:00:40 -0700669 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700670 if (!saddr) {
671 err = -EINVAL;
672 goto out;
673 }
674
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800675 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000676 x = xfrm_state_lookup_byaddr(net, mark,
677 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800678 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700679 }
680
681 out:
682 if (!x && errp)
683 *errp = err;
684 return x;
685}
686
Christoph Hellwig22e70052007-01-02 15:22:30 -0800687static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700688 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800690 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700692 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700693 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700694 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800696 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700698 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
David S. Miller6f68dc32006-06-08 23:58:52 -0700700 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700701 goto out;
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700704 err = -EPERM;
705 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700708 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600709
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700710 if (err < 0)
711 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700712
713 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000714 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700715 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700716 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700718out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900719 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700720 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700721 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
724static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
725{
Mathias Krausef778a632012-09-19 11:33:39 +0000726 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 memcpy(&p->id, &x->id, sizeof(p->id));
728 memcpy(&p->sel, &x->sel, sizeof(p->sel));
729 memcpy(&p->lft, &x->lft, sizeof(p->lft));
730 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
731 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700732 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 p->mode = x->props.mode;
734 p->replay_window = x->props.replay_window;
735 p->reqid = x->props.reqid;
736 p->family = x->props.family;
737 p->flags = x->props.flags;
738 p->seq = x->km.seq;
739}
740
741struct xfrm_dump_info {
742 struct sk_buff *in_skb;
743 struct sk_buff *out_skb;
744 u32 nlmsg_seq;
745 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746};
747
Thomas Grafc0144be2007-08-22 13:55:43 -0700748static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
749{
Thomas Grafc0144be2007-08-22 13:55:43 -0700750 struct xfrm_user_sec_ctx *uctx;
751 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700752 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700753
754 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
755 if (attr == NULL)
756 return -EMSGSIZE;
757
758 uctx = nla_data(attr);
759 uctx->exttype = XFRMA_SEC_CTX;
760 uctx->len = ctx_size;
761 uctx->ctx_doi = s->ctx_doi;
762 uctx->ctx_alg = s->ctx_alg;
763 uctx->ctx_len = s->ctx_len;
764 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
765
766 return 0;
767}
768
Martin Willi4447bb32009-11-25 00:29:52 +0000769static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
770{
771 struct xfrm_algo *algo;
772 struct nlattr *nla;
773
774 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
775 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
776 if (!nla)
777 return -EMSGSIZE;
778
779 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000780 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000781 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
782 algo->alg_key_len = auth->alg_key_len;
783
784 return 0;
785}
786
Herbert Xu68325d32007-10-09 13:30:57 -0700787/* Don't change this without updating xfrm_sa_len! */
788static int copy_to_user_state_extra(struct xfrm_state *x,
789 struct xfrm_usersa_info *p,
790 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700792 int ret = 0;
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 copy_to_user_state(x, p);
795
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100796 if (x->props.extra_flags) {
797 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
798 x->props.extra_flags);
799 if (ret)
800 goto out;
801 }
802
David S. Miller1d1e34d2012-06-27 21:57:03 -0700803 if (x->coaddr) {
804 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
805 if (ret)
806 goto out;
807 }
808 if (x->lastused) {
809 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
810 if (ret)
811 goto out;
812 }
813 if (x->aead) {
814 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
815 if (ret)
816 goto out;
817 }
818 if (x->aalg) {
819 ret = copy_to_user_auth(x->aalg, skb);
820 if (!ret)
821 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
822 xfrm_alg_auth_len(x->aalg), x->aalg);
823 if (ret)
824 goto out;
825 }
826 if (x->ealg) {
827 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
828 if (ret)
829 goto out;
830 }
831 if (x->calg) {
832 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
833 if (ret)
834 goto out;
835 }
836 if (x->encap) {
837 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
838 if (ret)
839 goto out;
840 }
841 if (x->tfcpad) {
842 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
843 if (ret)
844 goto out;
845 }
846 ret = xfrm_mark_put(skb, &x->mark);
847 if (ret)
848 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100849 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700850 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
851 xfrm_replay_state_esn_len(x->replay_esn),
852 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100853 else
854 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
855 &x->replay);
856 if (ret)
857 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700858 if (x->security)
859 ret = copy_sec_ctx(x->security, skb);
860out:
861 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700862}
863
864static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
865{
866 struct xfrm_dump_info *sp = ptr;
867 struct sk_buff *in_skb = sp->in_skb;
868 struct sk_buff *skb = sp->out_skb;
869 struct xfrm_usersa_info *p;
870 struct nlmsghdr *nlh;
871 int err;
872
Eric W. Biederman15e47302012-09-07 20:12:54 +0000873 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700874 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
875 if (nlh == NULL)
876 return -EMSGSIZE;
877
878 p = nlmsg_data(nlh);
879
880 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700881 if (err) {
882 nlmsg_cancel(skb, nlh);
883 return err;
884 }
Thomas Graf98250692007-08-22 12:47:26 -0700885 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Timo Teras4c563f72008-02-28 21:31:08 -0800889static int xfrm_dump_sa_done(struct netlink_callback *cb)
890{
891 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800892 struct sock *sk = cb->skb->sk;
893 struct net *net = sock_net(sk);
894
895 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800896 return 0;
897}
898
Nicolas Dichteld3623092014-02-14 15:30:36 +0100899static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
901{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800902 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800903 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 struct xfrm_dump_info info;
905
Timo Teras4c563f72008-02-28 21:31:08 -0800906 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
907 sizeof(cb->args) - sizeof(cb->args[0]));
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 info.in_skb = cb->skb;
910 info.out_skb = skb;
911 info.nlmsg_seq = cb->nlh->nlmsg_seq;
912 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800913
914 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100915 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100916 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100917 u8 proto = 0;
918 int err;
919
Timo Teras4c563f72008-02-28 21:31:08 -0800920 cb->args[0] = 1;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100921
922 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
923 xfrma_policy);
924 if (err < 0)
925 return err;
926
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100927 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200928 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
929 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100930 if (filter == NULL)
931 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100932 }
933
934 if (attrs[XFRMA_PROTO])
935 proto = nla_get_u8(attrs[XFRMA_PROTO]);
936
937 xfrm_state_walk_init(walk, proto, filter);
Timo Teras4c563f72008-02-28 21:31:08 -0800938 }
939
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800940 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 return skb->len;
943}
944
945static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
946 struct xfrm_state *x, u32 seq)
947{
948 struct xfrm_dump_info info;
949 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000950 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Thomas Graf7deb2262007-08-22 13:57:39 -0700952 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!skb)
954 return ERR_PTR(-ENOMEM);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 info.in_skb = in_skb;
957 info.out_skb = skb;
958 info.nlmsg_seq = seq;
959 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Mathias Krause864745d2012-09-13 11:41:26 +0000961 err = dump_one_state(x, 0, &info);
962 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000964 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
967 return skb;
968}
969
Michal Kubecek21ee5432014-06-03 10:26:06 +0200970/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
971 * Must be called with RCU read lock.
972 */
973static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
974 u32 pid, unsigned int group)
975{
976 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
977
978 if (nlsk)
979 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
980 else
981 return -1;
982}
983
Thomas Graf7deb2262007-08-22 13:57:39 -0700984static inline size_t xfrm_spdinfo_msgsize(void)
985{
986 return NLMSG_ALIGN(4)
987 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200988 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
989 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
990 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -0700991}
992
Alexey Dobriyane0710412010-01-23 13:37:10 +0000993static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000994 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700995{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700996 struct xfrmk_spdinfo si;
997 struct xfrmu_spdinfo spc;
998 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200999 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001000 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001001 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001002 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001003 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001004
Eric W. Biederman15e47302012-09-07 20:12:54 +00001005 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001006 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001007 return -EMSGSIZE;
1008
1009 f = nlmsg_data(nlh);
1010 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001011 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001012 spc.incnt = si.incnt;
1013 spc.outcnt = si.outcnt;
1014 spc.fwdcnt = si.fwdcnt;
1015 spc.inscnt = si.inscnt;
1016 spc.outscnt = si.outscnt;
1017 spc.fwdscnt = si.fwdscnt;
1018 sph.spdhcnt = si.spdhcnt;
1019 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001020
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001021 do {
1022 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1023
1024 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1025 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1026 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1027 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1028 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1029
David S. Miller1d1e34d2012-06-27 21:57:03 -07001030 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1031 if (!err)
1032 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001033 if (!err)
1034 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1035 if (!err)
1036 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001037 if (err) {
1038 nlmsg_cancel(skb, nlh);
1039 return err;
1040 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001041
Johannes Berg053c0952015-01-16 22:09:00 +01001042 nlmsg_end(skb, nlh);
1043 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001044}
1045
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001046static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1047 struct nlattr **attrs)
1048{
1049 struct net *net = sock_net(skb->sk);
1050 struct xfrmu_spdhthresh *thresh4 = NULL;
1051 struct xfrmu_spdhthresh *thresh6 = NULL;
1052
1053 /* selector prefixlen thresholds to hash policies */
1054 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1055 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1056
1057 if (nla_len(rta) < sizeof(*thresh4))
1058 return -EINVAL;
1059 thresh4 = nla_data(rta);
1060 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1061 return -EINVAL;
1062 }
1063 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1064 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1065
1066 if (nla_len(rta) < sizeof(*thresh6))
1067 return -EINVAL;
1068 thresh6 = nla_data(rta);
1069 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1070 return -EINVAL;
1071 }
1072
1073 if (thresh4 || thresh6) {
1074 write_seqlock(&net->xfrm.policy_hthresh.lock);
1075 if (thresh4) {
1076 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1077 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1078 }
1079 if (thresh6) {
1080 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1081 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1082 }
1083 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1084
1085 xfrm_policy_hash_rebuild(net);
1086 }
1087
1088 return 0;
1089}
1090
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001091static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001092 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001093{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001094 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001095 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001096 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001097 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001098 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001099
Thomas Graf7deb2262007-08-22 13:57:39 -07001100 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001101 if (r_skb == NULL)
1102 return -ENOMEM;
1103
Eric W. Biederman15e47302012-09-07 20:12:54 +00001104 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001105 BUG();
1106
Eric W. Biederman15e47302012-09-07 20:12:54 +00001107 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001108}
1109
Thomas Graf7deb2262007-08-22 13:57:39 -07001110static inline size_t xfrm_sadinfo_msgsize(void)
1111{
1112 return NLMSG_ALIGN(4)
1113 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1114 + nla_total_size(4); /* XFRMA_SAD_CNT */
1115}
1116
Alexey Dobriyane0710412010-01-23 13:37:10 +00001117static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001118 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001119{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001120 struct xfrmk_sadinfo si;
1121 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001122 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001123 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001124 u32 *f;
1125
Eric W. Biederman15e47302012-09-07 20:12:54 +00001126 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001127 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001128 return -EMSGSIZE;
1129
1130 f = nlmsg_data(nlh);
1131 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001132 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001133
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001134 sh.sadhmcnt = si.sadhmcnt;
1135 sh.sadhcnt = si.sadhcnt;
1136
David S. Miller1d1e34d2012-06-27 21:57:03 -07001137 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1138 if (!err)
1139 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1140 if (err) {
1141 nlmsg_cancel(skb, nlh);
1142 return err;
1143 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001144
Johannes Berg053c0952015-01-16 22:09:00 +01001145 nlmsg_end(skb, nlh);
1146 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001147}
1148
1149static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001150 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001151{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001152 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001153 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001154 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001155 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001156 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001157
Thomas Graf7deb2262007-08-22 13:57:39 -07001158 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001159 if (r_skb == NULL)
1160 return -ENOMEM;
1161
Eric W. Biederman15e47302012-09-07 20:12:54 +00001162 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001163 BUG();
1164
Eric W. Biederman15e47302012-09-07 20:12:54 +00001165 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001166}
1167
Christoph Hellwig22e70052007-01-02 15:22:30 -08001168static int xfrm_get_sa(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);
Thomas Graf7b67c852007-08-22 13:53:52 -07001172 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 struct xfrm_state *x;
1174 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001175 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001177 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (x == NULL)
1179 goto out_noput;
1180
1181 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1182 if (IS_ERR(resp_skb)) {
1183 err = PTR_ERR(resp_skb);
1184 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001185 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
1187 xfrm_state_put(x);
1188out_noput:
1189 return err;
1190}
1191
Christoph Hellwig22e70052007-01-02 15:22:30 -08001192static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001193 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001195 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct xfrm_state *x;
1197 struct xfrm_userspi_info *p;
1198 struct sk_buff *resp_skb;
1199 xfrm_address_t *daddr;
1200 int family;
1201 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001202 u32 mark;
1203 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Thomas Graf7b67c852007-08-22 13:53:52 -07001205 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001206 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (err)
1208 goto out_noput;
1209
1210 family = p->info.family;
1211 daddr = &p->info.id.daddr;
1212
1213 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001214
1215 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001217 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001218 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 xfrm_state_put(x);
1220 x = NULL;
1221 }
1222 }
1223
1224 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001225 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 p->info.id.proto, daddr,
1227 &p->info.saddr, 1,
1228 family);
1229 err = -ENOENT;
1230 if (x == NULL)
1231 goto out_noput;
1232
Herbert Xu658b2192007-10-09 13:29:52 -07001233 err = xfrm_alloc_spi(x, p->min, p->max);
1234 if (err)
1235 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Herbert Xu658b2192007-10-09 13:29:52 -07001237 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (IS_ERR(resp_skb)) {
1239 err = PTR_ERR(resp_skb);
1240 goto out;
1241 }
1242
Eric W. Biederman15e47302012-09-07 20:12:54 +00001243 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245out:
1246 xfrm_state_put(x);
1247out_noput:
1248 return err;
1249}
1250
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001251static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
1253 switch (dir) {
1254 case XFRM_POLICY_IN:
1255 case XFRM_POLICY_OUT:
1256 case XFRM_POLICY_FWD:
1257 break;
1258
1259 default:
1260 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 return 0;
1264}
1265
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001266static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001267{
1268 switch (type) {
1269 case XFRM_POLICY_TYPE_MAIN:
1270#ifdef CONFIG_XFRM_SUB_POLICY
1271 case XFRM_POLICY_TYPE_SUB:
1272#endif
1273 break;
1274
1275 default:
1276 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001277 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001278
1279 return 0;
1280}
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1283{
Fan Due682adf2013-11-07 17:47:48 +08001284 int ret;
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 switch (p->share) {
1287 case XFRM_SHARE_ANY:
1288 case XFRM_SHARE_SESSION:
1289 case XFRM_SHARE_USER:
1290 case XFRM_SHARE_UNIQUE:
1291 break;
1292
1293 default:
1294 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 switch (p->action) {
1298 case XFRM_POLICY_ALLOW:
1299 case XFRM_POLICY_BLOCK:
1300 break;
1301
1302 default:
1303 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 switch (p->sel.family) {
1307 case AF_INET:
1308 break;
1309
1310 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001311#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 break;
1313#else
1314 return -EAFNOSUPPORT;
1315#endif
1316
1317 default:
1318 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Fan Due682adf2013-11-07 17:47:48 +08001321 ret = verify_policy_dir(p->dir);
1322 if (ret)
1323 return ret;
1324 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1325 return -EINVAL;
1326
1327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Thomas Graf5424f322007-08-22 14:01:33 -07001330static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001331{
Thomas Graf5424f322007-08-22 14:01:33 -07001332 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001333 struct xfrm_user_sec_ctx *uctx;
1334
1335 if (!rt)
1336 return 0;
1337
Thomas Graf5424f322007-08-22 14:01:33 -07001338 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001339 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1343 int nr)
1344{
1345 int i;
1346
1347 xp->xfrm_nr = nr;
1348 for (i = 0; i < nr; i++, ut++) {
1349 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1350
1351 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1352 memcpy(&t->saddr, &ut->saddr,
1353 sizeof(xfrm_address_t));
1354 t->reqid = ut->reqid;
1355 t->mode = ut->mode;
1356 t->share = ut->share;
1357 t->optional = ut->optional;
1358 t->aalgos = ut->aalgos;
1359 t->ealgos = ut->ealgos;
1360 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001361 /* If all masks are ~0, then we allow all algorithms. */
1362 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001363 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
1365}
1366
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001367static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1368{
1369 int i;
1370
1371 if (nr > XFRM_MAX_DEPTH)
1372 return -EINVAL;
1373
1374 for (i = 0; i < nr; i++) {
1375 /* We never validated the ut->family value, so many
1376 * applications simply leave it at zero. The check was
1377 * never made and ut->family was ignored because all
1378 * templates could be assumed to have the same family as
1379 * the policy itself. Now that we will have ipv4-in-ipv6
1380 * and ipv6-in-ipv4 tunnels, this is no longer true.
1381 */
1382 if (!ut[i].family)
1383 ut[i].family = family;
1384
1385 switch (ut[i].family) {
1386 case AF_INET:
1387 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001388#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001389 case AF_INET6:
1390 break;
1391#endif
1392 default:
1393 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001394 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001395 }
1396
1397 return 0;
1398}
1399
Thomas Graf5424f322007-08-22 14:01:33 -07001400static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Thomas Graf5424f322007-08-22 14:01:33 -07001402 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 if (!rt) {
1405 pol->xfrm_nr = 0;
1406 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001407 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1408 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001409 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001411 err = validate_tmpl(nr, utmpl, pol->family);
1412 if (err)
1413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Thomas Graf5424f322007-08-22 14:01:33 -07001415 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417 return 0;
1418}
1419
Thomas Graf5424f322007-08-22 14:01:33 -07001420static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001421{
Thomas Graf5424f322007-08-22 14:01:33 -07001422 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001423 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001424 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001425 int err;
1426
1427 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001428 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001429 type = upt->type;
1430 }
1431
1432 err = verify_policy_type(type);
1433 if (err)
1434 return err;
1435
1436 *tp = type;
1437 return 0;
1438}
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1441{
1442 xp->priority = p->priority;
1443 xp->index = p->index;
1444 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1445 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1446 xp->action = p->action;
1447 xp->flags = p->flags;
1448 xp->family = p->sel.family;
1449 /* XXX xp->share = p->share; */
1450}
1451
1452static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1453{
Mathias Krause7b789832012-09-19 11:33:40 +00001454 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1456 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1457 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1458 p->priority = xp->priority;
1459 p->index = xp->index;
1460 p->sel.family = xp->family;
1461 p->dir = dir;
1462 p->action = xp->action;
1463 p->flags = xp->flags;
1464 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1465}
1466
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001467static 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 -07001468{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001469 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 int err;
1471
1472 if (!xp) {
1473 *errp = -ENOMEM;
1474 return NULL;
1475 }
1476
1477 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001478
Thomas Graf35a7aa02007-08-22 14:00:40 -07001479 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001480 if (err)
1481 goto error;
1482
Thomas Graf35a7aa02007-08-22 14:00:40 -07001483 if (!(err = copy_from_user_tmpl(xp, attrs)))
1484 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001485 if (err)
1486 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001488 xfrm_mark_get(attrs, &xp->mark);
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001491 error:
1492 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001493 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001494 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001495 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Christoph Hellwig22e70052007-01-02 15:22:30 -08001498static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001499 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001501 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001502 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001504 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 int err;
1506 int excl;
1507
1508 err = verify_newpolicy_info(p);
1509 if (err)
1510 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001511 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001512 if (err)
1513 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001515 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (!xp)
1517 return err;
1518
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001519 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001520 * Aha! this is anti-netlink really i.e more pfkey derived
1521 * in netlink excl is a flag and you wouldnt need
1522 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1524 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001525 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001528 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 kfree(xp);
1530 return err;
1531 }
1532
Herbert Xuf60f6b82005-06-18 22:44:37 -07001533 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001534 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001535 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001536 km_policy_notify(xp, p->dir, &c);
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 xfrm_pol_put(xp);
1539
1540 return 0;
1541}
1542
1543static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1544{
1545 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1546 int i;
1547
1548 if (xp->xfrm_nr == 0)
1549 return 0;
1550
1551 for (i = 0; i < xp->xfrm_nr; i++) {
1552 struct xfrm_user_tmpl *up = &vec[i];
1553 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1554
Mathias Krause1f868402012-09-19 11:33:41 +00001555 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001557 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1559 up->reqid = kp->reqid;
1560 up->mode = kp->mode;
1561 up->share = kp->share;
1562 up->optional = kp->optional;
1563 up->aalgos = kp->aalgos;
1564 up->ealgos = kp->ealgos;
1565 up->calgos = kp->calgos;
1566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Thomas Grafc0144be2007-08-22 13:55:43 -07001568 return nla_put(skb, XFRMA_TMPL,
1569 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001570}
1571
Serge Hallyn0d681622006-07-24 23:30:44 -07001572static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1573{
1574 if (x->security) {
1575 return copy_sec_ctx(x->security, skb);
1576 }
1577 return 0;
1578}
1579
1580static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1581{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001582 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001583 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001584 return 0;
1585}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001586static inline size_t userpolicy_type_attrsize(void)
1587{
1588#ifdef CONFIG_XFRM_SUB_POLICY
1589 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1590#else
1591 return 0;
1592#endif
1593}
Serge Hallyn0d681622006-07-24 23:30:44 -07001594
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001595#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001596static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001597{
Thomas Grafc0144be2007-08-22 13:55:43 -07001598 struct xfrm_userpolicy_type upt = {
1599 .type = type,
1600 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001601
Thomas Grafc0144be2007-08-22 13:55:43 -07001602 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001603}
1604
1605#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001606static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001607{
1608 return 0;
1609}
1610#endif
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1613{
1614 struct xfrm_dump_info *sp = ptr;
1615 struct xfrm_userpolicy_info *p;
1616 struct sk_buff *in_skb = sp->in_skb;
1617 struct sk_buff *skb = sp->out_skb;
1618 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001619 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Eric W. Biederman15e47302012-09-07 20:12:54 +00001621 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001622 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1623 if (nlh == NULL)
1624 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Thomas Graf7b67c852007-08-22 13:53:52 -07001626 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001628 err = copy_to_user_tmpl(xp, skb);
1629 if (!err)
1630 err = copy_to_user_sec_ctx(xp, skb);
1631 if (!err)
1632 err = copy_to_user_policy_type(xp->type, skb);
1633 if (!err)
1634 err = xfrm_mark_put(skb, &xp->mark);
1635 if (err) {
1636 nlmsg_cancel(skb, nlh);
1637 return err;
1638 }
Thomas Graf98250692007-08-22 12:47:26 -07001639 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Timo Teras4c563f72008-02-28 21:31:08 -08001643static int xfrm_dump_policy_done(struct netlink_callback *cb)
1644{
1645 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001646 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001647
Fan Du283bc9f2013-11-07 17:47:50 +08001648 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001649 return 0;
1650}
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1653{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001654 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001655 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 struct xfrm_dump_info info;
1657
Timo Teras4c563f72008-02-28 21:31:08 -08001658 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1659 sizeof(cb->args) - sizeof(cb->args[0]));
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 info.in_skb = cb->skb;
1662 info.out_skb = skb;
1663 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1664 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001665
1666 if (!cb->args[0]) {
1667 cb->args[0] = 1;
1668 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1669 }
1670
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001671 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 return skb->len;
1674}
1675
1676static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1677 struct xfrm_policy *xp,
1678 int dir, u32 seq)
1679{
1680 struct xfrm_dump_info info;
1681 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001682 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Thomas Graf7deb2262007-08-22 13:57:39 -07001684 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (!skb)
1686 return ERR_PTR(-ENOMEM);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 info.in_skb = in_skb;
1689 info.out_skb = skb;
1690 info.nlmsg_seq = seq;
1691 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Mathias Krausec2546372012-09-14 09:58:32 +00001693 err = dump_one_policy(xp, dir, 0, &info);
1694 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001696 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698
1699 return skb;
1700}
1701
Christoph Hellwig22e70052007-01-02 15:22:30 -08001702static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001703 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001705 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 struct xfrm_policy *xp;
1707 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001708 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001710 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001712 struct xfrm_mark m;
1713 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Thomas Graf7b67c852007-08-22 13:53:52 -07001715 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1717
Thomas Graf35a7aa02007-08-22 14:00:40 -07001718 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001719 if (err)
1720 return err;
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 err = verify_policy_dir(p->dir);
1723 if (err)
1724 return err;
1725
1726 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001727 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001728 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001729 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001730 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001731
Thomas Graf35a7aa02007-08-22 14:00:40 -07001732 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001733 if (err)
1734 return err;
1735
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001736 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001737 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001738 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001739
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001740 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001741 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001742 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001743 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001744 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001745 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001746 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (xp == NULL)
1749 return -ENOENT;
1750
1751 if (!delete) {
1752 struct sk_buff *resp_skb;
1753
1754 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1755 if (IS_ERR(resp_skb)) {
1756 err = PTR_ERR(resp_skb);
1757 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001758 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001759 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001761 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001762 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001763
1764 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001765 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001766
Herbert Xue7443892005-06-18 22:44:18 -07001767 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001768 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001769 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001770 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001771 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001774out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001775 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001776 if (delete && err == 0)
1777 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 return err;
1779}
1780
Christoph Hellwig22e70052007-01-02 15:22:30 -08001781static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001782 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001784 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001785 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001786 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001787 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Tetsuo Handa2e710292014-04-22 21:48:30 +09001789 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001790 if (err) {
1791 if (err == -ESRCH) /* empty table */
1792 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001793 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001794 }
Herbert Xubf088672005-06-18 22:44:00 -07001795 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001796 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001797 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001798 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001799 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001800 km_state_notify(NULL, &c);
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return 0;
1803}
1804
Steffen Klassertd8647b72011-03-08 00:10:27 +00001805static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001806{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001807 size_t replay_size = x->replay_esn ?
1808 xfrm_replay_state_esn_len(x->replay_esn) :
1809 sizeof(struct xfrm_replay_state);
1810
Thomas Graf7deb2262007-08-22 13:57:39 -07001811 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001812 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001813 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001814 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001815 + nla_total_size(4) /* XFRM_AE_RTHR */
1816 + nla_total_size(4); /* XFRM_AE_ETHR */
1817}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001818
David S. Miller214e0052011-02-24 00:02:38 -05001819static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001820{
1821 struct xfrm_aevent_id *id;
1822 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001823 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001824
Eric W. Biederman15e47302012-09-07 20:12:54 +00001825 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001826 if (nlh == NULL)
1827 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001828
Thomas Graf7b67c852007-08-22 13:53:52 -07001829 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001830 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001831 id->sa_id.spi = x->id.spi;
1832 id->sa_id.family = x->props.family;
1833 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001834 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001835 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001836 id->flags = c->data.aevent;
1837
David S. Millerd0fde792012-03-29 04:02:26 -04001838 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001839 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1840 xfrm_replay_state_esn_len(x->replay_esn),
1841 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001842 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001843 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1844 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001845 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001846 if (err)
1847 goto out_cancel;
1848 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1849 if (err)
1850 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001851
David S. Miller1d1e34d2012-06-27 21:57:03 -07001852 if (id->flags & XFRM_AE_RTHR) {
1853 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1854 if (err)
1855 goto out_cancel;
1856 }
1857 if (id->flags & XFRM_AE_ETHR) {
1858 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1859 x->replay_maxage * 10 / HZ);
1860 if (err)
1861 goto out_cancel;
1862 }
1863 err = xfrm_mark_put(skb, &x->mark);
1864 if (err)
1865 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001866
Johannes Berg053c0952015-01-16 22:09:00 +01001867 nlmsg_end(skb, nlh);
1868 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001869
David S. Miller1d1e34d2012-06-27 21:57:03 -07001870out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001871 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001872 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001873}
1874
Christoph Hellwig22e70052007-01-02 15:22:30 -08001875static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001876 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001877{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001878 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001879 struct xfrm_state *x;
1880 struct sk_buff *r_skb;
1881 int err;
1882 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001883 u32 mark;
1884 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001885 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001886 struct xfrm_usersa_id *id = &p->sa_id;
1887
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001888 mark = xfrm_mark_get(attrs, &m);
1889
1890 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001891 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001892 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001893
1894 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1895 if (r_skb == NULL) {
1896 xfrm_state_put(x);
1897 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001898 }
1899
1900 /*
1901 * XXX: is this lock really needed - none of the other
1902 * gets lock (the concern is things getting updated
1903 * while we are still reading) - jhs
1904 */
1905 spin_lock_bh(&x->lock);
1906 c.data.aevent = p->flags;
1907 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001908 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001909
1910 if (build_aevent(r_skb, x, &c) < 0)
1911 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001912 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001913 spin_unlock_bh(&x->lock);
1914 xfrm_state_put(x);
1915 return err;
1916}
1917
Christoph Hellwig22e70052007-01-02 15:22:30 -08001918static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001919 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001920{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001921 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001922 struct xfrm_state *x;
1923 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001924 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001925 u32 mark = 0;
1926 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001927 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001928 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001929 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001930 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001931
Steffen Klassertd8647b72011-03-08 00:10:27 +00001932 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001933 return err;
1934
1935 /* pedantic mode - thou shalt sayeth replaceth */
1936 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1937 return err;
1938
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001939 mark = xfrm_mark_get(attrs, &m);
1940
1941 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 -08001942 if (x == NULL)
1943 return -ESRCH;
1944
1945 if (x->km.state != XFRM_STATE_VALID)
1946 goto out;
1947
Steffen Klassert4479ff72013-09-09 09:39:01 +02001948 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001949 if (err)
1950 goto out;
1951
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001953 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001954 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001955
1956 c.event = nlh->nlmsg_type;
1957 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001958 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001959 c.data.aevent = XFRM_AE_CU;
1960 km_state_notify(x, &c);
1961 err = 0;
1962out:
1963 xfrm_state_put(x);
1964 return err;
1965}
1966
Christoph Hellwig22e70052007-01-02 15:22:30 -08001967static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001968 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001970 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001971 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001972 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001973 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001974
Thomas Graf35a7aa02007-08-22 14:00:40 -07001975 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001976 if (err)
1977 return err;
1978
Tetsuo Handa2e710292014-04-22 21:48:30 +09001979 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001980 if (err) {
1981 if (err == -ESRCH) /* empty table */
1982 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001983 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001984 }
1985
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001986 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001987 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001988 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001989 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001990 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001991 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return 0;
1993}
1994
Christoph Hellwig22e70052007-01-02 15:22:30 -08001995static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001996 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001997{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001998 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001999 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002000 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002001 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002002 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002003 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002004 struct xfrm_mark m;
2005 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002006
Thomas Graf35a7aa02007-08-22 14:00:40 -07002007 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002008 if (err)
2009 return err;
2010
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002011 err = verify_policy_dir(p->dir);
2012 if (err)
2013 return err;
2014
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002015 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002016 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002017 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002018 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002019 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002020
Thomas Graf35a7aa02007-08-22 14:00:40 -07002021 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002022 if (err)
2023 return err;
2024
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002025 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002026 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002027 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002028
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002029 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002030 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002031 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002032 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002033 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002034 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002035 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002036 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002037 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002038 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002039
Timo Teräsea2dea92010-03-31 00:17:05 +00002040 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002041 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002042
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002043 err = 0;
2044 if (up->hard) {
2045 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002046 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002047 } else {
2048 // reset the timers here?
Jakub Wilk0c199a92015-07-18 14:41:51 +02002049 WARN(1, "Don't know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002050 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002051 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002052
2053out:
2054 xfrm_pol_put(xp);
2055 return err;
2056}
2057
Christoph Hellwig22e70052007-01-02 15:22:30 -08002058static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002059 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002060{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002061 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002062 struct xfrm_state *x;
2063 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002064 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002065 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002066 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002067 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002068
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002069 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 -08002070
David S. Miller3a765aa2007-02-26 14:52:21 -08002071 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002072 if (x == NULL)
2073 return err;
2074
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002075 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002076 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002077 if (x->km.state != XFRM_STATE_VALID)
2078 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002079 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002080
Joy Latten161a09e2006-11-27 13:11:54 -06002081 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002082 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002083 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002084 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002085 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002086out:
2087 spin_unlock_bh(&x->lock);
2088 xfrm_state_put(x);
2089 return err;
2090}
2091
Christoph Hellwig22e70052007-01-02 15:22:30 -08002092static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002093 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002094{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002095 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002096 struct xfrm_policy *xp;
2097 struct xfrm_user_tmpl *ut;
2098 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002099 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002100 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002101
Thomas Graf7b67c852007-08-22 13:53:52 -07002102 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002103 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002104 int err = -ENOMEM;
2105
2106 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002107 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002108
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002109 xfrm_mark_get(attrs, &mark);
2110
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002111 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002112 if (err)
2113 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002114
2115 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002116 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002117 if (!xp)
2118 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002119
2120 memcpy(&x->id, &ua->id, sizeof(ua->id));
2121 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2122 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002123 xp->mark.m = x->mark.m = mark.m;
2124 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002125 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002126 /* extract the templates and for each call km_key */
2127 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2128 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2129 memcpy(&x->id, &t->id, sizeof(x->id));
2130 x->props.mode = t->mode;
2131 x->props.reqid = t->reqid;
2132 x->props.family = ut->family;
2133 t->aalgos = ua->aalgos;
2134 t->ealgos = ua->ealgos;
2135 t->calgos = ua->calgos;
2136 err = km_query(x, t, xp);
2137
2138 }
2139
2140 kfree(x);
2141 kfree(xp);
2142
2143 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002144
2145bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002146 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002147free_state:
2148 kfree(x);
2149nomem:
2150 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002151}
2152
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002153#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002154static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002155 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002156 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002157{
Thomas Graf5424f322007-08-22 14:01:33 -07002158 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002159 struct xfrm_user_migrate *um;
2160 int i, num_migrate;
2161
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002162 if (k != NULL) {
2163 struct xfrm_user_kmaddress *uk;
2164
2165 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2166 memcpy(&k->local, &uk->local, sizeof(k->local));
2167 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2168 k->family = uk->family;
2169 k->reserved = uk->reserved;
2170 }
2171
Thomas Graf5424f322007-08-22 14:01:33 -07002172 um = nla_data(rt);
2173 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002174
2175 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2176 return -EINVAL;
2177
2178 for (i = 0; i < num_migrate; i++, um++, ma++) {
2179 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2180 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2181 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2182 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2183
2184 ma->proto = um->proto;
2185 ma->mode = um->mode;
2186 ma->reqid = um->reqid;
2187
2188 ma->old_family = um->old_family;
2189 ma->new_family = um->new_family;
2190 }
2191
2192 *num = i;
2193 return 0;
2194}
2195
2196static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002197 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002198{
Thomas Graf7b67c852007-08-22 13:53:52 -07002199 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002200 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002201 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002202 u8 type;
2203 int err;
2204 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002205 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206
Thomas Graf35a7aa02007-08-22 14:00:40 -07002207 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002208 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002209
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002210 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2211
Thomas Graf5424f322007-08-22 14:01:33 -07002212 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002213 if (err)
2214 return err;
2215
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002216 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002217 if (err)
2218 return err;
2219
2220 if (!n)
2221 return 0;
2222
Fan Du8d549c42013-11-07 17:47:49 +08002223 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002224
2225 return 0;
2226}
2227#else
2228static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002229 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002230{
2231 return -ENOPROTOOPT;
2232}
2233#endif
2234
2235#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002236static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002237{
2238 struct xfrm_user_migrate um;
2239
2240 memset(&um, 0, sizeof(um));
2241 um.proto = m->proto;
2242 um.mode = m->mode;
2243 um.reqid = m->reqid;
2244 um.old_family = m->old_family;
2245 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2246 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2247 um.new_family = m->new_family;
2248 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2249 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2250
Thomas Grafc0144be2007-08-22 13:55:43 -07002251 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002252}
2253
David S. Miller183cad12011-02-24 00:28:01 -05002254static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002255{
2256 struct xfrm_user_kmaddress uk;
2257
2258 memset(&uk, 0, sizeof(uk));
2259 uk.family = k->family;
2260 uk.reserved = k->reserved;
2261 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002262 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002263
2264 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2265}
2266
2267static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002268{
2269 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002270 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2271 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2272 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002273}
2274
David S. Miller183cad12011-02-24 00:28:01 -05002275static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2276 int num_migrate, const struct xfrm_kmaddress *k,
2277 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002278{
David S. Miller183cad12011-02-24 00:28:01 -05002279 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002280 struct xfrm_userpolicy_id *pol_id;
2281 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002282 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002284 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2285 if (nlh == NULL)
2286 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287
Thomas Graf7b67c852007-08-22 13:53:52 -07002288 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002289 /* copy data from selector, dir, and type to the pol_id */
2290 memset(pol_id, 0, sizeof(*pol_id));
2291 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2292 pol_id->dir = dir;
2293
David S. Miller1d1e34d2012-06-27 21:57:03 -07002294 if (k != NULL) {
2295 err = copy_to_user_kmaddress(k, skb);
2296 if (err)
2297 goto out_cancel;
2298 }
2299 err = copy_to_user_policy_type(type, skb);
2300 if (err)
2301 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002302 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002303 err = copy_to_user_migrate(mp, skb);
2304 if (err)
2305 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002306 }
2307
Johannes Berg053c0952015-01-16 22:09:00 +01002308 nlmsg_end(skb, nlh);
2309 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002310
2311out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002312 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002313 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002314}
2315
David S. Miller183cad12011-02-24 00:28:01 -05002316static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2317 const struct xfrm_migrate *m, int num_migrate,
2318 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002319{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002320 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002321 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002322
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002323 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002324 if (skb == NULL)
2325 return -ENOMEM;
2326
2327 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002328 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002329 BUG();
2330
Michal Kubecek21ee5432014-06-03 10:26:06 +02002331 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002332}
2333#else
David S. Miller183cad12011-02-24 00:28:01 -05002334static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2335 const struct xfrm_migrate *m, int num_migrate,
2336 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002337{
2338 return -ENOPROTOOPT;
2339}
2340#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002341
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002342#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002343
2344static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002345 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002346 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2347 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2348 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2349 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2350 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2351 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002352 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002353 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002354 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002355 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002356 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002357 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002358 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002359 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2360 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002361 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002362 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002363 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002364 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002365 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366};
2367
Thomas Graf492b5582005-05-03 14:26:40 -07002368#undef XMSGSIZE
2369
Thomas Grafcf5cb792007-08-22 13:59:04 -07002370static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002371 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2372 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2373 [XFRMA_LASTUSED] = { .type = NLA_U64},
2374 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002375 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002376 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2377 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2378 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2379 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2380 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2381 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2382 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2383 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2384 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2385 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2386 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2387 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2388 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2389 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002390 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002391 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002392 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002393 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002394 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002395 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002396 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002397};
2398
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002399static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2400 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2401 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2402};
2403
Mathias Krause05600a72013-02-24 14:10:27 +01002404static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002405 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002407 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002408 const struct nla_policy *nla_pol;
2409 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002410} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2411 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2412 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2413 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002414 .dump = xfrm_dump_sa,
2415 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002416 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2417 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2418 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002419 .dump = xfrm_dump_policy,
2420 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002421 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002422 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002423 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002424 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2425 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002426 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002427 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2428 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002429 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2430 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002431 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002432 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002433 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2434 .nla_pol = xfrma_spd_policy,
2435 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002436 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437};
2438
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002439static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002441 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002442 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002443 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002444 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Fan Du74005992015-01-27 17:00:29 +08002446#ifdef CONFIG_COMPAT
2447 if (is_compat_task())
2448 return -ENOTSUPP;
2449#endif
2450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002453 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455 type -= XFRM_MSG_BASE;
2456 link = &xfrm_dispatch[type];
2457
2458 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002459 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002460 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Thomas Graf492b5582005-05-03 14:26:40 -07002462 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2463 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002464 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002466 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002468 {
2469 struct netlink_dump_control c = {
2470 .dump = link->dump,
2471 .done = link->done,
2472 };
2473 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
2476
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002477 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2478 link->nla_max ? : XFRMA_MAX,
2479 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002480 if (err < 0)
2481 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
2483 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002484 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Thomas Graf5424f322007-08-22 14:01:33 -07002486 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002489static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Fan Du283bc9f2013-11-07 17:47:50 +08002491 struct net *net = sock_net(skb->sk);
2492
2493 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002494 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002495 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
Thomas Graf7deb2262007-08-22 13:57:39 -07002498static inline size_t xfrm_expire_msgsize(void)
2499{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002500 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2501 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002502}
2503
David S. Miller214e0052011-02-24 00:02:38 -05002504static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
2506 struct xfrm_user_expire *ue;
2507 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002508 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Eric W. Biederman15e47302012-09-07 20:12:54 +00002510 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002511 if (nlh == NULL)
2512 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Thomas Graf7b67c852007-08-22 13:53:52 -07002514 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002516 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
David S. Miller1d1e34d2012-06-27 21:57:03 -07002518 err = xfrm_mark_put(skb, &x->mark);
2519 if (err)
2520 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002521
Johannes Berg053c0952015-01-16 22:09:00 +01002522 nlmsg_end(skb, nlh);
2523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524}
2525
David S. Miller214e0052011-02-24 00:02:38 -05002526static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002528 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 struct sk_buff *skb;
2530
Thomas Graf7deb2262007-08-22 13:57:39 -07002531 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (skb == NULL)
2533 return -ENOMEM;
2534
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002535 if (build_expire(skb, x, c) < 0) {
2536 kfree_skb(skb);
2537 return -EMSGSIZE;
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Michal Kubecek21ee5432014-06-03 10:26:06 +02002540 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541}
2542
David S. Miller214e0052011-02-24 00:02:38 -05002543static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002544{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002545 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002546 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002547
Steffen Klassertd8647b72011-03-08 00:10:27 +00002548 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002549 if (skb == NULL)
2550 return -ENOMEM;
2551
2552 if (build_aevent(skb, x, c) < 0)
2553 BUG();
2554
Michal Kubecek21ee5432014-06-03 10:26:06 +02002555 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002556}
2557
David S. Miller214e0052011-02-24 00:02:38 -05002558static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002559{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002560 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002561 struct xfrm_usersa_flush *p;
2562 struct nlmsghdr *nlh;
2563 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002564 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002565
Thomas Graf7deb2262007-08-22 13:57:39 -07002566 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002567 if (skb == NULL)
2568 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002569
Eric W. Biederman15e47302012-09-07 20:12:54 +00002570 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002571 if (nlh == NULL) {
2572 kfree_skb(skb);
2573 return -EMSGSIZE;
2574 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002575
Thomas Graf7b67c852007-08-22 13:53:52 -07002576 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002577 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002578
Thomas Graf98250692007-08-22 12:47:26 -07002579 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002580
Michal Kubecek21ee5432014-06-03 10:26:06 +02002581 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002582}
2583
Thomas Graf7deb2262007-08-22 13:57:39 -07002584static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002585{
Thomas Graf7deb2262007-08-22 13:57:39 -07002586 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002587 if (x->aead)
2588 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002589 if (x->aalg) {
2590 l += nla_total_size(sizeof(struct xfrm_algo) +
2591 (x->aalg->alg_key_len + 7) / 8);
2592 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2593 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002594 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002595 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002596 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002597 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002598 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002599 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002600 if (x->tfcpad)
2601 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002602 if (x->replay_esn)
2603 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002604 else
2605 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002606 if (x->security)
2607 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2608 x->security->ctx_len);
2609 if (x->coaddr)
2610 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002611 if (x->props.extra_flags)
2612 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002613
Herbert Xud26f3982007-11-13 21:47:08 -08002614 /* Must count x->lastused as it may become non-zero behind our back. */
2615 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002616
2617 return l;
2618}
2619
David S. Miller214e0052011-02-24 00:02:38 -05002620static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002621{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002622 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002623 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002624 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002625 struct nlmsghdr *nlh;
2626 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002627 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002628 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002629
2630 headlen = sizeof(*p);
2631 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002632 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002633 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002634 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002635 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002636 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002637
Thomas Graf7deb2262007-08-22 13:57:39 -07002638 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002639 if (skb == NULL)
2640 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002641
Eric W. Biederman15e47302012-09-07 20:12:54 +00002642 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002643 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002644 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002645 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002646
Thomas Graf7b67c852007-08-22 13:53:52 -07002647 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002648 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002649 struct nlattr *attr;
2650
Thomas Graf7b67c852007-08-22 13:53:52 -07002651 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002652 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2653 id->spi = x->id.spi;
2654 id->family = x->props.family;
2655 id->proto = x->id.proto;
2656
Thomas Grafc0144be2007-08-22 13:55:43 -07002657 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002658 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002659 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002660 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002661
2662 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002663 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002664 err = copy_to_user_state_extra(x, p, skb);
2665 if (err)
2666 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002667
Thomas Graf98250692007-08-22 12:47:26 -07002668 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002669
Michal Kubecek21ee5432014-06-03 10:26:06 +02002670 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002671
David S. Miller1d1e34d2012-06-27 21:57:03 -07002672out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002673 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002674 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002675}
2676
David S. Miller214e0052011-02-24 00:02:38 -05002677static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002678{
2679
2680 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002681 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002682 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002683 case XFRM_MSG_NEWAE:
2684 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002685 case XFRM_MSG_DELSA:
2686 case XFRM_MSG_UPDSA:
2687 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002688 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002689 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002690 return xfrm_notify_sa_flush(c);
2691 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002692 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2693 c->event);
2694 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002695 }
2696
2697 return 0;
2698
2699}
2700
Thomas Graf7deb2262007-08-22 13:57:39 -07002701static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2702 struct xfrm_policy *xp)
2703{
2704 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2705 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002706 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002707 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2708 + userpolicy_type_attrsize();
2709}
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002712 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002714 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 struct xfrm_user_acquire *ua;
2716 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002717 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002719 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2720 if (nlh == NULL)
2721 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Thomas Graf7b67c852007-08-22 13:53:52 -07002723 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 memcpy(&ua->id, &x->id, sizeof(ua->id));
2725 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2726 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002727 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 ua->aalgos = xt->aalgos;
2729 ua->ealgos = xt->ealgos;
2730 ua->calgos = xt->calgos;
2731 ua->seq = x->km.seq = seq;
2732
David S. Miller1d1e34d2012-06-27 21:57:03 -07002733 err = copy_to_user_tmpl(xp, skb);
2734 if (!err)
2735 err = copy_to_user_state_sec_ctx(x, skb);
2736 if (!err)
2737 err = copy_to_user_policy_type(xp->type, skb);
2738 if (!err)
2739 err = xfrm_mark_put(skb, &xp->mark);
2740 if (err) {
2741 nlmsg_cancel(skb, nlh);
2742 return err;
2743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Johannes Berg053c0952015-01-16 22:09:00 +01002745 nlmsg_end(skb, nlh);
2746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
2749static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002750 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002752 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Thomas Graf7deb2262007-08-22 13:57:39 -07002755 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (skb == NULL)
2757 return -ENOMEM;
2758
Fan Du65e07362012-08-15 10:13:47 +08002759 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 BUG();
2761
Michal Kubecek21ee5432014-06-03 10:26:06 +02002762 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763}
2764
2765/* User gives us xfrm_user_policy_info followed by an array of 0
2766 * or more templates.
2767 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002768static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 u8 *data, int len, int *dir)
2770{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002771 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2773 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2774 struct xfrm_policy *xp;
2775 int nr;
2776
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002777 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 case AF_INET:
2779 if (opt != IP_XFRM_POLICY) {
2780 *dir = -EOPNOTSUPP;
2781 return NULL;
2782 }
2783 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002784#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 case AF_INET6:
2786 if (opt != IPV6_XFRM_POLICY) {
2787 *dir = -EOPNOTSUPP;
2788 return NULL;
2789 }
2790 break;
2791#endif
2792 default:
2793 *dir = -EINVAL;
2794 return NULL;
2795 }
2796
2797 *dir = -EINVAL;
2798
2799 if (len < sizeof(*p) ||
2800 verify_newpolicy_info(p))
2801 return NULL;
2802
2803 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002804 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 return NULL;
2806
Herbert Xua4f1bac2005-07-26 15:43:17 -07002807 if (p->dir > XFRM_POLICY_OUT)
2808 return NULL;
2809
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002810 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (xp == NULL) {
2812 *dir = -ENOBUFS;
2813 return NULL;
2814 }
2815
2816 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002817 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 copy_templates(xp, ut, nr);
2819
2820 *dir = p->dir;
2821
2822 return xp;
2823}
2824
Thomas Graf7deb2262007-08-22 13:57:39 -07002825static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2826{
2827 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2828 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2829 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002830 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002831 + userpolicy_type_attrsize();
2832}
2833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002835 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
2837 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002838 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002839 struct nlmsghdr *nlh;
2840 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Eric W. Biederman15e47302012-09-07 20:12:54 +00002842 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002843 if (nlh == NULL)
2844 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Thomas Graf7b67c852007-08-22 13:53:52 -07002846 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002848 err = copy_to_user_tmpl(xp, skb);
2849 if (!err)
2850 err = copy_to_user_sec_ctx(xp, skb);
2851 if (!err)
2852 err = copy_to_user_policy_type(xp->type, skb);
2853 if (!err)
2854 err = xfrm_mark_put(skb, &xp->mark);
2855 if (err) {
2856 nlmsg_cancel(skb, nlh);
2857 return err;
2858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 upe->hard = !!hard;
2860
Johannes Berg053c0952015-01-16 22:09:00 +01002861 nlmsg_end(skb, nlh);
2862 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863}
2864
David S. Miller214e0052011-02-24 00:02:38 -05002865static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002867 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Thomas Graf7deb2262007-08-22 13:57:39 -07002870 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 if (skb == NULL)
2872 return -ENOMEM;
2873
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002874 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 BUG();
2876
Michal Kubecek21ee5432014-06-03 10:26:06 +02002877 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878}
2879
David S. Miller214e0052011-02-24 00:02:38 -05002880static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002881{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002882 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002883 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002884 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002885 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002886 struct nlmsghdr *nlh;
2887 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002888 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002889
2890 headlen = sizeof(*p);
2891 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002892 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002893 headlen = sizeof(*id);
2894 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002895 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002896 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002897 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002898
Thomas Graf7deb2262007-08-22 13:57:39 -07002899 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002900 if (skb == NULL)
2901 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002902
Eric W. Biederman15e47302012-09-07 20:12:54 +00002903 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002904 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002905 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002906 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002907
Thomas Graf7b67c852007-08-22 13:53:52 -07002908 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002909 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002910 struct nlattr *attr;
2911
Thomas Graf7b67c852007-08-22 13:53:52 -07002912 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002913 memset(id, 0, sizeof(*id));
2914 id->dir = dir;
2915 if (c->data.byid)
2916 id->index = xp->index;
2917 else
2918 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2919
Thomas Grafc0144be2007-08-22 13:55:43 -07002920 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002921 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002922 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002923 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002924
2925 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002926 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002927
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002928 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002929 err = copy_to_user_tmpl(xp, skb);
2930 if (!err)
2931 err = copy_to_user_policy_type(xp->type, skb);
2932 if (!err)
2933 err = xfrm_mark_put(skb, &xp->mark);
2934 if (err)
2935 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002936
Thomas Graf98250692007-08-22 12:47:26 -07002937 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002938
Michal Kubecek21ee5432014-06-03 10:26:06 +02002939 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002940
David S. Miller1d1e34d2012-06-27 21:57:03 -07002941out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002942 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002943 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002944}
2945
David S. Miller214e0052011-02-24 00:02:38 -05002946static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002948 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002949 struct nlmsghdr *nlh;
2950 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002951 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002952
Thomas Graf7deb2262007-08-22 13:57:39 -07002953 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002954 if (skb == NULL)
2955 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002956
Eric W. Biederman15e47302012-09-07 20:12:54 +00002957 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002958 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002959 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002960 goto out_free_skb;
2961 err = copy_to_user_policy_type(c->data.type, skb);
2962 if (err)
2963 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002964
Thomas Graf98250692007-08-22 12:47:26 -07002965 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002966
Michal Kubecek21ee5432014-06-03 10:26:06 +02002967 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002968
David S. Miller1d1e34d2012-06-27 21:57:03 -07002969out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002970 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002971 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002972}
2973
David S. Miller214e0052011-02-24 00:02:38 -05002974static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002975{
2976
2977 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002978 case XFRM_MSG_NEWPOLICY:
2979 case XFRM_MSG_UPDPOLICY:
2980 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002981 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002982 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002983 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002984 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002985 return xfrm_exp_policy_notify(xp, dir, c);
2986 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002987 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2988 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002989 }
2990
2991 return 0;
2992
2993}
2994
Thomas Graf7deb2262007-08-22 13:57:39 -07002995static inline size_t xfrm_report_msgsize(void)
2996{
2997 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2998}
2999
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003000static int build_report(struct sk_buff *skb, u8 proto,
3001 struct xfrm_selector *sel, xfrm_address_t *addr)
3002{
3003 struct xfrm_user_report *ur;
3004 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003005
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003006 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3007 if (nlh == NULL)
3008 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003009
Thomas Graf7b67c852007-08-22 13:53:52 -07003010 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003011 ur->proto = proto;
3012 memcpy(&ur->sel, sel, sizeof(ur->sel));
3013
David S. Miller1d1e34d2012-06-27 21:57:03 -07003014 if (addr) {
3015 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3016 if (err) {
3017 nlmsg_cancel(skb, nlh);
3018 return err;
3019 }
3020 }
Johannes Berg053c0952015-01-16 22:09:00 +01003021 nlmsg_end(skb, nlh);
3022 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003023}
3024
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003025static int xfrm_send_report(struct net *net, u8 proto,
3026 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003027{
3028 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003029
Thomas Graf7deb2262007-08-22 13:57:39 -07003030 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003031 if (skb == NULL)
3032 return -ENOMEM;
3033
3034 if (build_report(skb, proto, sel, addr) < 0)
3035 BUG();
3036
Michal Kubecek21ee5432014-06-03 10:26:06 +02003037 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003038}
3039
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003040static inline size_t xfrm_mapping_msgsize(void)
3041{
3042 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3043}
3044
3045static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3046 xfrm_address_t *new_saddr, __be16 new_sport)
3047{
3048 struct xfrm_user_mapping *um;
3049 struct nlmsghdr *nlh;
3050
3051 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3052 if (nlh == NULL)
3053 return -EMSGSIZE;
3054
3055 um = nlmsg_data(nlh);
3056
3057 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3058 um->id.spi = x->id.spi;
3059 um->id.family = x->props.family;
3060 um->id.proto = x->id.proto;
3061 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3062 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3063 um->new_sport = new_sport;
3064 um->old_sport = x->encap->encap_sport;
3065 um->reqid = x->props.reqid;
3066
Johannes Berg053c0952015-01-16 22:09:00 +01003067 nlmsg_end(skb, nlh);
3068 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003069}
3070
3071static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3072 __be16 sport)
3073{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003074 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003075 struct sk_buff *skb;
3076
3077 if (x->id.proto != IPPROTO_ESP)
3078 return -EINVAL;
3079
3080 if (!x->encap)
3081 return -EINVAL;
3082
3083 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3084 if (skb == NULL)
3085 return -ENOMEM;
3086
3087 if (build_mapping(skb, x, ipaddr, sport) < 0)
3088 BUG();
3089
Michal Kubecek21ee5432014-06-03 10:26:06 +02003090 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003091}
3092
Horia Geanta0f245582014-02-12 16:20:06 +02003093static bool xfrm_is_alive(const struct km_event *c)
3094{
3095 return (bool)xfrm_acquire_is_on(c->net);
3096}
3097
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098static struct xfrm_mgr netlink_mgr = {
3099 .id = "netlink",
3100 .notify = xfrm_send_state_notify,
3101 .acquire = xfrm_send_acquire,
3102 .compile_policy = xfrm_compile_policy,
3103 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003104 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003105 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003106 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003107 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108};
3109
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003110static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111{
Patrick McHardybe336902006-03-20 22:40:54 -08003112 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003113 struct netlink_kernel_cfg cfg = {
3114 .groups = XFRMNLGRP_MAX,
3115 .input = xfrm_netlink_rcv,
3116 };
Patrick McHardybe336902006-03-20 22:40:54 -08003117
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003118 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003119 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003121 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003122 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 return 0;
3124}
3125
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003126static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003127{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003128 struct net *net;
3129 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003130 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003131 synchronize_net();
3132 list_for_each_entry(net, net_exit_list, exit_list)
3133 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003134}
3135
3136static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003137 .init = xfrm_user_net_init,
3138 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003139};
3140
3141static int __init xfrm_user_init(void)
3142{
3143 int rv;
3144
3145 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3146
3147 rv = register_pernet_subsys(&xfrm_user_net_ops);
3148 if (rv < 0)
3149 return rv;
3150 rv = xfrm_register_km(&netlink_mgr);
3151 if (rv < 0)
3152 unregister_pernet_subsys(&xfrm_user_net_ops);
3153 return rv;
3154}
3155
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156static void __exit xfrm_user_exit(void)
3157{
3158 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003159 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
3161
3162module_init(xfrm_user_init);
3163module_exit(xfrm_user_exit);
3164MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003165MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003166