blob: eaf8a8f1cbe872159401e251f7df6ad67367a3df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/socket.h>
19#include <linux/string.h>
20#include <linux/net.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pfkeyv2.h>
23#include <linux/ipsec.h>
24#include <linux/init.h>
25#include <linux/security.h>
26#include <net/sock.h>
27#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Thomas Graf5424f322007-08-22 14:01:33 -070035static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Thomas Graf5424f322007-08-22 14:01:33 -070037 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct xfrm_algo *algp;
39
40 if (!rt)
41 return 0;
42
Thomas Graf5424f322007-08-22 14:01:33 -070043 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080044 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070045 return -EINVAL;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 switch (type) {
48 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 break;
52
53 default:
54 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
58 return 0;
59}
60
Martin Willi4447bb32009-11-25 00:29:52 +000061static int verify_auth_trunc(struct nlattr **attrs)
62{
63 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
64 struct xfrm_algo_auth *algp;
65
66 if (!rt)
67 return 0;
68
69 algp = nla_data(rt);
70 if (nla_len(rt) < xfrm_alg_auth_len(algp))
71 return -EINVAL;
72
73 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
74 return 0;
75}
76
Herbert Xu1a6509d2008-01-28 19:37:29 -080077static int verify_aead(struct nlattr **attrs)
78{
79 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
80 struct xfrm_algo_aead *algp;
81
82 if (!rt)
83 return 0;
84
85 algp = nla_data(rt);
86 if (nla_len(rt) < aead_len(algp))
87 return -EINVAL;
88
89 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
90 return 0;
91}
92
Thomas Graf5424f322007-08-22 14:01:33 -070093static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070094 xfrm_address_t **addrp)
95{
Thomas Graf5424f322007-08-22 14:01:33 -070096 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070097
Thomas Grafcf5cb792007-08-22 13:59:04 -070098 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -070099 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700100}
Trent Jaegerdf718372005-12-13 23:12:27 -0800101
Thomas Graf5424f322007-08-22 14:01:33 -0700102static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800103{
Thomas Graf5424f322007-08-22 14:01:33 -0700104 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800105 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800106
107 if (!rt)
108 return 0;
109
Thomas Graf5424f322007-08-22 14:01:33 -0700110 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700111 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800112 return -EINVAL;
113
114 return 0;
115}
116
Steffen Klassertd8647b72011-03-08 00:10:27 +0000117static inline int verify_replay(struct xfrm_usersa_info *p,
118 struct nlattr **attrs)
119{
120 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000121 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000122
Mathias Krauseecd79182012-09-20 10:01:49 +0000123 if (p->flags & XFRM_STATE_ESN) {
124 if (!rt)
125 return -EINVAL;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
135 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000136
Steffen Klassertd8647b72011-03-08 00:10:27 +0000137 if (!rt)
138 return 0;
139
Fan Du01714102014-01-18 09:54:28 +0800140 /* As only ESP and AH support ESN feature. */
141 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000142 return -EINVAL;
143
Steffen Klassertd8647b72011-03-08 00:10:27 +0000144 if (p->replay_window != 0)
145 return -EINVAL;
146
147 return 0;
148}
Trent Jaegerdf718372005-12-13 23:12:27 -0800149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700151 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 int err;
154
155 err = -EINVAL;
156 switch (p->family) {
157 case AF_INET:
158 break;
159
160 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000161#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
163#else
164 err = -EAFNOSUPPORT;
165 goto out;
166#endif
167
168 default:
169 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 err = -EINVAL;
173 switch (p->id.proto) {
174 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000175 if ((!attrs[XFRMA_ALG_AUTH] &&
176 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800177 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700178 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000179 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200180 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 goto out;
182 break;
183
184 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800185 if (attrs[XFRMA_ALG_COMP])
186 goto out;
187 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000188 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800189 !attrs[XFRMA_ALG_CRYPT] &&
190 !attrs[XFRMA_ALG_AEAD])
191 goto out;
192 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000193 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800194 attrs[XFRMA_ALG_CRYPT]) &&
195 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000197 if (attrs[XFRMA_TFCPAD] &&
198 p->mode != XFRM_MODE_TUNNEL)
199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 break;
201
202 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700203 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800204 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700205 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000206 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000207 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200208 attrs[XFRMA_TFCPAD] ||
209 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto out;
211 break;
212
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000213#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700214 case IPPROTO_DSTOPTS:
215 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700216 if (attrs[XFRMA_ALG_COMP] ||
217 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000218 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800219 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700220 attrs[XFRMA_ALG_CRYPT] ||
221 attrs[XFRMA_ENCAP] ||
222 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000223 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700224 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700225 goto out;
226 break;
227#endif
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 default:
230 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Herbert Xu1a6509d2008-01-28 19:37:29 -0800233 if ((err = verify_aead(attrs)))
234 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000235 if ((err = verify_auth_trunc(attrs)))
236 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700237 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700241 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700243 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800244 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000245 if ((err = verify_replay(p, attrs)))
246 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 err = -EINVAL;
249 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700250 case XFRM_MODE_TRANSPORT:
251 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700252 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700253 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 break;
255
256 default:
257 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 err = 0;
261
262out:
263 return err;
264}
265
266static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800267 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700268 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct xfrm_algo *p, *ualg;
271 struct xfrm_algo_desc *algo;
272
273 if (!rta)
274 return 0;
275
Thomas Graf5424f322007-08-22 14:01:33 -0700276 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 algo = get_byname(ualg->alg_name, 1);
279 if (!algo)
280 return -ENOSYS;
281 *props = algo->desc.sadb_alg_id;
282
Eric Dumazet0f99be02008-01-08 23:39:06 -0800283 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (!p)
285 return -ENOMEM;
286
Herbert Xu04ff1262006-08-13 08:50:00 +1000287 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 *algpp = p;
289 return 0;
290}
291
Martin Willi4447bb32009-11-25 00:29:52 +0000292static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
293 struct nlattr *rta)
294{
295 struct xfrm_algo *ualg;
296 struct xfrm_algo_auth *p;
297 struct xfrm_algo_desc *algo;
298
299 if (!rta)
300 return 0;
301
302 ualg = nla_data(rta);
303
304 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
305 if (!algo)
306 return -ENOSYS;
307 *props = algo->desc.sadb_alg_id;
308
309 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
310 if (!p)
311 return -ENOMEM;
312
313 strcpy(p->alg_name, algo->name);
314 p->alg_key_len = ualg->alg_key_len;
315 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
316 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
317
318 *algpp = p;
319 return 0;
320}
321
322static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
323 struct nlattr *rta)
324{
325 struct xfrm_algo_auth *p, *ualg;
326 struct xfrm_algo_desc *algo;
327
328 if (!rta)
329 return 0;
330
331 ualg = nla_data(rta);
332
333 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
334 if (!algo)
335 return -ENOSYS;
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +0000336 if ((ualg->alg_trunc_len / 8) > MAX_AH_AUTH_LEN ||
337 ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000338 return -EINVAL;
339 *props = algo->desc.sadb_alg_id;
340
341 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
342 if (!p)
343 return -ENOMEM;
344
345 strcpy(p->alg_name, algo->name);
346 if (!p->alg_trunc_len)
347 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
348
349 *algpp = p;
350 return 0;
351}
352
Herbert Xu1a6509d2008-01-28 19:37:29 -0800353static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
354 struct nlattr *rta)
355{
356 struct xfrm_algo_aead *p, *ualg;
357 struct xfrm_algo_desc *algo;
358
359 if (!rta)
360 return 0;
361
362 ualg = nla_data(rta);
363
364 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
365 if (!algo)
366 return -ENOSYS;
367 *props = algo->desc.sadb_alg_id;
368
369 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
370 if (!p)
371 return -ENOMEM;
372
373 strcpy(p->alg_name, algo->name);
374 *algpp = p;
375 return 0;
376}
377
Steffen Klasserte2b19122011-03-28 19:47:30 +0000378static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
379 struct nlattr *rp)
380{
381 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000382 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000383
384 if (!replay_esn || !rp)
385 return 0;
386
387 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000388 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000389
Mathias Krauseecd79182012-09-20 10:01:49 +0000390 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000391 return -EINVAL;
392
393 return 0;
394}
395
Steffen Klassertd8647b72011-03-08 00:10:27 +0000396static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
397 struct xfrm_replay_state_esn **preplay_esn,
398 struct nlattr *rta)
399{
400 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000401 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000402
403 if (!rta)
404 return 0;
405
406 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000407 klen = xfrm_replay_state_esn_len(up);
408 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000409
Mathias Krauseecd79182012-09-20 10:01:49 +0000410 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000411 if (!p)
412 return -ENOMEM;
413
Mathias Krauseecd79182012-09-20 10:01:49 +0000414 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000415 if (!pp) {
416 kfree(p);
417 return -ENOMEM;
418 }
419
Mathias Krauseecd79182012-09-20 10:01:49 +0000420 memcpy(p, up, ulen);
421 memcpy(pp, up, ulen);
422
Steffen Klassertd8647b72011-03-08 00:10:27 +0000423 *replay_esn = p;
424 *preplay_esn = pp;
425
426 return 0;
427}
428
Joy Latten661697f2007-04-13 16:14:35 -0700429static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800430{
Trent Jaegerdf718372005-12-13 23:12:27 -0800431 int len = 0;
432
433 if (xfrm_ctx) {
434 len += sizeof(struct xfrm_user_sec_ctx);
435 len += xfrm_ctx->ctx_len;
436 }
437 return len;
438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
441{
442 memcpy(&x->id, &p->id, sizeof(x->id));
443 memcpy(&x->sel, &p->sel, sizeof(x->sel));
444 memcpy(&x->lft, &p->lft, sizeof(x->lft));
445 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800446 x->props.replay_window = min_t(unsigned int, p->replay_window,
447 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 x->props.reqid = p->reqid;
449 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700450 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700452
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700453 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700454 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800457/*
458 * someday when pfkey also has support, we could have the code
459 * somehow made shareable and move it to xfrm_state.c - JHS
460 *
461*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000462static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
463 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800464{
Thomas Graf5424f322007-08-22 14:01:33 -0700465 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000466 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700467 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
468 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
469 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800470
Steffen Klassertd8647b72011-03-08 00:10:27 +0000471 if (re) {
472 struct xfrm_replay_state_esn *replay_esn;
473 replay_esn = nla_data(re);
474 memcpy(x->replay_esn, replay_esn,
475 xfrm_replay_state_esn_len(replay_esn));
476 memcpy(x->preplay_esn, replay_esn,
477 xfrm_replay_state_esn_len(replay_esn));
478 }
479
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800480 if (rp) {
481 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700482 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800483 memcpy(&x->replay, replay, sizeof(*replay));
484 memcpy(&x->preplay, replay, sizeof(*replay));
485 }
486
487 if (lt) {
488 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700489 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800490 x->curlft.bytes = ltime->bytes;
491 x->curlft.packets = ltime->packets;
492 x->curlft.add_time = ltime->add_time;
493 x->curlft.use_time = ltime->use_time;
494 }
495
Thomas Grafcf5cb792007-08-22 13:59:04 -0700496 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700497 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800498
Thomas Grafcf5cb792007-08-22 13:59:04 -0700499 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700500 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800501}
502
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800503static struct xfrm_state *xfrm_state_construct(struct net *net,
504 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700505 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 int *errp)
507{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800508 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 int err = -ENOMEM;
510
511 if (!x)
512 goto error_no_put;
513
514 copy_from_user_state(x, p);
515
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100516 if (attrs[XFRMA_SA_EXTRA_FLAGS])
517 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
518
Herbert Xu1a6509d2008-01-28 19:37:29 -0800519 if ((err = attach_aead(&x->aead, &x->props.ealgo,
520 attrs[XFRMA_ALG_AEAD])))
521 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000522 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
523 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000525 if (!x->props.aalgo) {
526 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
527 attrs[XFRMA_ALG_AUTH])))
528 goto error;
529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
531 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700532 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 goto error;
534 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
535 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700536 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700538
539 if (attrs[XFRMA_ENCAP]) {
540 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
541 sizeof(*x->encap), GFP_KERNEL);
542 if (x->encap == NULL)
543 goto error;
544 }
545
Martin Willi35d28562010-12-08 04:37:49 +0000546 if (attrs[XFRMA_TFCPAD])
547 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
548
Thomas Graffd211502007-09-06 03:28:08 -0700549 if (attrs[XFRMA_COADDR]) {
550 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
551 sizeof(*x->coaddr), GFP_KERNEL);
552 if (x->coaddr == NULL)
553 goto error;
554 }
555
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000556 xfrm_mark_get(attrs, &x->mark);
557
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700558 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (err)
560 goto error;
561
Thomas Graffd211502007-09-06 03:28:08 -0700562 if (attrs[XFRMA_SEC_CTX] &&
563 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800564 goto error;
565
Steffen Klassertd8647b72011-03-08 00:10:27 +0000566 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
567 attrs[XFRMA_REPLAY_ESN_VAL])))
568 goto error;
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800571 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800572 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800573 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800574
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000575 if ((err = xfrm_init_replay(x)))
576 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800577
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000578 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000579 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 return x;
582
583error:
584 x->km.state = XFRM_STATE_DEAD;
585 xfrm_state_put(x);
586error_no_put:
587 *errp = err;
588 return NULL;
589}
590
Christoph Hellwig22e70052007-01-02 15:22:30 -0800591static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700592 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800594 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700595 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct xfrm_state *x;
597 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700598 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Thomas Graf35a7aa02007-08-22 14:00:40 -0700600 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (err)
602 return err;
603
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800604 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (!x)
606 return err;
607
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700608 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
610 err = xfrm_state_add(x);
611 else
612 err = xfrm_state_update(x);
613
Tetsuo Handa2e710292014-04-22 21:48:30 +0900614 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (err < 0) {
617 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800618 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700619 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700622 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000623 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700624 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700625
626 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700627out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700628 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return err;
630}
631
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800632static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
633 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700634 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700635 int *errp)
636{
637 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000638 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700639 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000640 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700641
642 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
643 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000644 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700645 } else {
646 xfrm_address_t *saddr = NULL;
647
Thomas Graf35a7aa02007-08-22 14:00:40 -0700648 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700649 if (!saddr) {
650 err = -EINVAL;
651 goto out;
652 }
653
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800654 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000655 x = xfrm_state_lookup_byaddr(net, mark,
656 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800657 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700658 }
659
660 out:
661 if (!x && errp)
662 *errp = err;
663 return x;
664}
665
Christoph Hellwig22e70052007-01-02 15:22:30 -0800666static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700667 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800669 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700671 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700672 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700673 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800675 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700677 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
David S. Miller6f68dc32006-06-08 23:58:52 -0700679 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700680 goto out;
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700683 err = -EPERM;
684 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700687 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600688
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700689 if (err < 0)
690 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700691
692 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000693 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700694 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700695 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700697out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900698 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700699 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700700 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
704{
Mathias Krausef778a632012-09-19 11:33:39 +0000705 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 memcpy(&p->id, &x->id, sizeof(p->id));
707 memcpy(&p->sel, &x->sel, sizeof(p->sel));
708 memcpy(&p->lft, &x->lft, sizeof(p->lft));
709 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
710 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700711 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 p->mode = x->props.mode;
713 p->replay_window = x->props.replay_window;
714 p->reqid = x->props.reqid;
715 p->family = x->props.family;
716 p->flags = x->props.flags;
717 p->seq = x->km.seq;
718}
719
720struct xfrm_dump_info {
721 struct sk_buff *in_skb;
722 struct sk_buff *out_skb;
723 u32 nlmsg_seq;
724 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725};
726
Thomas Grafc0144be2007-08-22 13:55:43 -0700727static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
728{
Thomas Grafc0144be2007-08-22 13:55:43 -0700729 struct xfrm_user_sec_ctx *uctx;
730 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700731 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700732
733 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
734 if (attr == NULL)
735 return -EMSGSIZE;
736
737 uctx = nla_data(attr);
738 uctx->exttype = XFRMA_SEC_CTX;
739 uctx->len = ctx_size;
740 uctx->ctx_doi = s->ctx_doi;
741 uctx->ctx_alg = s->ctx_alg;
742 uctx->ctx_len = s->ctx_len;
743 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
744
745 return 0;
746}
747
Martin Willi4447bb32009-11-25 00:29:52 +0000748static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
749{
750 struct xfrm_algo *algo;
751 struct nlattr *nla;
752
753 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
754 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
755 if (!nla)
756 return -EMSGSIZE;
757
758 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000759 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000760 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
761 algo->alg_key_len = auth->alg_key_len;
762
763 return 0;
764}
765
Herbert Xu68325d32007-10-09 13:30:57 -0700766/* Don't change this without updating xfrm_sa_len! */
767static int copy_to_user_state_extra(struct xfrm_state *x,
768 struct xfrm_usersa_info *p,
769 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700771 int ret = 0;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 copy_to_user_state(x, p);
774
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100775 if (x->props.extra_flags) {
776 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
777 x->props.extra_flags);
778 if (ret)
779 goto out;
780 }
781
David S. Miller1d1e34d2012-06-27 21:57:03 -0700782 if (x->coaddr) {
783 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
784 if (ret)
785 goto out;
786 }
787 if (x->lastused) {
788 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
789 if (ret)
790 goto out;
791 }
792 if (x->aead) {
793 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
794 if (ret)
795 goto out;
796 }
797 if (x->aalg) {
798 ret = copy_to_user_auth(x->aalg, skb);
799 if (!ret)
800 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
801 xfrm_alg_auth_len(x->aalg), x->aalg);
802 if (ret)
803 goto out;
804 }
805 if (x->ealg) {
806 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
807 if (ret)
808 goto out;
809 }
810 if (x->calg) {
811 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
812 if (ret)
813 goto out;
814 }
815 if (x->encap) {
816 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
817 if (ret)
818 goto out;
819 }
820 if (x->tfcpad) {
821 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
822 if (ret)
823 goto out;
824 }
825 ret = xfrm_mark_put(skb, &x->mark);
826 if (ret)
827 goto out;
828 if (x->replay_esn) {
829 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
830 xfrm_replay_state_esn_len(x->replay_esn),
831 x->replay_esn);
832 if (ret)
833 goto out;
834 }
835 if (x->security)
836 ret = copy_sec_ctx(x->security, skb);
837out:
838 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700839}
840
841static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
842{
843 struct xfrm_dump_info *sp = ptr;
844 struct sk_buff *in_skb = sp->in_skb;
845 struct sk_buff *skb = sp->out_skb;
846 struct xfrm_usersa_info *p;
847 struct nlmsghdr *nlh;
848 int err;
849
Eric W. Biederman15e47302012-09-07 20:12:54 +0000850 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700851 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
852 if (nlh == NULL)
853 return -EMSGSIZE;
854
855 p = nlmsg_data(nlh);
856
857 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700858 if (err) {
859 nlmsg_cancel(skb, nlh);
860 return err;
861 }
Thomas Graf98250692007-08-22 12:47:26 -0700862 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Timo Teras4c563f72008-02-28 21:31:08 -0800866static int xfrm_dump_sa_done(struct netlink_callback *cb)
867{
868 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800869 struct sock *sk = cb->skb->sk;
870 struct net *net = sock_net(sk);
871
872 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800873 return 0;
874}
875
Nicolas Dichteld3623092014-02-14 15:30:36 +0100876static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
878{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800879 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800880 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct xfrm_dump_info info;
882
Timo Teras4c563f72008-02-28 21:31:08 -0800883 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
884 sizeof(cb->args) - sizeof(cb->args[0]));
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 info.in_skb = cb->skb;
887 info.out_skb = skb;
888 info.nlmsg_seq = cb->nlh->nlmsg_seq;
889 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800890
891 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100892 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100893 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100894 u8 proto = 0;
895 int err;
896
Timo Teras4c563f72008-02-28 21:31:08 -0800897 cb->args[0] = 1;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100898
899 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
900 xfrma_policy);
901 if (err < 0)
902 return err;
903
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100904 if (attrs[XFRMA_ADDRESS_FILTER]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100905 filter = kmalloc(sizeof(*filter), GFP_KERNEL);
906 if (filter == NULL)
907 return -ENOMEM;
908
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100909 memcpy(filter, nla_data(attrs[XFRMA_ADDRESS_FILTER]),
Nicolas Dichteld3623092014-02-14 15:30:36 +0100910 sizeof(*filter));
911 }
912
913 if (attrs[XFRMA_PROTO])
914 proto = nla_get_u8(attrs[XFRMA_PROTO]);
915
916 xfrm_state_walk_init(walk, proto, filter);
Timo Teras4c563f72008-02-28 21:31:08 -0800917 }
918
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800919 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 return skb->len;
922}
923
924static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
925 struct xfrm_state *x, u32 seq)
926{
927 struct xfrm_dump_info info;
928 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000929 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Thomas Graf7deb2262007-08-22 13:57:39 -0700931 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (!skb)
933 return ERR_PTR(-ENOMEM);
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 info.in_skb = in_skb;
936 info.out_skb = skb;
937 info.nlmsg_seq = seq;
938 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Mathias Krause864745d2012-09-13 11:41:26 +0000940 err = dump_one_state(x, 0, &info);
941 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000943 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
946 return skb;
947}
948
Michal Kubecek21ee5432014-06-03 10:26:06 +0200949/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
950 * Must be called with RCU read lock.
951 */
952static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
953 u32 pid, unsigned int group)
954{
955 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
956
957 if (nlsk)
958 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
959 else
960 return -1;
961}
962
Thomas Graf7deb2262007-08-22 13:57:39 -0700963static inline size_t xfrm_spdinfo_msgsize(void)
964{
965 return NLMSG_ALIGN(4)
966 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200967 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
968 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
969 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -0700970}
971
Alexey Dobriyane0710412010-01-23 13:37:10 +0000972static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000973 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700974{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700975 struct xfrmk_spdinfo si;
976 struct xfrmu_spdinfo spc;
977 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200978 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700979 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700980 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700981 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200982 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700983
Eric W. Biederman15e47302012-09-07 20:12:54 +0000984 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300985 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700986 return -EMSGSIZE;
987
988 f = nlmsg_data(nlh);
989 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000990 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700991 spc.incnt = si.incnt;
992 spc.outcnt = si.outcnt;
993 spc.fwdcnt = si.fwdcnt;
994 spc.inscnt = si.inscnt;
995 spc.outscnt = si.outscnt;
996 spc.fwdscnt = si.fwdscnt;
997 sph.spdhcnt = si.spdhcnt;
998 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700999
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001000 do {
1001 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1002
1003 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1004 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1005 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1006 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1007 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1008
David S. Miller1d1e34d2012-06-27 21:57:03 -07001009 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1010 if (!err)
1011 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001012 if (!err)
1013 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1014 if (!err)
1015 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001016 if (err) {
1017 nlmsg_cancel(skb, nlh);
1018 return err;
1019 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001020
1021 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001022}
1023
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001024static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1025 struct nlattr **attrs)
1026{
1027 struct net *net = sock_net(skb->sk);
1028 struct xfrmu_spdhthresh *thresh4 = NULL;
1029 struct xfrmu_spdhthresh *thresh6 = NULL;
1030
1031 /* selector prefixlen thresholds to hash policies */
1032 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1033 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1034
1035 if (nla_len(rta) < sizeof(*thresh4))
1036 return -EINVAL;
1037 thresh4 = nla_data(rta);
1038 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1039 return -EINVAL;
1040 }
1041 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1042 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1043
1044 if (nla_len(rta) < sizeof(*thresh6))
1045 return -EINVAL;
1046 thresh6 = nla_data(rta);
1047 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1048 return -EINVAL;
1049 }
1050
1051 if (thresh4 || thresh6) {
1052 write_seqlock(&net->xfrm.policy_hthresh.lock);
1053 if (thresh4) {
1054 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1055 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1056 }
1057 if (thresh6) {
1058 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1059 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1060 }
1061 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1062
1063 xfrm_policy_hash_rebuild(net);
1064 }
1065
1066 return 0;
1067}
1068
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001069static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001070 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001071{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001072 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001073 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001074 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001075 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001076 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001077
Thomas Graf7deb2262007-08-22 13:57:39 -07001078 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001079 if (r_skb == NULL)
1080 return -ENOMEM;
1081
Eric W. Biederman15e47302012-09-07 20:12:54 +00001082 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001083 BUG();
1084
Eric W. Biederman15e47302012-09-07 20:12:54 +00001085 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001086}
1087
Thomas Graf7deb2262007-08-22 13:57:39 -07001088static inline size_t xfrm_sadinfo_msgsize(void)
1089{
1090 return NLMSG_ALIGN(4)
1091 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1092 + nla_total_size(4); /* XFRMA_SAD_CNT */
1093}
1094
Alexey Dobriyane0710412010-01-23 13:37:10 +00001095static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001096 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001097{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001098 struct xfrmk_sadinfo si;
1099 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001100 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001101 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001102 u32 *f;
1103
Eric W. Biederman15e47302012-09-07 20:12:54 +00001104 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001105 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001106 return -EMSGSIZE;
1107
1108 f = nlmsg_data(nlh);
1109 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001110 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001111
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001112 sh.sadhmcnt = si.sadhmcnt;
1113 sh.sadhcnt = si.sadhcnt;
1114
David S. Miller1d1e34d2012-06-27 21:57:03 -07001115 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1116 if (!err)
1117 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1118 if (err) {
1119 nlmsg_cancel(skb, nlh);
1120 return err;
1121 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001122
1123 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001124}
1125
1126static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001127 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001128{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001129 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001130 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001131 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001132 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001133 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001134
Thomas Graf7deb2262007-08-22 13:57:39 -07001135 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001136 if (r_skb == NULL)
1137 return -ENOMEM;
1138
Eric W. Biederman15e47302012-09-07 20:12:54 +00001139 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001140 BUG();
1141
Eric W. Biederman15e47302012-09-07 20:12:54 +00001142 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001143}
1144
Christoph Hellwig22e70052007-01-02 15:22:30 -08001145static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001146 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001148 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001149 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 struct xfrm_state *x;
1151 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001152 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001154 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (x == NULL)
1156 goto out_noput;
1157
1158 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1159 if (IS_ERR(resp_skb)) {
1160 err = PTR_ERR(resp_skb);
1161 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001162 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 xfrm_state_put(x);
1165out_noput:
1166 return err;
1167}
1168
Christoph Hellwig22e70052007-01-02 15:22:30 -08001169static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001170 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001172 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 struct xfrm_state *x;
1174 struct xfrm_userspi_info *p;
1175 struct sk_buff *resp_skb;
1176 xfrm_address_t *daddr;
1177 int family;
1178 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001179 u32 mark;
1180 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Thomas Graf7b67c852007-08-22 13:53:52 -07001182 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001183 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (err)
1185 goto out_noput;
1186
1187 family = p->info.family;
1188 daddr = &p->info.id.daddr;
1189
1190 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001191
1192 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001194 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001195 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 xfrm_state_put(x);
1197 x = NULL;
1198 }
1199 }
1200
1201 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001202 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 p->info.id.proto, daddr,
1204 &p->info.saddr, 1,
1205 family);
1206 err = -ENOENT;
1207 if (x == NULL)
1208 goto out_noput;
1209
Herbert Xu658b2192007-10-09 13:29:52 -07001210 err = xfrm_alloc_spi(x, p->min, p->max);
1211 if (err)
1212 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Herbert Xu658b2192007-10-09 13:29:52 -07001214 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (IS_ERR(resp_skb)) {
1216 err = PTR_ERR(resp_skb);
1217 goto out;
1218 }
1219
Eric W. Biederman15e47302012-09-07 20:12:54 +00001220 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222out:
1223 xfrm_state_put(x);
1224out_noput:
1225 return err;
1226}
1227
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001228static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 switch (dir) {
1231 case XFRM_POLICY_IN:
1232 case XFRM_POLICY_OUT:
1233 case XFRM_POLICY_FWD:
1234 break;
1235
1236 default:
1237 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 return 0;
1241}
1242
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001243static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001244{
1245 switch (type) {
1246 case XFRM_POLICY_TYPE_MAIN:
1247#ifdef CONFIG_XFRM_SUB_POLICY
1248 case XFRM_POLICY_TYPE_SUB:
1249#endif
1250 break;
1251
1252 default:
1253 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001254 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001255
1256 return 0;
1257}
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1260{
Fan Due682adf2013-11-07 17:47:48 +08001261 int ret;
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 switch (p->share) {
1264 case XFRM_SHARE_ANY:
1265 case XFRM_SHARE_SESSION:
1266 case XFRM_SHARE_USER:
1267 case XFRM_SHARE_UNIQUE:
1268 break;
1269
1270 default:
1271 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 switch (p->action) {
1275 case XFRM_POLICY_ALLOW:
1276 case XFRM_POLICY_BLOCK:
1277 break;
1278
1279 default:
1280 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 switch (p->sel.family) {
1284 case AF_INET:
1285 break;
1286
1287 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001288#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 break;
1290#else
1291 return -EAFNOSUPPORT;
1292#endif
1293
1294 default:
1295 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Fan Due682adf2013-11-07 17:47:48 +08001298 ret = verify_policy_dir(p->dir);
1299 if (ret)
1300 return ret;
1301 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1302 return -EINVAL;
1303
1304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
Thomas Graf5424f322007-08-22 14:01:33 -07001307static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001308{
Thomas Graf5424f322007-08-22 14:01:33 -07001309 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001310 struct xfrm_user_sec_ctx *uctx;
1311
1312 if (!rt)
1313 return 0;
1314
Thomas Graf5424f322007-08-22 14:01:33 -07001315 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001316 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001317}
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1320 int nr)
1321{
1322 int i;
1323
1324 xp->xfrm_nr = nr;
1325 for (i = 0; i < nr; i++, ut++) {
1326 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1327
1328 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1329 memcpy(&t->saddr, &ut->saddr,
1330 sizeof(xfrm_address_t));
1331 t->reqid = ut->reqid;
1332 t->mode = ut->mode;
1333 t->share = ut->share;
1334 t->optional = ut->optional;
1335 t->aalgos = ut->aalgos;
1336 t->ealgos = ut->ealgos;
1337 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001338 /* If all masks are ~0, then we allow all algorithms. */
1339 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001340 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342}
1343
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001344static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1345{
1346 int i;
1347
1348 if (nr > XFRM_MAX_DEPTH)
1349 return -EINVAL;
1350
1351 for (i = 0; i < nr; i++) {
1352 /* We never validated the ut->family value, so many
1353 * applications simply leave it at zero. The check was
1354 * never made and ut->family was ignored because all
1355 * templates could be assumed to have the same family as
1356 * the policy itself. Now that we will have ipv4-in-ipv6
1357 * and ipv6-in-ipv4 tunnels, this is no longer true.
1358 */
1359 if (!ut[i].family)
1360 ut[i].family = family;
1361
1362 switch (ut[i].family) {
1363 case AF_INET:
1364 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001365#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001366 case AF_INET6:
1367 break;
1368#endif
1369 default:
1370 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001371 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001372 }
1373
1374 return 0;
1375}
1376
Thomas Graf5424f322007-08-22 14:01:33 -07001377static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Thomas Graf5424f322007-08-22 14:01:33 -07001379 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 if (!rt) {
1382 pol->xfrm_nr = 0;
1383 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001384 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1385 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001386 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001388 err = validate_tmpl(nr, utmpl, pol->family);
1389 if (err)
1390 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Thomas Graf5424f322007-08-22 14:01:33 -07001392 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394 return 0;
1395}
1396
Thomas Graf5424f322007-08-22 14:01:33 -07001397static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001398{
Thomas Graf5424f322007-08-22 14:01:33 -07001399 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001400 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001401 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001402 int err;
1403
1404 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001405 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001406 type = upt->type;
1407 }
1408
1409 err = verify_policy_type(type);
1410 if (err)
1411 return err;
1412
1413 *tp = type;
1414 return 0;
1415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1418{
1419 xp->priority = p->priority;
1420 xp->index = p->index;
1421 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1422 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1423 xp->action = p->action;
1424 xp->flags = p->flags;
1425 xp->family = p->sel.family;
1426 /* XXX xp->share = p->share; */
1427}
1428
1429static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1430{
Mathias Krause7b789832012-09-19 11:33:40 +00001431 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1433 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1434 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1435 p->priority = xp->priority;
1436 p->index = xp->index;
1437 p->sel.family = xp->family;
1438 p->dir = dir;
1439 p->action = xp->action;
1440 p->flags = xp->flags;
1441 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1442}
1443
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001444static 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 -07001445{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001446 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 int err;
1448
1449 if (!xp) {
1450 *errp = -ENOMEM;
1451 return NULL;
1452 }
1453
1454 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001455
Thomas Graf35a7aa02007-08-22 14:00:40 -07001456 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001457 if (err)
1458 goto error;
1459
Thomas Graf35a7aa02007-08-22 14:00:40 -07001460 if (!(err = copy_from_user_tmpl(xp, attrs)))
1461 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001462 if (err)
1463 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001465 xfrm_mark_get(attrs, &xp->mark);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001468 error:
1469 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001470 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001471 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001472 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
1474
Christoph Hellwig22e70052007-01-02 15:22:30 -08001475static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001476 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001478 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001479 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001481 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 int err;
1483 int excl;
1484
1485 err = verify_newpolicy_info(p);
1486 if (err)
1487 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001488 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001489 if (err)
1490 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001492 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (!xp)
1494 return err;
1495
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001496 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001497 * Aha! this is anti-netlink really i.e more pfkey derived
1498 * in netlink excl is a flag and you wouldnt need
1499 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1501 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001502 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001505 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 kfree(xp);
1507 return err;
1508 }
1509
Herbert Xuf60f6b82005-06-18 22:44:37 -07001510 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001511 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001512 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001513 km_policy_notify(xp, p->dir, &c);
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 xfrm_pol_put(xp);
1516
1517 return 0;
1518}
1519
1520static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1521{
1522 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1523 int i;
1524
1525 if (xp->xfrm_nr == 0)
1526 return 0;
1527
1528 for (i = 0; i < xp->xfrm_nr; i++) {
1529 struct xfrm_user_tmpl *up = &vec[i];
1530 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1531
Mathias Krause1f868402012-09-19 11:33:41 +00001532 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001534 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1536 up->reqid = kp->reqid;
1537 up->mode = kp->mode;
1538 up->share = kp->share;
1539 up->optional = kp->optional;
1540 up->aalgos = kp->aalgos;
1541 up->ealgos = kp->ealgos;
1542 up->calgos = kp->calgos;
1543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Thomas Grafc0144be2007-08-22 13:55:43 -07001545 return nla_put(skb, XFRMA_TMPL,
1546 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001547}
1548
Serge Hallyn0d681622006-07-24 23:30:44 -07001549static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1550{
1551 if (x->security) {
1552 return copy_sec_ctx(x->security, skb);
1553 }
1554 return 0;
1555}
1556
1557static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1558{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001559 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001560 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001561 return 0;
1562}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001563static inline size_t userpolicy_type_attrsize(void)
1564{
1565#ifdef CONFIG_XFRM_SUB_POLICY
1566 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1567#else
1568 return 0;
1569#endif
1570}
Serge Hallyn0d681622006-07-24 23:30:44 -07001571
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001572#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001573static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001574{
Thomas Grafc0144be2007-08-22 13:55:43 -07001575 struct xfrm_userpolicy_type upt = {
1576 .type = type,
1577 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001578
Thomas Grafc0144be2007-08-22 13:55:43 -07001579 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001580}
1581
1582#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001583static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001584{
1585 return 0;
1586}
1587#endif
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1590{
1591 struct xfrm_dump_info *sp = ptr;
1592 struct xfrm_userpolicy_info *p;
1593 struct sk_buff *in_skb = sp->in_skb;
1594 struct sk_buff *skb = sp->out_skb;
1595 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001596 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Eric W. Biederman15e47302012-09-07 20:12:54 +00001598 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001599 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1600 if (nlh == NULL)
1601 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Thomas Graf7b67c852007-08-22 13:53:52 -07001603 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001605 err = copy_to_user_tmpl(xp, skb);
1606 if (!err)
1607 err = copy_to_user_sec_ctx(xp, skb);
1608 if (!err)
1609 err = copy_to_user_policy_type(xp->type, skb);
1610 if (!err)
1611 err = xfrm_mark_put(skb, &xp->mark);
1612 if (err) {
1613 nlmsg_cancel(skb, nlh);
1614 return err;
1615 }
Thomas Graf98250692007-08-22 12:47:26 -07001616 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Timo Teras4c563f72008-02-28 21:31:08 -08001620static int xfrm_dump_policy_done(struct netlink_callback *cb)
1621{
1622 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001623 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001624
Fan Du283bc9f2013-11-07 17:47:50 +08001625 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001626 return 0;
1627}
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1630{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001631 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001632 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 struct xfrm_dump_info info;
1634
Timo Teras4c563f72008-02-28 21:31:08 -08001635 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1636 sizeof(cb->args) - sizeof(cb->args[0]));
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 info.in_skb = cb->skb;
1639 info.out_skb = skb;
1640 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1641 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001642
1643 if (!cb->args[0]) {
1644 cb->args[0] = 1;
1645 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1646 }
1647
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001648 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 return skb->len;
1651}
1652
1653static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1654 struct xfrm_policy *xp,
1655 int dir, u32 seq)
1656{
1657 struct xfrm_dump_info info;
1658 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001659 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Thomas Graf7deb2262007-08-22 13:57:39 -07001661 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (!skb)
1663 return ERR_PTR(-ENOMEM);
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 info.in_skb = in_skb;
1666 info.out_skb = skb;
1667 info.nlmsg_seq = seq;
1668 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Mathias Krausec2546372012-09-14 09:58:32 +00001670 err = dump_one_policy(xp, dir, 0, &info);
1671 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001673 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675
1676 return skb;
1677}
1678
Christoph Hellwig22e70052007-01-02 15:22:30 -08001679static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001680 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001682 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 struct xfrm_policy *xp;
1684 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001685 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001687 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001689 struct xfrm_mark m;
1690 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Thomas Graf7b67c852007-08-22 13:53:52 -07001692 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1694
Thomas Graf35a7aa02007-08-22 14:00:40 -07001695 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001696 if (err)
1697 return err;
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 err = verify_policy_dir(p->dir);
1700 if (err)
1701 return err;
1702
1703 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001704 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001705 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001706 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001707 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001708
Thomas Graf35a7aa02007-08-22 14:00:40 -07001709 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001710 if (err)
1711 return err;
1712
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001713 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001714 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001715 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001716
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001717 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001718 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001719 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001720 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001721 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001722 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001723 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (xp == NULL)
1726 return -ENOENT;
1727
1728 if (!delete) {
1729 struct sk_buff *resp_skb;
1730
1731 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1732 if (IS_ERR(resp_skb)) {
1733 err = PTR_ERR(resp_skb);
1734 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001735 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001736 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001738 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001739 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001740
1741 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001742 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001743
Herbert Xue7443892005-06-18 22:44:18 -07001744 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001745 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001746 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001747 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001748 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001751out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001752 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001753 if (delete && err == 0)
1754 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return err;
1756}
1757
Christoph Hellwig22e70052007-01-02 15:22:30 -08001758static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001759 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001761 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001762 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001763 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001764 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Tetsuo Handa2e710292014-04-22 21:48:30 +09001766 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001767 if (err) {
1768 if (err == -ESRCH) /* empty table */
1769 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001770 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001771 }
Herbert Xubf088672005-06-18 22:44:00 -07001772 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001773 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001774 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001775 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001776 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001777 km_state_notify(NULL, &c);
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return 0;
1780}
1781
Steffen Klassertd8647b72011-03-08 00:10:27 +00001782static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001783{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001784 size_t replay_size = x->replay_esn ?
1785 xfrm_replay_state_esn_len(x->replay_esn) :
1786 sizeof(struct xfrm_replay_state);
1787
Thomas Graf7deb2262007-08-22 13:57:39 -07001788 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001789 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001790 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001791 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001792 + nla_total_size(4) /* XFRM_AE_RTHR */
1793 + nla_total_size(4); /* XFRM_AE_ETHR */
1794}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001795
David S. Miller214e0052011-02-24 00:02:38 -05001796static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001797{
1798 struct xfrm_aevent_id *id;
1799 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001800 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001801
Eric W. Biederman15e47302012-09-07 20:12:54 +00001802 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001803 if (nlh == NULL)
1804 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001805
Thomas Graf7b67c852007-08-22 13:53:52 -07001806 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001807 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001808 id->sa_id.spi = x->id.spi;
1809 id->sa_id.family = x->props.family;
1810 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001811 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001812 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001813 id->flags = c->data.aevent;
1814
David S. Millerd0fde792012-03-29 04:02:26 -04001815 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001816 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1817 xfrm_replay_state_esn_len(x->replay_esn),
1818 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001819 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001820 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1821 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001822 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001823 if (err)
1824 goto out_cancel;
1825 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1826 if (err)
1827 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001828
David S. Miller1d1e34d2012-06-27 21:57:03 -07001829 if (id->flags & XFRM_AE_RTHR) {
1830 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1831 if (err)
1832 goto out_cancel;
1833 }
1834 if (id->flags & XFRM_AE_ETHR) {
1835 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1836 x->replay_maxage * 10 / HZ);
1837 if (err)
1838 goto out_cancel;
1839 }
1840 err = xfrm_mark_put(skb, &x->mark);
1841 if (err)
1842 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001843
Thomas Graf98250692007-08-22 12:47:26 -07001844 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001845
David S. Miller1d1e34d2012-06-27 21:57:03 -07001846out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001847 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001848 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001849}
1850
Christoph Hellwig22e70052007-01-02 15:22:30 -08001851static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001852 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001853{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001854 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001855 struct xfrm_state *x;
1856 struct sk_buff *r_skb;
1857 int err;
1858 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001859 u32 mark;
1860 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001861 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001862 struct xfrm_usersa_id *id = &p->sa_id;
1863
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001864 mark = xfrm_mark_get(attrs, &m);
1865
1866 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001867 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001868 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001869
1870 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1871 if (r_skb == NULL) {
1872 xfrm_state_put(x);
1873 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001874 }
1875
1876 /*
1877 * XXX: is this lock really needed - none of the other
1878 * gets lock (the concern is things getting updated
1879 * while we are still reading) - jhs
1880 */
1881 spin_lock_bh(&x->lock);
1882 c.data.aevent = p->flags;
1883 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001884 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001885
1886 if (build_aevent(r_skb, x, &c) < 0)
1887 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001888 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001889 spin_unlock_bh(&x->lock);
1890 xfrm_state_put(x);
1891 return err;
1892}
1893
Christoph Hellwig22e70052007-01-02 15:22:30 -08001894static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001895 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001896{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001897 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001898 struct xfrm_state *x;
1899 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001900 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001901 u32 mark = 0;
1902 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001903 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001904 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001905 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001906 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001907
Steffen Klassertd8647b72011-03-08 00:10:27 +00001908 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001909 return err;
1910
1911 /* pedantic mode - thou shalt sayeth replaceth */
1912 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1913 return err;
1914
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001915 mark = xfrm_mark_get(attrs, &m);
1916
1917 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 -08001918 if (x == NULL)
1919 return -ESRCH;
1920
1921 if (x->km.state != XFRM_STATE_VALID)
1922 goto out;
1923
Steffen Klassert4479ff72013-09-09 09:39:01 +02001924 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001925 if (err)
1926 goto out;
1927
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001928 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001929 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001930 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001931
1932 c.event = nlh->nlmsg_type;
1933 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001934 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001935 c.data.aevent = XFRM_AE_CU;
1936 km_state_notify(x, &c);
1937 err = 0;
1938out:
1939 xfrm_state_put(x);
1940 return err;
1941}
1942
Christoph Hellwig22e70052007-01-02 15:22:30 -08001943static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001944 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001946 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001947 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001948 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001949 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001950
Thomas Graf35a7aa02007-08-22 14:00:40 -07001951 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001952 if (err)
1953 return err;
1954
Tetsuo Handa2e710292014-04-22 21:48:30 +09001955 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001956 if (err) {
1957 if (err == -ESRCH) /* empty table */
1958 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001959 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001960 }
1961
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001962 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001963 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001964 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001965 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001966 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001967 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return 0;
1969}
1970
Christoph Hellwig22e70052007-01-02 15:22:30 -08001971static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001972 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001973{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001974 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001975 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001976 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001977 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001978 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001979 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001980 struct xfrm_mark m;
1981 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001982
Thomas Graf35a7aa02007-08-22 14:00:40 -07001983 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001984 if (err)
1985 return err;
1986
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001987 err = verify_policy_dir(p->dir);
1988 if (err)
1989 return err;
1990
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001991 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001992 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001993 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001994 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001995 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001996
Thomas Graf35a7aa02007-08-22 14:00:40 -07001997 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001998 if (err)
1999 return err;
2000
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002001 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002002 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002003 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002004
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002005 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002006 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002007 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002008 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002009 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002010 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002011 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002012 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002013 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002014 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002015
Timo Teräsea2dea92010-03-31 00:17:05 +00002016 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002017 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002018
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002019 err = 0;
2020 if (up->hard) {
2021 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002022 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002023 } else {
2024 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00002025 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002026 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002027 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002028
2029out:
2030 xfrm_pol_put(xp);
2031 return err;
2032}
2033
Christoph Hellwig22e70052007-01-02 15:22:30 -08002034static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002035 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002036{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002037 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002038 struct xfrm_state *x;
2039 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002040 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002041 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002042 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002043 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002044
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002045 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 -08002046
David S. Miller3a765aa2007-02-26 14:52:21 -08002047 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002048 if (x == NULL)
2049 return err;
2050
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002051 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002052 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002053 if (x->km.state != XFRM_STATE_VALID)
2054 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002055 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002056
Joy Latten161a09e2006-11-27 13:11:54 -06002057 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002058 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002059 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002060 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002061 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002062out:
2063 spin_unlock_bh(&x->lock);
2064 xfrm_state_put(x);
2065 return err;
2066}
2067
Christoph Hellwig22e70052007-01-02 15:22:30 -08002068static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002069 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002070{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002071 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002072 struct xfrm_policy *xp;
2073 struct xfrm_user_tmpl *ut;
2074 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002075 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002076 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002077
Thomas Graf7b67c852007-08-22 13:53:52 -07002078 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002079 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002080 int err = -ENOMEM;
2081
2082 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002083 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002084
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002085 xfrm_mark_get(attrs, &mark);
2086
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002087 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002088 if (err)
2089 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002090
2091 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002092 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002093 if (!xp)
2094 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002095
2096 memcpy(&x->id, &ua->id, sizeof(ua->id));
2097 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2098 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002099 xp->mark.m = x->mark.m = mark.m;
2100 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002101 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002102 /* extract the templates and for each call km_key */
2103 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2104 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2105 memcpy(&x->id, &t->id, sizeof(x->id));
2106 x->props.mode = t->mode;
2107 x->props.reqid = t->reqid;
2108 x->props.family = ut->family;
2109 t->aalgos = ua->aalgos;
2110 t->ealgos = ua->ealgos;
2111 t->calgos = ua->calgos;
2112 err = km_query(x, t, xp);
2113
2114 }
2115
2116 kfree(x);
2117 kfree(xp);
2118
2119 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002120
2121bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002122 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002123free_state:
2124 kfree(x);
2125nomem:
2126 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002127}
2128
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002129#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002130static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002131 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002132 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002133{
Thomas Graf5424f322007-08-22 14:01:33 -07002134 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002135 struct xfrm_user_migrate *um;
2136 int i, num_migrate;
2137
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002138 if (k != NULL) {
2139 struct xfrm_user_kmaddress *uk;
2140
2141 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2142 memcpy(&k->local, &uk->local, sizeof(k->local));
2143 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2144 k->family = uk->family;
2145 k->reserved = uk->reserved;
2146 }
2147
Thomas Graf5424f322007-08-22 14:01:33 -07002148 um = nla_data(rt);
2149 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002150
2151 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2152 return -EINVAL;
2153
2154 for (i = 0; i < num_migrate; i++, um++, ma++) {
2155 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2156 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2157 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2158 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2159
2160 ma->proto = um->proto;
2161 ma->mode = um->mode;
2162 ma->reqid = um->reqid;
2163
2164 ma->old_family = um->old_family;
2165 ma->new_family = um->new_family;
2166 }
2167
2168 *num = i;
2169 return 0;
2170}
2171
2172static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002173 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002174{
Thomas Graf7b67c852007-08-22 13:53:52 -07002175 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002176 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002177 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002178 u8 type;
2179 int err;
2180 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002181 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002182
Thomas Graf35a7aa02007-08-22 14:00:40 -07002183 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002184 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002185
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002186 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2187
Thomas Graf5424f322007-08-22 14:01:33 -07002188 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002189 if (err)
2190 return err;
2191
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002192 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002193 if (err)
2194 return err;
2195
2196 if (!n)
2197 return 0;
2198
Fan Du8d549c42013-11-07 17:47:49 +08002199 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002200
2201 return 0;
2202}
2203#else
2204static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002205 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206{
2207 return -ENOPROTOOPT;
2208}
2209#endif
2210
2211#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002212static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002213{
2214 struct xfrm_user_migrate um;
2215
2216 memset(&um, 0, sizeof(um));
2217 um.proto = m->proto;
2218 um.mode = m->mode;
2219 um.reqid = m->reqid;
2220 um.old_family = m->old_family;
2221 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2222 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2223 um.new_family = m->new_family;
2224 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2225 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2226
Thomas Grafc0144be2007-08-22 13:55:43 -07002227 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002228}
2229
David S. Miller183cad12011-02-24 00:28:01 -05002230static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002231{
2232 struct xfrm_user_kmaddress uk;
2233
2234 memset(&uk, 0, sizeof(uk));
2235 uk.family = k->family;
2236 uk.reserved = k->reserved;
2237 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002238 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002239
2240 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2241}
2242
2243static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002244{
2245 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002246 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2247 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2248 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002249}
2250
David S. Miller183cad12011-02-24 00:28:01 -05002251static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2252 int num_migrate, const struct xfrm_kmaddress *k,
2253 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254{
David S. Miller183cad12011-02-24 00:28:01 -05002255 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002256 struct xfrm_userpolicy_id *pol_id;
2257 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002258 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002259
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002260 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2261 if (nlh == NULL)
2262 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002263
Thomas Graf7b67c852007-08-22 13:53:52 -07002264 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002265 /* copy data from selector, dir, and type to the pol_id */
2266 memset(pol_id, 0, sizeof(*pol_id));
2267 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2268 pol_id->dir = dir;
2269
David S. Miller1d1e34d2012-06-27 21:57:03 -07002270 if (k != NULL) {
2271 err = copy_to_user_kmaddress(k, skb);
2272 if (err)
2273 goto out_cancel;
2274 }
2275 err = copy_to_user_policy_type(type, skb);
2276 if (err)
2277 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002278 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002279 err = copy_to_user_migrate(mp, skb);
2280 if (err)
2281 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002282 }
2283
Thomas Graf98250692007-08-22 12:47:26 -07002284 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002285
2286out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002287 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002288 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002289}
2290
David S. Miller183cad12011-02-24 00:28:01 -05002291static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2292 const struct xfrm_migrate *m, int num_migrate,
2293 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002295 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002296 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002297
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002298 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002299 if (skb == NULL)
2300 return -ENOMEM;
2301
2302 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002303 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002304 BUG();
2305
Michal Kubecek21ee5432014-06-03 10:26:06 +02002306 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002307}
2308#else
David S. Miller183cad12011-02-24 00:28:01 -05002309static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2310 const struct xfrm_migrate *m, int num_migrate,
2311 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002312{
2313 return -ENOPROTOOPT;
2314}
2315#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002316
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002317#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002318
2319static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002320 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002321 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2322 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2323 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2324 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2325 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2326 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002327 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002328 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002329 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002330 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002331 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002332 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002333 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002334 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2335 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002336 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002337 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002338 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002339 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002340 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341};
2342
Thomas Graf492b5582005-05-03 14:26:40 -07002343#undef XMSGSIZE
2344
Thomas Grafcf5cb792007-08-22 13:59:04 -07002345static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002346 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2347 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2348 [XFRMA_LASTUSED] = { .type = NLA_U64},
2349 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002350 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002351 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2352 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2353 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2354 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2355 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2356 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2357 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2358 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2359 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2360 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2361 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2362 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2363 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2364 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002365 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002366 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002367 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002368 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002369 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002370 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002371 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002372};
2373
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002374static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2375 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2376 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2377};
2378
Mathias Krause05600a72013-02-24 14:10:27 +01002379static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002380 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002382 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002383 const struct nla_policy *nla_pol;
2384 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002385} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2386 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2387 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2388 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002389 .dump = xfrm_dump_sa,
2390 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002391 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2392 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2393 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002394 .dump = xfrm_dump_policy,
2395 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002396 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002397 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002398 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002399 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2400 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002401 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002402 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2403 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002404 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2405 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002406 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002407 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002408 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2409 .nla_pol = xfrma_spd_policy,
2410 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002411 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412};
2413
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002414static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002416 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002417 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002418 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002419 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002423 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425 type -= XFRM_MSG_BASE;
2426 link = &xfrm_dispatch[type];
2427
2428 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002429 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002430 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
Thomas Graf492b5582005-05-03 14:26:40 -07002432 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2433 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002434 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002436 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002438 {
2439 struct netlink_dump_control c = {
2440 .dump = link->dump,
2441 .done = link->done,
2442 };
2443 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 }
2446
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002447 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2448 link->nla_max ? : XFRMA_MAX,
2449 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002450 if (err < 0)
2451 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002454 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Thomas Graf5424f322007-08-22 14:01:33 -07002456 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457}
2458
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002459static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Fan Du283bc9f2013-11-07 17:47:50 +08002461 struct net *net = sock_net(skb->sk);
2462
2463 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002464 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002465 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
Thomas Graf7deb2262007-08-22 13:57:39 -07002468static inline size_t xfrm_expire_msgsize(void)
2469{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002470 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2471 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002472}
2473
David S. Miller214e0052011-02-24 00:02:38 -05002474static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 struct xfrm_user_expire *ue;
2477 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002478 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Eric W. Biederman15e47302012-09-07 20:12:54 +00002480 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002481 if (nlh == NULL)
2482 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Thomas Graf7b67c852007-08-22 13:53:52 -07002484 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002486 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
David S. Miller1d1e34d2012-06-27 21:57:03 -07002488 err = xfrm_mark_put(skb, &x->mark);
2489 if (err)
2490 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002491
Thomas Graf98250692007-08-22 12:47:26 -07002492 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
David S. Miller214e0052011-02-24 00:02:38 -05002495static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002497 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 struct sk_buff *skb;
2499
Thomas Graf7deb2262007-08-22 13:57:39 -07002500 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 if (skb == NULL)
2502 return -ENOMEM;
2503
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002504 if (build_expire(skb, x, c) < 0) {
2505 kfree_skb(skb);
2506 return -EMSGSIZE;
2507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Michal Kubecek21ee5432014-06-03 10:26:06 +02002509 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
2511
David S. Miller214e0052011-02-24 00:02:38 -05002512static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002513{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002514 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002515 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002516
Steffen Klassertd8647b72011-03-08 00:10:27 +00002517 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002518 if (skb == NULL)
2519 return -ENOMEM;
2520
2521 if (build_aevent(skb, x, c) < 0)
2522 BUG();
2523
Michal Kubecek21ee5432014-06-03 10:26:06 +02002524 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002525}
2526
David S. Miller214e0052011-02-24 00:02:38 -05002527static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002528{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002529 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002530 struct xfrm_usersa_flush *p;
2531 struct nlmsghdr *nlh;
2532 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002533 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002534
Thomas Graf7deb2262007-08-22 13:57:39 -07002535 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002536 if (skb == NULL)
2537 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002538
Eric W. Biederman15e47302012-09-07 20:12:54 +00002539 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002540 if (nlh == NULL) {
2541 kfree_skb(skb);
2542 return -EMSGSIZE;
2543 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002544
Thomas Graf7b67c852007-08-22 13:53:52 -07002545 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002546 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002547
Thomas Graf98250692007-08-22 12:47:26 -07002548 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002549
Michal Kubecek21ee5432014-06-03 10:26:06 +02002550 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002551}
2552
Thomas Graf7deb2262007-08-22 13:57:39 -07002553static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002554{
Thomas Graf7deb2262007-08-22 13:57:39 -07002555 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002556 if (x->aead)
2557 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002558 if (x->aalg) {
2559 l += nla_total_size(sizeof(struct xfrm_algo) +
2560 (x->aalg->alg_key_len + 7) / 8);
2561 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2562 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002563 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002564 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002565 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002566 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002567 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002568 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002569 if (x->tfcpad)
2570 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002571 if (x->replay_esn)
2572 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002573 if (x->security)
2574 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2575 x->security->ctx_len);
2576 if (x->coaddr)
2577 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002578 if (x->props.extra_flags)
2579 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002580
Herbert Xud26f3982007-11-13 21:47:08 -08002581 /* Must count x->lastused as it may become non-zero behind our back. */
2582 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002583
2584 return l;
2585}
2586
David S. Miller214e0052011-02-24 00:02:38 -05002587static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002588{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002589 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002590 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002591 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002592 struct nlmsghdr *nlh;
2593 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002594 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002595 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002596
2597 headlen = sizeof(*p);
2598 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002599 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002600 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002601 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002602 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002603 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002604
Thomas Graf7deb2262007-08-22 13:57:39 -07002605 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002606 if (skb == NULL)
2607 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002608
Eric W. Biederman15e47302012-09-07 20:12:54 +00002609 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002610 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002611 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002612 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002613
Thomas Graf7b67c852007-08-22 13:53:52 -07002614 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002615 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002616 struct nlattr *attr;
2617
Thomas Graf7b67c852007-08-22 13:53:52 -07002618 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002619 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2620 id->spi = x->id.spi;
2621 id->family = x->props.family;
2622 id->proto = x->id.proto;
2623
Thomas Grafc0144be2007-08-22 13:55:43 -07002624 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002625 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002626 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002627 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002628
2629 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002630 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002631 err = copy_to_user_state_extra(x, p, skb);
2632 if (err)
2633 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002634
Thomas Graf98250692007-08-22 12:47:26 -07002635 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002636
Michal Kubecek21ee5432014-06-03 10:26:06 +02002637 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002638
David S. Miller1d1e34d2012-06-27 21:57:03 -07002639out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002640 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002641 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002642}
2643
David S. Miller214e0052011-02-24 00:02:38 -05002644static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002645{
2646
2647 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002648 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002649 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002650 case XFRM_MSG_NEWAE:
2651 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002652 case XFRM_MSG_DELSA:
2653 case XFRM_MSG_UPDSA:
2654 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002655 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002656 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002657 return xfrm_notify_sa_flush(c);
2658 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002659 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2660 c->event);
2661 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002662 }
2663
2664 return 0;
2665
2666}
2667
Thomas Graf7deb2262007-08-22 13:57:39 -07002668static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2669 struct xfrm_policy *xp)
2670{
2671 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2672 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002673 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002674 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2675 + userpolicy_type_attrsize();
2676}
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002679 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002681 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 struct xfrm_user_acquire *ua;
2683 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002684 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002686 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2687 if (nlh == NULL)
2688 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Thomas Graf7b67c852007-08-22 13:53:52 -07002690 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 memcpy(&ua->id, &x->id, sizeof(ua->id));
2692 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2693 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002694 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 ua->aalgos = xt->aalgos;
2696 ua->ealgos = xt->ealgos;
2697 ua->calgos = xt->calgos;
2698 ua->seq = x->km.seq = seq;
2699
David S. Miller1d1e34d2012-06-27 21:57:03 -07002700 err = copy_to_user_tmpl(xp, skb);
2701 if (!err)
2702 err = copy_to_user_state_sec_ctx(x, skb);
2703 if (!err)
2704 err = copy_to_user_policy_type(xp->type, skb);
2705 if (!err)
2706 err = xfrm_mark_put(skb, &xp->mark);
2707 if (err) {
2708 nlmsg_cancel(skb, nlh);
2709 return err;
2710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Thomas Graf98250692007-08-22 12:47:26 -07002712 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
2715static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002716 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002718 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Thomas Graf7deb2262007-08-22 13:57:39 -07002721 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 if (skb == NULL)
2723 return -ENOMEM;
2724
Fan Du65e07362012-08-15 10:13:47 +08002725 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 BUG();
2727
Michal Kubecek21ee5432014-06-03 10:26:06 +02002728 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
2731/* User gives us xfrm_user_policy_info followed by an array of 0
2732 * or more templates.
2733 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002734static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 u8 *data, int len, int *dir)
2736{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002737 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2739 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2740 struct xfrm_policy *xp;
2741 int nr;
2742
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002743 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 case AF_INET:
2745 if (opt != IP_XFRM_POLICY) {
2746 *dir = -EOPNOTSUPP;
2747 return NULL;
2748 }
2749 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002750#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 case AF_INET6:
2752 if (opt != IPV6_XFRM_POLICY) {
2753 *dir = -EOPNOTSUPP;
2754 return NULL;
2755 }
2756 break;
2757#endif
2758 default:
2759 *dir = -EINVAL;
2760 return NULL;
2761 }
2762
2763 *dir = -EINVAL;
2764
2765 if (len < sizeof(*p) ||
2766 verify_newpolicy_info(p))
2767 return NULL;
2768
2769 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002770 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 return NULL;
2772
Herbert Xua4f1bac2005-07-26 15:43:17 -07002773 if (p->dir > XFRM_POLICY_OUT)
2774 return NULL;
2775
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002776 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (xp == NULL) {
2778 *dir = -ENOBUFS;
2779 return NULL;
2780 }
2781
2782 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002783 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 copy_templates(xp, ut, nr);
2785
2786 *dir = p->dir;
2787
2788 return xp;
2789}
2790
Thomas Graf7deb2262007-08-22 13:57:39 -07002791static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2792{
2793 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2794 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2795 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002796 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002797 + userpolicy_type_attrsize();
2798}
2799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002801 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802{
2803 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002804 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002805 struct nlmsghdr *nlh;
2806 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Eric W. Biederman15e47302012-09-07 20:12:54 +00002808 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002809 if (nlh == NULL)
2810 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Thomas Graf7b67c852007-08-22 13:53:52 -07002812 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002814 err = copy_to_user_tmpl(xp, skb);
2815 if (!err)
2816 err = copy_to_user_sec_ctx(xp, skb);
2817 if (!err)
2818 err = copy_to_user_policy_type(xp->type, skb);
2819 if (!err)
2820 err = xfrm_mark_put(skb, &xp->mark);
2821 if (err) {
2822 nlmsg_cancel(skb, nlh);
2823 return err;
2824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 upe->hard = !!hard;
2826
Thomas Graf98250692007-08-22 12:47:26 -07002827 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828}
2829
David S. Miller214e0052011-02-24 00:02:38 -05002830static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002832 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Thomas Graf7deb2262007-08-22 13:57:39 -07002835 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (skb == NULL)
2837 return -ENOMEM;
2838
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002839 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 BUG();
2841
Michal Kubecek21ee5432014-06-03 10:26:06 +02002842 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843}
2844
David S. Miller214e0052011-02-24 00:02:38 -05002845static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002846{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002847 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002848 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002849 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002850 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002851 struct nlmsghdr *nlh;
2852 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002853 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002854
2855 headlen = sizeof(*p);
2856 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002857 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002858 headlen = sizeof(*id);
2859 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002860 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002861 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002862 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863
Thomas Graf7deb2262007-08-22 13:57:39 -07002864 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002865 if (skb == NULL)
2866 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002867
Eric W. Biederman15e47302012-09-07 20:12:54 +00002868 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002869 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002870 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002871 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002872
Thomas Graf7b67c852007-08-22 13:53:52 -07002873 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002874 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002875 struct nlattr *attr;
2876
Thomas Graf7b67c852007-08-22 13:53:52 -07002877 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002878 memset(id, 0, sizeof(*id));
2879 id->dir = dir;
2880 if (c->data.byid)
2881 id->index = xp->index;
2882 else
2883 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2884
Thomas Grafc0144be2007-08-22 13:55:43 -07002885 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002886 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002887 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002888 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002889
2890 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002891 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002892
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002893 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002894 err = copy_to_user_tmpl(xp, skb);
2895 if (!err)
2896 err = copy_to_user_policy_type(xp->type, skb);
2897 if (!err)
2898 err = xfrm_mark_put(skb, &xp->mark);
2899 if (err)
2900 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002901
Thomas Graf98250692007-08-22 12:47:26 -07002902 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002903
Michal Kubecek21ee5432014-06-03 10:26:06 +02002904 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002905
David S. Miller1d1e34d2012-06-27 21:57:03 -07002906out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002907 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002908 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002909}
2910
David S. Miller214e0052011-02-24 00:02:38 -05002911static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002912{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002913 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002914 struct nlmsghdr *nlh;
2915 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002916 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002917
Thomas Graf7deb2262007-08-22 13:57:39 -07002918 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002919 if (skb == NULL)
2920 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002921
Eric W. Biederman15e47302012-09-07 20:12:54 +00002922 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002923 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002924 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002925 goto out_free_skb;
2926 err = copy_to_user_policy_type(c->data.type, skb);
2927 if (err)
2928 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002929
Thomas Graf98250692007-08-22 12:47:26 -07002930 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002931
Michal Kubecek21ee5432014-06-03 10:26:06 +02002932 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002933
David S. Miller1d1e34d2012-06-27 21:57:03 -07002934out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002935 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002936 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002937}
2938
David S. Miller214e0052011-02-24 00:02:38 -05002939static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002940{
2941
2942 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002943 case XFRM_MSG_NEWPOLICY:
2944 case XFRM_MSG_UPDPOLICY:
2945 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002946 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002947 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002948 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002949 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002950 return xfrm_exp_policy_notify(xp, dir, c);
2951 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002952 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2953 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002954 }
2955
2956 return 0;
2957
2958}
2959
Thomas Graf7deb2262007-08-22 13:57:39 -07002960static inline size_t xfrm_report_msgsize(void)
2961{
2962 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2963}
2964
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002965static int build_report(struct sk_buff *skb, u8 proto,
2966 struct xfrm_selector *sel, xfrm_address_t *addr)
2967{
2968 struct xfrm_user_report *ur;
2969 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002970
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002971 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2972 if (nlh == NULL)
2973 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002974
Thomas Graf7b67c852007-08-22 13:53:52 -07002975 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002976 ur->proto = proto;
2977 memcpy(&ur->sel, sel, sizeof(ur->sel));
2978
David S. Miller1d1e34d2012-06-27 21:57:03 -07002979 if (addr) {
2980 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2981 if (err) {
2982 nlmsg_cancel(skb, nlh);
2983 return err;
2984 }
2985 }
Thomas Graf98250692007-08-22 12:47:26 -07002986 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002987}
2988
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002989static int xfrm_send_report(struct net *net, u8 proto,
2990 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002991{
2992 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002993
Thomas Graf7deb2262007-08-22 13:57:39 -07002994 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002995 if (skb == NULL)
2996 return -ENOMEM;
2997
2998 if (build_report(skb, proto, sel, addr) < 0)
2999 BUG();
3000
Michal Kubecek21ee5432014-06-03 10:26:06 +02003001 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003002}
3003
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003004static inline size_t xfrm_mapping_msgsize(void)
3005{
3006 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3007}
3008
3009static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3010 xfrm_address_t *new_saddr, __be16 new_sport)
3011{
3012 struct xfrm_user_mapping *um;
3013 struct nlmsghdr *nlh;
3014
3015 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3016 if (nlh == NULL)
3017 return -EMSGSIZE;
3018
3019 um = nlmsg_data(nlh);
3020
3021 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3022 um->id.spi = x->id.spi;
3023 um->id.family = x->props.family;
3024 um->id.proto = x->id.proto;
3025 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3026 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3027 um->new_sport = new_sport;
3028 um->old_sport = x->encap->encap_sport;
3029 um->reqid = x->props.reqid;
3030
3031 return nlmsg_end(skb, nlh);
3032}
3033
3034static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3035 __be16 sport)
3036{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003037 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003038 struct sk_buff *skb;
3039
3040 if (x->id.proto != IPPROTO_ESP)
3041 return -EINVAL;
3042
3043 if (!x->encap)
3044 return -EINVAL;
3045
3046 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3047 if (skb == NULL)
3048 return -ENOMEM;
3049
3050 if (build_mapping(skb, x, ipaddr, sport) < 0)
3051 BUG();
3052
Michal Kubecek21ee5432014-06-03 10:26:06 +02003053 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003054}
3055
Horia Geanta0f245582014-02-12 16:20:06 +02003056static bool xfrm_is_alive(const struct km_event *c)
3057{
3058 return (bool)xfrm_acquire_is_on(c->net);
3059}
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061static struct xfrm_mgr netlink_mgr = {
3062 .id = "netlink",
3063 .notify = xfrm_send_state_notify,
3064 .acquire = xfrm_send_acquire,
3065 .compile_policy = xfrm_compile_policy,
3066 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003067 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003068 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003069 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003070 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071};
3072
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003073static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Patrick McHardybe336902006-03-20 22:40:54 -08003075 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003076 struct netlink_kernel_cfg cfg = {
3077 .groups = XFRMNLGRP_MAX,
3078 .input = xfrm_netlink_rcv,
3079 };
Patrick McHardybe336902006-03-20 22:40:54 -08003080
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003081 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003082 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003084 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003085 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 return 0;
3087}
3088
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003089static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003090{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003091 struct net *net;
3092 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003093 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003094 synchronize_net();
3095 list_for_each_entry(net, net_exit_list, exit_list)
3096 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003097}
3098
3099static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003100 .init = xfrm_user_net_init,
3101 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003102};
3103
3104static int __init xfrm_user_init(void)
3105{
3106 int rv;
3107
3108 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3109
3110 rv = register_pernet_subsys(&xfrm_user_net_ops);
3111 if (rv < 0)
3112 return rv;
3113 rv = xfrm_register_km(&netlink_mgr);
3114 if (rv < 0)
3115 unregister_pernet_subsys(&xfrm_user_net_ops);
3116 return rv;
3117}
3118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119static void __exit xfrm_user_exit(void)
3120{
3121 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003122 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123}
3124
3125module_init(xfrm_user_init);
3126module_exit(xfrm_user_exit);
3127MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003128MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003129