blob: 3d4b4c4640910386ab17817e69cbf4cafe2511ac [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] ||
Fan Duea9884b2013-12-16 18:47:48 +0800180 attrs[XFRMA_TFCPAD] ||
181 (ntohl(p->id.spi) >= 0x10000))
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 goto out;
184 break;
185
186 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800187 if (attrs[XFRMA_ALG_COMP])
188 goto out;
189 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000190 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800191 !attrs[XFRMA_ALG_CRYPT] &&
192 !attrs[XFRMA_ALG_AEAD])
193 goto out;
194 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000195 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800196 attrs[XFRMA_ALG_CRYPT]) &&
197 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000199 if (attrs[XFRMA_TFCPAD] &&
200 p->mode != XFRM_MODE_TUNNEL)
201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203
204 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700205 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800206 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000208 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000209 attrs[XFRMA_ALG_CRYPT] ||
210 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto out;
212 break;
213
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000214#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700215 case IPPROTO_DSTOPTS:
216 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700217 if (attrs[XFRMA_ALG_COMP] ||
218 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000219 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800220 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700221 attrs[XFRMA_ALG_CRYPT] ||
222 attrs[XFRMA_ENCAP] ||
223 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000224 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700226 goto out;
227 break;
228#endif
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 default:
231 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Herbert Xu1a6509d2008-01-28 19:37:29 -0800234 if ((err = verify_aead(attrs)))
235 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000236 if ((err = verify_auth_trunc(attrs)))
237 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700238 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700240 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800245 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000246 if ((err = verify_replay(p, attrs)))
247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 err = -EINVAL;
250 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700251 case XFRM_MODE_TRANSPORT:
252 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700253 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700254 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256
257 default:
258 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 err = 0;
262
263out:
264 return err;
265}
266
267static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800268 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700269 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct xfrm_algo *p, *ualg;
272 struct xfrm_algo_desc *algo;
273
274 if (!rta)
275 return 0;
276
Thomas Graf5424f322007-08-22 14:01:33 -0700277 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 algo = get_byname(ualg->alg_name, 1);
280 if (!algo)
281 return -ENOSYS;
282 *props = algo->desc.sadb_alg_id;
283
Eric Dumazet0f99be02008-01-08 23:39:06 -0800284 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!p)
286 return -ENOMEM;
287
Herbert Xu04ff1262006-08-13 08:50:00 +1000288 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *algpp = p;
290 return 0;
291}
292
Martin Willi4447bb32009-11-25 00:29:52 +0000293static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
294 struct nlattr *rta)
295{
296 struct xfrm_algo *ualg;
297 struct xfrm_algo_auth *p;
298 struct xfrm_algo_desc *algo;
299
300 if (!rta)
301 return 0;
302
303 ualg = nla_data(rta);
304
305 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
306 if (!algo)
307 return -ENOSYS;
308 *props = algo->desc.sadb_alg_id;
309
310 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
311 if (!p)
312 return -ENOMEM;
313
314 strcpy(p->alg_name, algo->name);
315 p->alg_key_len = ualg->alg_key_len;
316 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
317 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
318
319 *algpp = p;
320 return 0;
321}
322
323static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
324 struct nlattr *rta)
325{
326 struct xfrm_algo_auth *p, *ualg;
327 struct xfrm_algo_desc *algo;
328
329 if (!rta)
330 return 0;
331
332 ualg = nla_data(rta);
333
334 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
335 if (!algo)
336 return -ENOSYS;
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +0000337 if ((ualg->alg_trunc_len / 8) > MAX_AH_AUTH_LEN ||
338 ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000339 return -EINVAL;
340 *props = algo->desc.sadb_alg_id;
341
342 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
343 if (!p)
344 return -ENOMEM;
345
346 strcpy(p->alg_name, algo->name);
347 if (!p->alg_trunc_len)
348 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
349
350 *algpp = p;
351 return 0;
352}
353
Herbert Xu1a6509d2008-01-28 19:37:29 -0800354static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
355 struct nlattr *rta)
356{
357 struct xfrm_algo_aead *p, *ualg;
358 struct xfrm_algo_desc *algo;
359
360 if (!rta)
361 return 0;
362
363 ualg = nla_data(rta);
364
365 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
366 if (!algo)
367 return -ENOSYS;
368 *props = algo->desc.sadb_alg_id;
369
370 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
371 if (!p)
372 return -ENOMEM;
373
374 strcpy(p->alg_name, algo->name);
375 *algpp = p;
376 return 0;
377}
378
Steffen Klasserte2b19122011-03-28 19:47:30 +0000379static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
380 struct nlattr *rp)
381{
382 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000383 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000384
385 if (!replay_esn || !rp)
386 return 0;
387
388 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000389 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000390
Mathias Krauseecd79182012-09-20 10:01:49 +0000391 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000392 return -EINVAL;
393
394 return 0;
395}
396
Steffen Klassertd8647b72011-03-08 00:10:27 +0000397static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
398 struct xfrm_replay_state_esn **preplay_esn,
399 struct nlattr *rta)
400{
401 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000402 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000403
404 if (!rta)
405 return 0;
406
407 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000408 klen = xfrm_replay_state_esn_len(up);
409 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000410
Mathias Krauseecd79182012-09-20 10:01:49 +0000411 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000412 if (!p)
413 return -ENOMEM;
414
Mathias Krauseecd79182012-09-20 10:01:49 +0000415 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000416 if (!pp) {
417 kfree(p);
418 return -ENOMEM;
419 }
420
Mathias Krauseecd79182012-09-20 10:01:49 +0000421 memcpy(p, up, ulen);
422 memcpy(pp, up, ulen);
423
Steffen Klassertd8647b72011-03-08 00:10:27 +0000424 *replay_esn = p;
425 *preplay_esn = pp;
426
427 return 0;
428}
429
Joy Latten661697f2007-04-13 16:14:35 -0700430static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800431{
Trent Jaegerdf718372005-12-13 23:12:27 -0800432 int len = 0;
433
434 if (xfrm_ctx) {
435 len += sizeof(struct xfrm_user_sec_ctx);
436 len += xfrm_ctx->ctx_len;
437 }
438 return len;
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
442{
443 memcpy(&x->id, &p->id, sizeof(x->id));
444 memcpy(&x->sel, &p->sel, sizeof(x->sel));
445 memcpy(&x->lft, &p->lft, sizeof(x->lft));
446 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800447 x->props.replay_window = min_t(unsigned int, p->replay_window,
448 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 x->props.reqid = p->reqid;
450 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700451 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700453
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700454 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700455 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800458/*
459 * someday when pfkey also has support, we could have the code
460 * somehow made shareable and move it to xfrm_state.c - JHS
461 *
462*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000463static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
464 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800465{
Thomas Graf5424f322007-08-22 14:01:33 -0700466 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000467 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700468 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
469 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
470 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800471
Steffen Klassertd8647b72011-03-08 00:10:27 +0000472 if (re) {
473 struct xfrm_replay_state_esn *replay_esn;
474 replay_esn = nla_data(re);
475 memcpy(x->replay_esn, replay_esn,
476 xfrm_replay_state_esn_len(replay_esn));
477 memcpy(x->preplay_esn, replay_esn,
478 xfrm_replay_state_esn_len(replay_esn));
479 }
480
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800481 if (rp) {
482 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700483 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800484 memcpy(&x->replay, replay, sizeof(*replay));
485 memcpy(&x->preplay, replay, sizeof(*replay));
486 }
487
488 if (lt) {
489 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700490 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800491 x->curlft.bytes = ltime->bytes;
492 x->curlft.packets = ltime->packets;
493 x->curlft.add_time = ltime->add_time;
494 x->curlft.use_time = ltime->use_time;
495 }
496
Thomas Grafcf5cb792007-08-22 13:59:04 -0700497 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700498 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800499
Thomas Grafcf5cb792007-08-22 13:59:04 -0700500 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700501 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800502}
503
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800504static struct xfrm_state *xfrm_state_construct(struct net *net,
505 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700506 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int *errp)
508{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800509 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 int err = -ENOMEM;
511
512 if (!x)
513 goto error_no_put;
514
515 copy_from_user_state(x, p);
516
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100517 if (attrs[XFRMA_SA_EXTRA_FLAGS])
518 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
519
Herbert Xu1a6509d2008-01-28 19:37:29 -0800520 if ((err = attach_aead(&x->aead, &x->props.ealgo,
521 attrs[XFRMA_ALG_AEAD])))
522 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000523 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
524 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000526 if (!x->props.aalgo) {
527 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
528 attrs[XFRMA_ALG_AUTH])))
529 goto error;
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
532 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700533 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto error;
535 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
536 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700537 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700539
540 if (attrs[XFRMA_ENCAP]) {
541 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
542 sizeof(*x->encap), GFP_KERNEL);
543 if (x->encap == NULL)
544 goto error;
545 }
546
Martin Willi35d28562010-12-08 04:37:49 +0000547 if (attrs[XFRMA_TFCPAD])
548 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
549
Thomas Graffd211502007-09-06 03:28:08 -0700550 if (attrs[XFRMA_COADDR]) {
551 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
552 sizeof(*x->coaddr), GFP_KERNEL);
553 if (x->coaddr == NULL)
554 goto error;
555 }
556
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000557 xfrm_mark_get(attrs, &x->mark);
558
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700559 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (err)
561 goto error;
562
Thomas Graffd211502007-09-06 03:28:08 -0700563 if (attrs[XFRMA_SEC_CTX] &&
564 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800565 goto error;
566
Steffen Klassertd8647b72011-03-08 00:10:27 +0000567 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
568 attrs[XFRMA_REPLAY_ESN_VAL])))
569 goto error;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800572 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800573 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800574 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800575
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000576 if ((err = xfrm_init_replay(x)))
577 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800578
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000579 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000580 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 return x;
583
584error:
585 x->km.state = XFRM_STATE_DEAD;
586 xfrm_state_put(x);
587error_no_put:
588 *errp = err;
589 return NULL;
590}
591
Christoph Hellwig22e70052007-01-02 15:22:30 -0800592static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700593 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800595 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700596 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct xfrm_state *x;
598 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700599 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Thomas Graf35a7aa02007-08-22 14:00:40 -0700601 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (err)
603 return err;
604
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800605 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (!x)
607 return err;
608
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700609 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
611 err = xfrm_state_add(x);
612 else
613 err = xfrm_state_update(x);
614
Tetsuo Handa2e710292014-04-22 21:48:30 +0900615 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (err < 0) {
618 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800619 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700620 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700623 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000624 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700625 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700626
627 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700628out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700629 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return err;
631}
632
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800633static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
634 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700635 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700636 int *errp)
637{
638 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000639 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700640 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000641 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700642
643 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
644 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000645 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700646 } else {
647 xfrm_address_t *saddr = NULL;
648
Thomas Graf35a7aa02007-08-22 14:00:40 -0700649 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700650 if (!saddr) {
651 err = -EINVAL;
652 goto out;
653 }
654
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800655 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000656 x = xfrm_state_lookup_byaddr(net, mark,
657 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800658 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700659 }
660
661 out:
662 if (!x && errp)
663 *errp = err;
664 return x;
665}
666
Christoph Hellwig22e70052007-01-02 15:22:30 -0800667static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700668 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800670 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700672 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700673 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700674 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800676 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700678 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
David S. Miller6f68dc32006-06-08 23:58:52 -0700680 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700681 goto out;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700684 err = -EPERM;
685 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700688 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600689
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700690 if (err < 0)
691 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700692
693 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000694 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700695 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700696 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700698out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900699 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700700 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700701 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
705{
Mathias Krausef778a632012-09-19 11:33:39 +0000706 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 memcpy(&p->id, &x->id, sizeof(p->id));
708 memcpy(&p->sel, &x->sel, sizeof(p->sel));
709 memcpy(&p->lft, &x->lft, sizeof(p->lft));
710 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
711 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700712 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 p->mode = x->props.mode;
714 p->replay_window = x->props.replay_window;
715 p->reqid = x->props.reqid;
716 p->family = x->props.family;
717 p->flags = x->props.flags;
718 p->seq = x->km.seq;
719}
720
721struct xfrm_dump_info {
722 struct sk_buff *in_skb;
723 struct sk_buff *out_skb;
724 u32 nlmsg_seq;
725 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726};
727
Thomas Grafc0144be2007-08-22 13:55:43 -0700728static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
729{
Thomas Grafc0144be2007-08-22 13:55:43 -0700730 struct xfrm_user_sec_ctx *uctx;
731 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700732 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700733
734 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
735 if (attr == NULL)
736 return -EMSGSIZE;
737
738 uctx = nla_data(attr);
739 uctx->exttype = XFRMA_SEC_CTX;
740 uctx->len = ctx_size;
741 uctx->ctx_doi = s->ctx_doi;
742 uctx->ctx_alg = s->ctx_alg;
743 uctx->ctx_len = s->ctx_len;
744 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
745
746 return 0;
747}
748
Martin Willi4447bb32009-11-25 00:29:52 +0000749static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
750{
751 struct xfrm_algo *algo;
752 struct nlattr *nla;
753
754 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
755 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
756 if (!nla)
757 return -EMSGSIZE;
758
759 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000760 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000761 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
762 algo->alg_key_len = auth->alg_key_len;
763
764 return 0;
765}
766
Herbert Xu68325d32007-10-09 13:30:57 -0700767/* Don't change this without updating xfrm_sa_len! */
768static int copy_to_user_state_extra(struct xfrm_state *x,
769 struct xfrm_usersa_info *p,
770 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700772 int ret = 0;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 copy_to_user_state(x, p);
775
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100776 if (x->props.extra_flags) {
777 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
778 x->props.extra_flags);
779 if (ret)
780 goto out;
781 }
782
David S. Miller1d1e34d2012-06-27 21:57:03 -0700783 if (x->coaddr) {
784 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
785 if (ret)
786 goto out;
787 }
788 if (x->lastused) {
789 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
790 if (ret)
791 goto out;
792 }
793 if (x->aead) {
794 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
795 if (ret)
796 goto out;
797 }
798 if (x->aalg) {
799 ret = copy_to_user_auth(x->aalg, skb);
800 if (!ret)
801 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
802 xfrm_alg_auth_len(x->aalg), x->aalg);
803 if (ret)
804 goto out;
805 }
806 if (x->ealg) {
807 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
808 if (ret)
809 goto out;
810 }
811 if (x->calg) {
812 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
813 if (ret)
814 goto out;
815 }
816 if (x->encap) {
817 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
818 if (ret)
819 goto out;
820 }
821 if (x->tfcpad) {
822 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
823 if (ret)
824 goto out;
825 }
826 ret = xfrm_mark_put(skb, &x->mark);
827 if (ret)
828 goto out;
829 if (x->replay_esn) {
830 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
831 xfrm_replay_state_esn_len(x->replay_esn),
832 x->replay_esn);
833 if (ret)
834 goto out;
835 }
836 if (x->security)
837 ret = copy_sec_ctx(x->security, skb);
838out:
839 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700840}
841
842static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
843{
844 struct xfrm_dump_info *sp = ptr;
845 struct sk_buff *in_skb = sp->in_skb;
846 struct sk_buff *skb = sp->out_skb;
847 struct xfrm_usersa_info *p;
848 struct nlmsghdr *nlh;
849 int err;
850
Eric W. Biederman15e47302012-09-07 20:12:54 +0000851 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700852 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
853 if (nlh == NULL)
854 return -EMSGSIZE;
855
856 p = nlmsg_data(nlh);
857
858 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700859 if (err) {
860 nlmsg_cancel(skb, nlh);
861 return err;
862 }
Thomas Graf98250692007-08-22 12:47:26 -0700863 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
Timo Teras4c563f72008-02-28 21:31:08 -0800867static int xfrm_dump_sa_done(struct netlink_callback *cb)
868{
869 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800870 struct sock *sk = cb->skb->sk;
871 struct net *net = sock_net(sk);
872
873 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800874 return 0;
875}
876
Nicolas Dichteld3623092014-02-14 15:30:36 +0100877static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
879{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800880 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800881 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 struct xfrm_dump_info info;
883
Timo Teras4c563f72008-02-28 21:31:08 -0800884 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
885 sizeof(cb->args) - sizeof(cb->args[0]));
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 info.in_skb = cb->skb;
888 info.out_skb = skb;
889 info.nlmsg_seq = cb->nlh->nlmsg_seq;
890 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800891
892 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100893 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100894 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100895 u8 proto = 0;
896 int err;
897
Timo Teras4c563f72008-02-28 21:31:08 -0800898 cb->args[0] = 1;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100899
900 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
901 xfrma_policy);
902 if (err < 0)
903 return err;
904
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100905 if (attrs[XFRMA_ADDRESS_FILTER]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100906 filter = kmalloc(sizeof(*filter), GFP_KERNEL);
907 if (filter == NULL)
908 return -ENOMEM;
909
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100910 memcpy(filter, nla_data(attrs[XFRMA_ADDRESS_FILTER]),
Nicolas Dichteld3623092014-02-14 15:30:36 +0100911 sizeof(*filter));
912 }
913
914 if (attrs[XFRMA_PROTO])
915 proto = nla_get_u8(attrs[XFRMA_PROTO]);
916
917 xfrm_state_walk_init(walk, proto, filter);
Timo Teras4c563f72008-02-28 21:31:08 -0800918 }
919
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800920 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 return skb->len;
923}
924
925static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
926 struct xfrm_state *x, u32 seq)
927{
928 struct xfrm_dump_info info;
929 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000930 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Thomas Graf7deb2262007-08-22 13:57:39 -0700932 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (!skb)
934 return ERR_PTR(-ENOMEM);
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 info.in_skb = in_skb;
937 info.out_skb = skb;
938 info.nlmsg_seq = seq;
939 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Mathias Krause864745d2012-09-13 11:41:26 +0000941 err = dump_one_state(x, 0, &info);
942 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000944 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
947 return skb;
948}
949
Thomas Graf7deb2262007-08-22 13:57:39 -0700950static inline size_t xfrm_spdinfo_msgsize(void)
951{
952 return NLMSG_ALIGN(4)
953 + nla_total_size(sizeof(struct xfrmu_spdinfo))
954 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
955}
956
Alexey Dobriyane0710412010-01-23 13:37:10 +0000957static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000958 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700959{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700960 struct xfrmk_spdinfo si;
961 struct xfrmu_spdinfo spc;
962 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700963 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700964 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700965 u32 *f;
966
Eric W. Biederman15e47302012-09-07 20:12:54 +0000967 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300968 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700969 return -EMSGSIZE;
970
971 f = nlmsg_data(nlh);
972 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000973 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700974 spc.incnt = si.incnt;
975 spc.outcnt = si.outcnt;
976 spc.fwdcnt = si.fwdcnt;
977 spc.inscnt = si.inscnt;
978 spc.outscnt = si.outscnt;
979 spc.fwdscnt = si.fwdscnt;
980 sph.spdhcnt = si.spdhcnt;
981 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700982
David S. Miller1d1e34d2012-06-27 21:57:03 -0700983 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
984 if (!err)
985 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
986 if (err) {
987 nlmsg_cancel(skb, nlh);
988 return err;
989 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700990
991 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700992}
993
994static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700995 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700996{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800997 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700998 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700999 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001000 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001001 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001002
Thomas Graf7deb2262007-08-22 13:57:39 -07001003 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001004 if (r_skb == NULL)
1005 return -ENOMEM;
1006
Eric W. Biederman15e47302012-09-07 20:12:54 +00001007 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001008 BUG();
1009
Eric W. Biederman15e47302012-09-07 20:12:54 +00001010 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001011}
1012
Thomas Graf7deb2262007-08-22 13:57:39 -07001013static inline size_t xfrm_sadinfo_msgsize(void)
1014{
1015 return NLMSG_ALIGN(4)
1016 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1017 + nla_total_size(4); /* XFRMA_SAD_CNT */
1018}
1019
Alexey Dobriyane0710412010-01-23 13:37:10 +00001020static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001021 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001022{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001023 struct xfrmk_sadinfo si;
1024 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001025 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001026 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001027 u32 *f;
1028
Eric W. Biederman15e47302012-09-07 20:12:54 +00001029 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001030 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001031 return -EMSGSIZE;
1032
1033 f = nlmsg_data(nlh);
1034 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001035 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001036
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001037 sh.sadhmcnt = si.sadhmcnt;
1038 sh.sadhcnt = si.sadhcnt;
1039
David S. Miller1d1e34d2012-06-27 21:57:03 -07001040 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1041 if (!err)
1042 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1043 if (err) {
1044 nlmsg_cancel(skb, nlh);
1045 return err;
1046 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001047
1048 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001049}
1050
1051static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001052 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001053{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001054 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001055 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001056 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001057 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001058 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001059
Thomas Graf7deb2262007-08-22 13:57:39 -07001060 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001061 if (r_skb == NULL)
1062 return -ENOMEM;
1063
Eric W. Biederman15e47302012-09-07 20:12:54 +00001064 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001065 BUG();
1066
Eric W. Biederman15e47302012-09-07 20:12:54 +00001067 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001068}
1069
Christoph Hellwig22e70052007-01-02 15:22:30 -08001070static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001071 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001073 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001074 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 struct xfrm_state *x;
1076 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001077 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001079 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (x == NULL)
1081 goto out_noput;
1082
1083 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1084 if (IS_ERR(resp_skb)) {
1085 err = PTR_ERR(resp_skb);
1086 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001087 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089 xfrm_state_put(x);
1090out_noput:
1091 return err;
1092}
1093
Christoph Hellwig22e70052007-01-02 15:22:30 -08001094static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001095 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001097 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 struct xfrm_state *x;
1099 struct xfrm_userspi_info *p;
1100 struct sk_buff *resp_skb;
1101 xfrm_address_t *daddr;
1102 int family;
1103 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001104 u32 mark;
1105 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Thomas Graf7b67c852007-08-22 13:53:52 -07001107 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001108 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (err)
1110 goto out_noput;
1111
1112 family = p->info.family;
1113 daddr = &p->info.id.daddr;
1114
1115 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001116
1117 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001119 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001120 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 xfrm_state_put(x);
1122 x = NULL;
1123 }
1124 }
1125
1126 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001127 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 p->info.id.proto, daddr,
1129 &p->info.saddr, 1,
1130 family);
1131 err = -ENOENT;
1132 if (x == NULL)
1133 goto out_noput;
1134
Herbert Xu658b2192007-10-09 13:29:52 -07001135 err = xfrm_alloc_spi(x, p->min, p->max);
1136 if (err)
1137 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Herbert Xu658b2192007-10-09 13:29:52 -07001139 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (IS_ERR(resp_skb)) {
1141 err = PTR_ERR(resp_skb);
1142 goto out;
1143 }
1144
Eric W. Biederman15e47302012-09-07 20:12:54 +00001145 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147out:
1148 xfrm_state_put(x);
1149out_noput:
1150 return err;
1151}
1152
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001153static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 switch (dir) {
1156 case XFRM_POLICY_IN:
1157 case XFRM_POLICY_OUT:
1158 case XFRM_POLICY_FWD:
1159 break;
1160
1161 default:
1162 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 return 0;
1166}
1167
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001168static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001169{
1170 switch (type) {
1171 case XFRM_POLICY_TYPE_MAIN:
1172#ifdef CONFIG_XFRM_SUB_POLICY
1173 case XFRM_POLICY_TYPE_SUB:
1174#endif
1175 break;
1176
1177 default:
1178 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001179 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001180
1181 return 0;
1182}
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1185{
Fan Due682adf2013-11-07 17:47:48 +08001186 int ret;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 switch (p->share) {
1189 case XFRM_SHARE_ANY:
1190 case XFRM_SHARE_SESSION:
1191 case XFRM_SHARE_USER:
1192 case XFRM_SHARE_UNIQUE:
1193 break;
1194
1195 default:
1196 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 switch (p->action) {
1200 case XFRM_POLICY_ALLOW:
1201 case XFRM_POLICY_BLOCK:
1202 break;
1203
1204 default:
1205 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 switch (p->sel.family) {
1209 case AF_INET:
1210 break;
1211
1212 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001213#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 break;
1215#else
1216 return -EAFNOSUPPORT;
1217#endif
1218
1219 default:
1220 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Fan Due682adf2013-11-07 17:47:48 +08001223 ret = verify_policy_dir(p->dir);
1224 if (ret)
1225 return ret;
1226 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1227 return -EINVAL;
1228
1229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Thomas Graf5424f322007-08-22 14:01:33 -07001232static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001233{
Thomas Graf5424f322007-08-22 14:01:33 -07001234 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001235 struct xfrm_user_sec_ctx *uctx;
1236
1237 if (!rt)
1238 return 0;
1239
Thomas Graf5424f322007-08-22 14:01:33 -07001240 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001241 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1245 int nr)
1246{
1247 int i;
1248
1249 xp->xfrm_nr = nr;
1250 for (i = 0; i < nr; i++, ut++) {
1251 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1252
1253 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1254 memcpy(&t->saddr, &ut->saddr,
1255 sizeof(xfrm_address_t));
1256 t->reqid = ut->reqid;
1257 t->mode = ut->mode;
1258 t->share = ut->share;
1259 t->optional = ut->optional;
1260 t->aalgos = ut->aalgos;
1261 t->ealgos = ut->ealgos;
1262 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001263 /* If all masks are ~0, then we allow all algorithms. */
1264 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001265 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267}
1268
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001269static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1270{
1271 int i;
1272
1273 if (nr > XFRM_MAX_DEPTH)
1274 return -EINVAL;
1275
1276 for (i = 0; i < nr; i++) {
1277 /* We never validated the ut->family value, so many
1278 * applications simply leave it at zero. The check was
1279 * never made and ut->family was ignored because all
1280 * templates could be assumed to have the same family as
1281 * the policy itself. Now that we will have ipv4-in-ipv6
1282 * and ipv6-in-ipv4 tunnels, this is no longer true.
1283 */
1284 if (!ut[i].family)
1285 ut[i].family = family;
1286
1287 switch (ut[i].family) {
1288 case AF_INET:
1289 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001290#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001291 case AF_INET6:
1292 break;
1293#endif
1294 default:
1295 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001296 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001297 }
1298
1299 return 0;
1300}
1301
Thomas Graf5424f322007-08-22 14:01:33 -07001302static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Thomas Graf5424f322007-08-22 14:01:33 -07001304 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 if (!rt) {
1307 pol->xfrm_nr = 0;
1308 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001309 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1310 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001311 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001313 err = validate_tmpl(nr, utmpl, pol->family);
1314 if (err)
1315 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Thomas Graf5424f322007-08-22 14:01:33 -07001317 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319 return 0;
1320}
1321
Thomas Graf5424f322007-08-22 14:01:33 -07001322static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001323{
Thomas Graf5424f322007-08-22 14:01:33 -07001324 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001325 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001326 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001327 int err;
1328
1329 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001330 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001331 type = upt->type;
1332 }
1333
1334 err = verify_policy_type(type);
1335 if (err)
1336 return err;
1337
1338 *tp = type;
1339 return 0;
1340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1343{
1344 xp->priority = p->priority;
1345 xp->index = p->index;
1346 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1347 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1348 xp->action = p->action;
1349 xp->flags = p->flags;
1350 xp->family = p->sel.family;
1351 /* XXX xp->share = p->share; */
1352}
1353
1354static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1355{
Mathias Krause7b789832012-09-19 11:33:40 +00001356 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1358 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1359 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1360 p->priority = xp->priority;
1361 p->index = xp->index;
1362 p->sel.family = xp->family;
1363 p->dir = dir;
1364 p->action = xp->action;
1365 p->flags = xp->flags;
1366 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1367}
1368
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001369static 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 -07001370{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001371 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 int err;
1373
1374 if (!xp) {
1375 *errp = -ENOMEM;
1376 return NULL;
1377 }
1378
1379 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001380
Thomas Graf35a7aa02007-08-22 14:00:40 -07001381 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001382 if (err)
1383 goto error;
1384
Thomas Graf35a7aa02007-08-22 14:00:40 -07001385 if (!(err = copy_from_user_tmpl(xp, attrs)))
1386 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001387 if (err)
1388 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001390 xfrm_mark_get(attrs, &xp->mark);
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001393 error:
1394 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001395 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001396 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001397 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Christoph Hellwig22e70052007-01-02 15:22:30 -08001400static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001401 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001403 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001404 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001406 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 int err;
1408 int excl;
1409
1410 err = verify_newpolicy_info(p);
1411 if (err)
1412 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001413 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001414 if (err)
1415 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001417 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 if (!xp)
1419 return err;
1420
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001421 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001422 * Aha! this is anti-netlink really i.e more pfkey derived
1423 * in netlink excl is a flag and you wouldnt need
1424 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1426 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001427 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001430 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 kfree(xp);
1432 return err;
1433 }
1434
Herbert Xuf60f6b82005-06-18 22:44:37 -07001435 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001436 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001437 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001438 km_policy_notify(xp, p->dir, &c);
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 xfrm_pol_put(xp);
1441
1442 return 0;
1443}
1444
1445static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1446{
1447 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1448 int i;
1449
1450 if (xp->xfrm_nr == 0)
1451 return 0;
1452
1453 for (i = 0; i < xp->xfrm_nr; i++) {
1454 struct xfrm_user_tmpl *up = &vec[i];
1455 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1456
Mathias Krause1f868402012-09-19 11:33:41 +00001457 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001459 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1461 up->reqid = kp->reqid;
1462 up->mode = kp->mode;
1463 up->share = kp->share;
1464 up->optional = kp->optional;
1465 up->aalgos = kp->aalgos;
1466 up->ealgos = kp->ealgos;
1467 up->calgos = kp->calgos;
1468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Thomas Grafc0144be2007-08-22 13:55:43 -07001470 return nla_put(skb, XFRMA_TMPL,
1471 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001472}
1473
Serge Hallyn0d681622006-07-24 23:30:44 -07001474static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1475{
1476 if (x->security) {
1477 return copy_sec_ctx(x->security, skb);
1478 }
1479 return 0;
1480}
1481
1482static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1483{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001484 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001485 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001486 return 0;
1487}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001488static inline size_t userpolicy_type_attrsize(void)
1489{
1490#ifdef CONFIG_XFRM_SUB_POLICY
1491 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1492#else
1493 return 0;
1494#endif
1495}
Serge Hallyn0d681622006-07-24 23:30:44 -07001496
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001497#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001498static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001499{
Thomas Grafc0144be2007-08-22 13:55:43 -07001500 struct xfrm_userpolicy_type upt = {
1501 .type = type,
1502 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001503
Thomas Grafc0144be2007-08-22 13:55:43 -07001504 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001505}
1506
1507#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001508static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001509{
1510 return 0;
1511}
1512#endif
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1515{
1516 struct xfrm_dump_info *sp = ptr;
1517 struct xfrm_userpolicy_info *p;
1518 struct sk_buff *in_skb = sp->in_skb;
1519 struct sk_buff *skb = sp->out_skb;
1520 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001521 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Eric W. Biederman15e47302012-09-07 20:12:54 +00001523 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001524 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1525 if (nlh == NULL)
1526 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Thomas Graf7b67c852007-08-22 13:53:52 -07001528 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001530 err = copy_to_user_tmpl(xp, skb);
1531 if (!err)
1532 err = copy_to_user_sec_ctx(xp, skb);
1533 if (!err)
1534 err = copy_to_user_policy_type(xp->type, skb);
1535 if (!err)
1536 err = xfrm_mark_put(skb, &xp->mark);
1537 if (err) {
1538 nlmsg_cancel(skb, nlh);
1539 return err;
1540 }
Thomas Graf98250692007-08-22 12:47:26 -07001541 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
Timo Teras4c563f72008-02-28 21:31:08 -08001545static int xfrm_dump_policy_done(struct netlink_callback *cb)
1546{
1547 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001548 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001549
Fan Du283bc9f2013-11-07 17:47:50 +08001550 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001551 return 0;
1552}
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1555{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001556 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001557 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 struct xfrm_dump_info info;
1559
Timo Teras4c563f72008-02-28 21:31:08 -08001560 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1561 sizeof(cb->args) - sizeof(cb->args[0]));
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 info.in_skb = cb->skb;
1564 info.out_skb = skb;
1565 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1566 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001567
1568 if (!cb->args[0]) {
1569 cb->args[0] = 1;
1570 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1571 }
1572
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001573 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 return skb->len;
1576}
1577
1578static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1579 struct xfrm_policy *xp,
1580 int dir, u32 seq)
1581{
1582 struct xfrm_dump_info info;
1583 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001584 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Thomas Graf7deb2262007-08-22 13:57:39 -07001586 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (!skb)
1588 return ERR_PTR(-ENOMEM);
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 info.in_skb = in_skb;
1591 info.out_skb = skb;
1592 info.nlmsg_seq = seq;
1593 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Mathias Krausec2546372012-09-14 09:58:32 +00001595 err = dump_one_policy(xp, dir, 0, &info);
1596 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001598 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
1601 return skb;
1602}
1603
Christoph Hellwig22e70052007-01-02 15:22:30 -08001604static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001605 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001607 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct xfrm_policy *xp;
1609 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001610 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001612 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001614 struct xfrm_mark m;
1615 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Thomas Graf7b67c852007-08-22 13:53:52 -07001617 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1619
Thomas Graf35a7aa02007-08-22 14:00:40 -07001620 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001621 if (err)
1622 return err;
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 err = verify_policy_dir(p->dir);
1625 if (err)
1626 return err;
1627
1628 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001629 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001630 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001631 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001632 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001633
Thomas Graf35a7aa02007-08-22 14:00:40 -07001634 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001635 if (err)
1636 return err;
1637
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001638 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001639 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001640 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001641
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001642 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001643 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001644 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001645 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001646 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001647 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001648 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (xp == NULL)
1651 return -ENOENT;
1652
1653 if (!delete) {
1654 struct sk_buff *resp_skb;
1655
1656 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1657 if (IS_ERR(resp_skb)) {
1658 err = PTR_ERR(resp_skb);
1659 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001660 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001661 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001663 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001664 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001665
1666 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001667 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001668
Herbert Xue7443892005-06-18 22:44:18 -07001669 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001670 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001671 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001672 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001673 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001676out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001677 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001678 if (delete && err == 0)
1679 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return err;
1681}
1682
Christoph Hellwig22e70052007-01-02 15:22:30 -08001683static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001684 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001686 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001687 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001688 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001689 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Tetsuo Handa2e710292014-04-22 21:48:30 +09001691 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001692 if (err) {
1693 if (err == -ESRCH) /* empty table */
1694 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001695 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001696 }
Herbert Xubf088672005-06-18 22:44:00 -07001697 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001698 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001699 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001700 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001701 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001702 km_state_notify(NULL, &c);
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 return 0;
1705}
1706
Steffen Klassertd8647b72011-03-08 00:10:27 +00001707static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001708{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001709 size_t replay_size = x->replay_esn ?
1710 xfrm_replay_state_esn_len(x->replay_esn) :
1711 sizeof(struct xfrm_replay_state);
1712
Thomas Graf7deb2262007-08-22 13:57:39 -07001713 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001714 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001715 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001716 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001717 + nla_total_size(4) /* XFRM_AE_RTHR */
1718 + nla_total_size(4); /* XFRM_AE_ETHR */
1719}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001720
David S. Miller214e0052011-02-24 00:02:38 -05001721static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001722{
1723 struct xfrm_aevent_id *id;
1724 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001725 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001726
Eric W. Biederman15e47302012-09-07 20:12:54 +00001727 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001728 if (nlh == NULL)
1729 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001730
Thomas Graf7b67c852007-08-22 13:53:52 -07001731 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001732 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001733 id->sa_id.spi = x->id.spi;
1734 id->sa_id.family = x->props.family;
1735 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001736 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001737 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001738 id->flags = c->data.aevent;
1739
David S. Millerd0fde792012-03-29 04:02:26 -04001740 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001741 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1742 xfrm_replay_state_esn_len(x->replay_esn),
1743 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001744 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001745 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1746 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001747 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001748 if (err)
1749 goto out_cancel;
1750 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1751 if (err)
1752 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001753
David S. Miller1d1e34d2012-06-27 21:57:03 -07001754 if (id->flags & XFRM_AE_RTHR) {
1755 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1756 if (err)
1757 goto out_cancel;
1758 }
1759 if (id->flags & XFRM_AE_ETHR) {
1760 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1761 x->replay_maxage * 10 / HZ);
1762 if (err)
1763 goto out_cancel;
1764 }
1765 err = xfrm_mark_put(skb, &x->mark);
1766 if (err)
1767 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001768
Thomas Graf98250692007-08-22 12:47:26 -07001769 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001770
David S. Miller1d1e34d2012-06-27 21:57:03 -07001771out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001772 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001773 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001774}
1775
Christoph Hellwig22e70052007-01-02 15:22:30 -08001776static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001777 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001778{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001779 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001780 struct xfrm_state *x;
1781 struct sk_buff *r_skb;
1782 int err;
1783 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001784 u32 mark;
1785 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001786 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001787 struct xfrm_usersa_id *id = &p->sa_id;
1788
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001789 mark = xfrm_mark_get(attrs, &m);
1790
1791 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001792 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001793 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001794
1795 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1796 if (r_skb == NULL) {
1797 xfrm_state_put(x);
1798 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001799 }
1800
1801 /*
1802 * XXX: is this lock really needed - none of the other
1803 * gets lock (the concern is things getting updated
1804 * while we are still reading) - jhs
1805 */
1806 spin_lock_bh(&x->lock);
1807 c.data.aevent = p->flags;
1808 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001809 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001810
1811 if (build_aevent(r_skb, x, &c) < 0)
1812 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001813 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001814 spin_unlock_bh(&x->lock);
1815 xfrm_state_put(x);
1816 return err;
1817}
1818
Christoph Hellwig22e70052007-01-02 15:22:30 -08001819static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001820 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001821{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001822 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001823 struct xfrm_state *x;
1824 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001825 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001826 u32 mark = 0;
1827 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001828 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001829 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001830 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001831 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001832
Steffen Klassertd8647b72011-03-08 00:10:27 +00001833 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001834 return err;
1835
1836 /* pedantic mode - thou shalt sayeth replaceth */
1837 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1838 return err;
1839
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001840 mark = xfrm_mark_get(attrs, &m);
1841
1842 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 -08001843 if (x == NULL)
1844 return -ESRCH;
1845
1846 if (x->km.state != XFRM_STATE_VALID)
1847 goto out;
1848
Steffen Klassert4479ff72013-09-09 09:39:01 +02001849 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001850 if (err)
1851 goto out;
1852
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001853 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001854 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001855 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001856
1857 c.event = nlh->nlmsg_type;
1858 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001859 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001860 c.data.aevent = XFRM_AE_CU;
1861 km_state_notify(x, &c);
1862 err = 0;
1863out:
1864 xfrm_state_put(x);
1865 return err;
1866}
1867
Christoph Hellwig22e70052007-01-02 15:22:30 -08001868static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001869 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001871 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001872 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001873 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001874 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001875
Thomas Graf35a7aa02007-08-22 14:00:40 -07001876 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001877 if (err)
1878 return err;
1879
Tetsuo Handa2e710292014-04-22 21:48:30 +09001880 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001881 if (err) {
1882 if (err == -ESRCH) /* empty table */
1883 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001884 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001885 }
1886
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001887 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001888 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001889 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001890 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001891 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001892 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return 0;
1894}
1895
Christoph Hellwig22e70052007-01-02 15:22:30 -08001896static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001897 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001898{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001899 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001900 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001901 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001902 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001903 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001904 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001905 struct xfrm_mark m;
1906 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001907
Thomas Graf35a7aa02007-08-22 14:00:40 -07001908 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001909 if (err)
1910 return err;
1911
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001912 err = verify_policy_dir(p->dir);
1913 if (err)
1914 return err;
1915
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001916 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001917 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001918 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001919 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001920 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001921
Thomas Graf35a7aa02007-08-22 14:00:40 -07001922 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001923 if (err)
1924 return err;
1925
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001926 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001927 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001928 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001929
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001930 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001931 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001932 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001933 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001934 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001935 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001936 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001937 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001938 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001939 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001940
Timo Teräsea2dea92010-03-31 00:17:05 +00001941 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001942 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001943
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001944 err = 0;
1945 if (up->hard) {
1946 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001947 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001948 } else {
1949 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001950 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001951 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001952 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001953
1954out:
1955 xfrm_pol_put(xp);
1956 return err;
1957}
1958
Christoph Hellwig22e70052007-01-02 15:22:30 -08001959static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001960 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001961{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001962 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001963 struct xfrm_state *x;
1964 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001965 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001966 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001967 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001968 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001969
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001970 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 -08001971
David S. Miller3a765aa2007-02-26 14:52:21 -08001972 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001973 if (x == NULL)
1974 return err;
1975
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001976 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001977 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001978 if (x->km.state != XFRM_STATE_VALID)
1979 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001980 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001981
Joy Latten161a09e2006-11-27 13:11:54 -06001982 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001983 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001984 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001985 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001986 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001987out:
1988 spin_unlock_bh(&x->lock);
1989 xfrm_state_put(x);
1990 return err;
1991}
1992
Christoph Hellwig22e70052007-01-02 15:22:30 -08001993static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001994 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001995{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001996 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001997 struct xfrm_policy *xp;
1998 struct xfrm_user_tmpl *ut;
1999 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002000 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002001 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002002
Thomas Graf7b67c852007-08-22 13:53:52 -07002003 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002004 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002005 int err = -ENOMEM;
2006
2007 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002008 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002009
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002010 xfrm_mark_get(attrs, &mark);
2011
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002012 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002013 if (err)
2014 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002015
2016 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002017 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002018 if (!xp)
2019 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002020
2021 memcpy(&x->id, &ua->id, sizeof(ua->id));
2022 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2023 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002024 xp->mark.m = x->mark.m = mark.m;
2025 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002026 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002027 /* extract the templates and for each call km_key */
2028 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2029 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2030 memcpy(&x->id, &t->id, sizeof(x->id));
2031 x->props.mode = t->mode;
2032 x->props.reqid = t->reqid;
2033 x->props.family = ut->family;
2034 t->aalgos = ua->aalgos;
2035 t->ealgos = ua->ealgos;
2036 t->calgos = ua->calgos;
2037 err = km_query(x, t, xp);
2038
2039 }
2040
2041 kfree(x);
2042 kfree(xp);
2043
2044 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002045
2046bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002047 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002048free_state:
2049 kfree(x);
2050nomem:
2051 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002052}
2053
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002054#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002055static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002056 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002057 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002058{
Thomas Graf5424f322007-08-22 14:01:33 -07002059 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002060 struct xfrm_user_migrate *um;
2061 int i, num_migrate;
2062
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002063 if (k != NULL) {
2064 struct xfrm_user_kmaddress *uk;
2065
2066 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2067 memcpy(&k->local, &uk->local, sizeof(k->local));
2068 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2069 k->family = uk->family;
2070 k->reserved = uk->reserved;
2071 }
2072
Thomas Graf5424f322007-08-22 14:01:33 -07002073 um = nla_data(rt);
2074 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002075
2076 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2077 return -EINVAL;
2078
2079 for (i = 0; i < num_migrate; i++, um++, ma++) {
2080 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2081 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2082 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2083 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2084
2085 ma->proto = um->proto;
2086 ma->mode = um->mode;
2087 ma->reqid = um->reqid;
2088
2089 ma->old_family = um->old_family;
2090 ma->new_family = um->new_family;
2091 }
2092
2093 *num = i;
2094 return 0;
2095}
2096
2097static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002098 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002099{
Thomas Graf7b67c852007-08-22 13:53:52 -07002100 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002101 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002102 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002103 u8 type;
2104 int err;
2105 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002106 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002107
Thomas Graf35a7aa02007-08-22 14:00:40 -07002108 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002109 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002110
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002111 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2112
Thomas Graf5424f322007-08-22 14:01:33 -07002113 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002114 if (err)
2115 return err;
2116
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002117 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002118 if (err)
2119 return err;
2120
2121 if (!n)
2122 return 0;
2123
Fan Du8d549c42013-11-07 17:47:49 +08002124 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002125
2126 return 0;
2127}
2128#else
2129static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002130 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002131{
2132 return -ENOPROTOOPT;
2133}
2134#endif
2135
2136#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002137static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002138{
2139 struct xfrm_user_migrate um;
2140
2141 memset(&um, 0, sizeof(um));
2142 um.proto = m->proto;
2143 um.mode = m->mode;
2144 um.reqid = m->reqid;
2145 um.old_family = m->old_family;
2146 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2147 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2148 um.new_family = m->new_family;
2149 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2150 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2151
Thomas Grafc0144be2007-08-22 13:55:43 -07002152 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002153}
2154
David S. Miller183cad12011-02-24 00:28:01 -05002155static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002156{
2157 struct xfrm_user_kmaddress uk;
2158
2159 memset(&uk, 0, sizeof(uk));
2160 uk.family = k->family;
2161 uk.reserved = k->reserved;
2162 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002163 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002164
2165 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2166}
2167
2168static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002169{
2170 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002171 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2172 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2173 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002174}
2175
David S. Miller183cad12011-02-24 00:28:01 -05002176static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2177 int num_migrate, const struct xfrm_kmaddress *k,
2178 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002179{
David S. Miller183cad12011-02-24 00:28:01 -05002180 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002181 struct xfrm_userpolicy_id *pol_id;
2182 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002183 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002184
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002185 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2186 if (nlh == NULL)
2187 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002188
Thomas Graf7b67c852007-08-22 13:53:52 -07002189 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002190 /* copy data from selector, dir, and type to the pol_id */
2191 memset(pol_id, 0, sizeof(*pol_id));
2192 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2193 pol_id->dir = dir;
2194
David S. Miller1d1e34d2012-06-27 21:57:03 -07002195 if (k != NULL) {
2196 err = copy_to_user_kmaddress(k, skb);
2197 if (err)
2198 goto out_cancel;
2199 }
2200 err = copy_to_user_policy_type(type, skb);
2201 if (err)
2202 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002203 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002204 err = copy_to_user_migrate(mp, skb);
2205 if (err)
2206 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002207 }
2208
Thomas Graf98250692007-08-22 12:47:26 -07002209 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002210
2211out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002212 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002213 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002214}
2215
David S. Miller183cad12011-02-24 00:28:01 -05002216static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2217 const struct xfrm_migrate *m, int num_migrate,
2218 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002219{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002220 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002221 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002222
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002223 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002224 if (skb == NULL)
2225 return -ENOMEM;
2226
2227 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002228 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002229 BUG();
2230
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002231 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002232}
2233#else
David S. Miller183cad12011-02-24 00:28:01 -05002234static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2235 const struct xfrm_migrate *m, int num_migrate,
2236 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002237{
2238 return -ENOPROTOOPT;
2239}
2240#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002241
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002242#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002243
2244static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002245 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002246 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2247 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2248 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2249 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2250 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2251 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002252 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002253 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002254 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002255 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002256 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002257 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002258 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002259 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2260 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002261 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002262 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002263 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2264 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265};
2266
Thomas Graf492b5582005-05-03 14:26:40 -07002267#undef XMSGSIZE
2268
Thomas Grafcf5cb792007-08-22 13:59:04 -07002269static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002270 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2271 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2272 [XFRMA_LASTUSED] = { .type = NLA_U64},
2273 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002274 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002275 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2276 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2277 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2278 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2279 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2280 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2281 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2282 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2283 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2284 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2285 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2286 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2287 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2288 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002289 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002290 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002291 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002292 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002293 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002294 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002295 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002296};
2297
Mathias Krause05600a72013-02-24 14:10:27 +01002298static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002299 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002301 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002302} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2303 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2304 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2305 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002306 .dump = xfrm_dump_sa,
2307 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002308 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2309 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2310 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002311 .dump = xfrm_dump_policy,
2312 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002313 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002314 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002315 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002316 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2317 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002318 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002319 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2320 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002321 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2322 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002323 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002324 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002325 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326};
2327
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002328static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002330 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002331 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002332 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002333 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002337 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 type -= XFRM_MSG_BASE;
2340 link = &xfrm_dispatch[type];
2341
2342 /* All operations require privileges, even GET */
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002343 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002344 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Thomas Graf492b5582005-05-03 14:26:40 -07002346 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2347 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002348 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002350 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002352 {
2353 struct netlink_dump_control c = {
2354 .dump = link->dump,
2355 .done = link->done,
2356 };
2357 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 }
2360
Thomas Graf35a7aa02007-08-22 14:00:40 -07002361 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002362 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002363 if (err < 0)
2364 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
2366 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Thomas Graf5424f322007-08-22 14:01:33 -07002369 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370}
2371
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002372static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373{
Fan Du283bc9f2013-11-07 17:47:50 +08002374 struct net *net = sock_net(skb->sk);
2375
2376 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002377 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002378 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
Thomas Graf7deb2262007-08-22 13:57:39 -07002381static inline size_t xfrm_expire_msgsize(void)
2382{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002383 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2384 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002385}
2386
David S. Miller214e0052011-02-24 00:02:38 -05002387static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
2389 struct xfrm_user_expire *ue;
2390 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002391 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Eric W. Biederman15e47302012-09-07 20:12:54 +00002393 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002394 if (nlh == NULL)
2395 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Thomas Graf7b67c852007-08-22 13:53:52 -07002397 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002399 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
David S. Miller1d1e34d2012-06-27 21:57:03 -07002401 err = xfrm_mark_put(skb, &x->mark);
2402 if (err)
2403 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002404
Thomas Graf98250692007-08-22 12:47:26 -07002405 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
David S. Miller214e0052011-02-24 00:02:38 -05002408static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002410 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 struct sk_buff *skb;
2412
Thomas Graf7deb2262007-08-22 13:57:39 -07002413 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (skb == NULL)
2415 return -ENOMEM;
2416
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002417 if (build_expire(skb, x, c) < 0) {
2418 kfree_skb(skb);
2419 return -EMSGSIZE;
2420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002422 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423}
2424
David S. Miller214e0052011-02-24 00:02:38 -05002425static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002426{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002427 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002428 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002429
Steffen Klassertd8647b72011-03-08 00:10:27 +00002430 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002431 if (skb == NULL)
2432 return -ENOMEM;
2433
2434 if (build_aevent(skb, x, c) < 0)
2435 BUG();
2436
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002437 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002438}
2439
David S. Miller214e0052011-02-24 00:02:38 -05002440static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002441{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002442 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002443 struct xfrm_usersa_flush *p;
2444 struct nlmsghdr *nlh;
2445 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002446 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002447
Thomas Graf7deb2262007-08-22 13:57:39 -07002448 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002449 if (skb == NULL)
2450 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002451
Eric W. Biederman15e47302012-09-07 20:12:54 +00002452 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002453 if (nlh == NULL) {
2454 kfree_skb(skb);
2455 return -EMSGSIZE;
2456 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002457
Thomas Graf7b67c852007-08-22 13:53:52 -07002458 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002459 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002460
Thomas Graf98250692007-08-22 12:47:26 -07002461 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002462
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002463 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002464}
2465
Thomas Graf7deb2262007-08-22 13:57:39 -07002466static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002467{
Thomas Graf7deb2262007-08-22 13:57:39 -07002468 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002469 if (x->aead)
2470 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002471 if (x->aalg) {
2472 l += nla_total_size(sizeof(struct xfrm_algo) +
2473 (x->aalg->alg_key_len + 7) / 8);
2474 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2475 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002476 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002477 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002478 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002479 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002480 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002481 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002482 if (x->tfcpad)
2483 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002484 if (x->replay_esn)
2485 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002486 if (x->security)
2487 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2488 x->security->ctx_len);
2489 if (x->coaddr)
2490 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002491 if (x->props.extra_flags)
2492 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002493
Herbert Xud26f3982007-11-13 21:47:08 -08002494 /* Must count x->lastused as it may become non-zero behind our back. */
2495 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002496
2497 return l;
2498}
2499
David S. Miller214e0052011-02-24 00:02:38 -05002500static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002501{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002502 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002503 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002504 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002505 struct nlmsghdr *nlh;
2506 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002507 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002508 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002509
2510 headlen = sizeof(*p);
2511 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002512 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002513 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002514 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002515 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002516 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002517
Thomas Graf7deb2262007-08-22 13:57:39 -07002518 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002519 if (skb == NULL)
2520 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002521
Eric W. Biederman15e47302012-09-07 20:12:54 +00002522 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002523 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002524 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002525 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002526
Thomas Graf7b67c852007-08-22 13:53:52 -07002527 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002528 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002529 struct nlattr *attr;
2530
Thomas Graf7b67c852007-08-22 13:53:52 -07002531 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002532 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2533 id->spi = x->id.spi;
2534 id->family = x->props.family;
2535 id->proto = x->id.proto;
2536
Thomas Grafc0144be2007-08-22 13:55:43 -07002537 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002538 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002539 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002540 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002541
2542 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002543 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002544 err = copy_to_user_state_extra(x, p, skb);
2545 if (err)
2546 goto out_free_skb;
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
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002550 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002551
David S. Miller1d1e34d2012-06-27 21:57:03 -07002552out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002553 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002554 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002555}
2556
David S. Miller214e0052011-02-24 00:02:38 -05002557static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002558{
2559
2560 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002561 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002562 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002563 case XFRM_MSG_NEWAE:
2564 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002565 case XFRM_MSG_DELSA:
2566 case XFRM_MSG_UPDSA:
2567 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002568 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002569 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002570 return xfrm_notify_sa_flush(c);
2571 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002572 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2573 c->event);
2574 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002575 }
2576
2577 return 0;
2578
2579}
2580
Thomas Graf7deb2262007-08-22 13:57:39 -07002581static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2582 struct xfrm_policy *xp)
2583{
2584 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2585 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002586 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002587 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2588 + userpolicy_type_attrsize();
2589}
2590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002592 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002594 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 struct xfrm_user_acquire *ua;
2596 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002597 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002599 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2600 if (nlh == NULL)
2601 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Thomas Graf7b67c852007-08-22 13:53:52 -07002603 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 memcpy(&ua->id, &x->id, sizeof(ua->id));
2605 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2606 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002607 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 ua->aalgos = xt->aalgos;
2609 ua->ealgos = xt->ealgos;
2610 ua->calgos = xt->calgos;
2611 ua->seq = x->km.seq = seq;
2612
David S. Miller1d1e34d2012-06-27 21:57:03 -07002613 err = copy_to_user_tmpl(xp, skb);
2614 if (!err)
2615 err = copy_to_user_state_sec_ctx(x, skb);
2616 if (!err)
2617 err = copy_to_user_policy_type(xp->type, skb);
2618 if (!err)
2619 err = xfrm_mark_put(skb, &xp->mark);
2620 if (err) {
2621 nlmsg_cancel(skb, nlh);
2622 return err;
2623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Thomas Graf98250692007-08-22 12:47:26 -07002625 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626}
2627
2628static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002629 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002631 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Thomas Graf7deb2262007-08-22 13:57:39 -07002634 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (skb == NULL)
2636 return -ENOMEM;
2637
Fan Du65e07362012-08-15 10:13:47 +08002638 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 BUG();
2640
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002641 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
2643
2644/* User gives us xfrm_user_policy_info followed by an array of 0
2645 * or more templates.
2646 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002647static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 u8 *data, int len, int *dir)
2649{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002650 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2652 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2653 struct xfrm_policy *xp;
2654 int nr;
2655
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002656 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 case AF_INET:
2658 if (opt != IP_XFRM_POLICY) {
2659 *dir = -EOPNOTSUPP;
2660 return NULL;
2661 }
2662 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002663#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 case AF_INET6:
2665 if (opt != IPV6_XFRM_POLICY) {
2666 *dir = -EOPNOTSUPP;
2667 return NULL;
2668 }
2669 break;
2670#endif
2671 default:
2672 *dir = -EINVAL;
2673 return NULL;
2674 }
2675
2676 *dir = -EINVAL;
2677
2678 if (len < sizeof(*p) ||
2679 verify_newpolicy_info(p))
2680 return NULL;
2681
2682 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002683 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 return NULL;
2685
Herbert Xua4f1bac2005-07-26 15:43:17 -07002686 if (p->dir > XFRM_POLICY_OUT)
2687 return NULL;
2688
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002689 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 if (xp == NULL) {
2691 *dir = -ENOBUFS;
2692 return NULL;
2693 }
2694
2695 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002696 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 copy_templates(xp, ut, nr);
2698
2699 *dir = p->dir;
2700
2701 return xp;
2702}
2703
Thomas Graf7deb2262007-08-22 13:57:39 -07002704static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2705{
2706 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2707 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2708 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002709 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002710 + userpolicy_type_attrsize();
2711}
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002714 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
2716 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002717 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002718 struct nlmsghdr *nlh;
2719 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Eric W. Biederman15e47302012-09-07 20:12:54 +00002721 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002722 if (nlh == NULL)
2723 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Thomas Graf7b67c852007-08-22 13:53:52 -07002725 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002727 err = copy_to_user_tmpl(xp, skb);
2728 if (!err)
2729 err = copy_to_user_sec_ctx(xp, skb);
2730 if (!err)
2731 err = copy_to_user_policy_type(xp->type, skb);
2732 if (!err)
2733 err = xfrm_mark_put(skb, &xp->mark);
2734 if (err) {
2735 nlmsg_cancel(skb, nlh);
2736 return err;
2737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 upe->hard = !!hard;
2739
Thomas Graf98250692007-08-22 12:47:26 -07002740 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
David S. Miller214e0052011-02-24 00:02:38 -05002743static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002745 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Thomas Graf7deb2262007-08-22 13:57:39 -07002748 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 if (skb == NULL)
2750 return -ENOMEM;
2751
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002752 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 BUG();
2754
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002755 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
David S. Miller214e0052011-02-24 00:02:38 -05002758static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002759{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002760 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002761 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002763 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764 struct nlmsghdr *nlh;
2765 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002766 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002767
2768 headlen = sizeof(*p);
2769 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002770 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002771 headlen = sizeof(*id);
2772 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002773 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002774 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002775 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002776
Thomas Graf7deb2262007-08-22 13:57:39 -07002777 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002778 if (skb == NULL)
2779 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002780
Eric W. Biederman15e47302012-09-07 20:12:54 +00002781 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002782 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002783 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002784 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002785
Thomas Graf7b67c852007-08-22 13:53:52 -07002786 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002787 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002788 struct nlattr *attr;
2789
Thomas Graf7b67c852007-08-22 13:53:52 -07002790 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002791 memset(id, 0, sizeof(*id));
2792 id->dir = dir;
2793 if (c->data.byid)
2794 id->index = xp->index;
2795 else
2796 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2797
Thomas Grafc0144be2007-08-22 13:55:43 -07002798 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002799 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002800 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002801 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002802
2803 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002804 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002805
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002807 err = copy_to_user_tmpl(xp, skb);
2808 if (!err)
2809 err = copy_to_user_policy_type(xp->type, skb);
2810 if (!err)
2811 err = xfrm_mark_put(skb, &xp->mark);
2812 if (err)
2813 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002814
Thomas Graf98250692007-08-22 12:47:26 -07002815 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002816
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002817 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002818
David S. Miller1d1e34d2012-06-27 21:57:03 -07002819out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002820 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002821 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002822}
2823
David S. Miller214e0052011-02-24 00:02:38 -05002824static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002825{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002826 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827 struct nlmsghdr *nlh;
2828 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002829 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002830
Thomas Graf7deb2262007-08-22 13:57:39 -07002831 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002832 if (skb == NULL)
2833 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002834
Eric W. Biederman15e47302012-09-07 20:12:54 +00002835 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002836 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002837 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002838 goto out_free_skb;
2839 err = copy_to_user_policy_type(c->data.type, skb);
2840 if (err)
2841 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002842
Thomas Graf98250692007-08-22 12:47:26 -07002843 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002844
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002845 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002846
David S. Miller1d1e34d2012-06-27 21:57:03 -07002847out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002849 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002850}
2851
David S. Miller214e0052011-02-24 00:02:38 -05002852static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002853{
2854
2855 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002856 case XFRM_MSG_NEWPOLICY:
2857 case XFRM_MSG_UPDPOLICY:
2858 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002859 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002860 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002861 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002862 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863 return xfrm_exp_policy_notify(xp, dir, c);
2864 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002865 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2866 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002867 }
2868
2869 return 0;
2870
2871}
2872
Thomas Graf7deb2262007-08-22 13:57:39 -07002873static inline size_t xfrm_report_msgsize(void)
2874{
2875 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2876}
2877
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002878static int build_report(struct sk_buff *skb, u8 proto,
2879 struct xfrm_selector *sel, xfrm_address_t *addr)
2880{
2881 struct xfrm_user_report *ur;
2882 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002883
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002884 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2885 if (nlh == NULL)
2886 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002887
Thomas Graf7b67c852007-08-22 13:53:52 -07002888 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002889 ur->proto = proto;
2890 memcpy(&ur->sel, sel, sizeof(ur->sel));
2891
David S. Miller1d1e34d2012-06-27 21:57:03 -07002892 if (addr) {
2893 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2894 if (err) {
2895 nlmsg_cancel(skb, nlh);
2896 return err;
2897 }
2898 }
Thomas Graf98250692007-08-22 12:47:26 -07002899 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002900}
2901
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002902static int xfrm_send_report(struct net *net, u8 proto,
2903 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002904{
2905 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002906
Thomas Graf7deb2262007-08-22 13:57:39 -07002907 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002908 if (skb == NULL)
2909 return -ENOMEM;
2910
2911 if (build_report(skb, proto, sel, addr) < 0)
2912 BUG();
2913
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002914 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002915}
2916
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002917static inline size_t xfrm_mapping_msgsize(void)
2918{
2919 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2920}
2921
2922static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2923 xfrm_address_t *new_saddr, __be16 new_sport)
2924{
2925 struct xfrm_user_mapping *um;
2926 struct nlmsghdr *nlh;
2927
2928 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2929 if (nlh == NULL)
2930 return -EMSGSIZE;
2931
2932 um = nlmsg_data(nlh);
2933
2934 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2935 um->id.spi = x->id.spi;
2936 um->id.family = x->props.family;
2937 um->id.proto = x->id.proto;
2938 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2939 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2940 um->new_sport = new_sport;
2941 um->old_sport = x->encap->encap_sport;
2942 um->reqid = x->props.reqid;
2943
2944 return nlmsg_end(skb, nlh);
2945}
2946
2947static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2948 __be16 sport)
2949{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002950 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002951 struct sk_buff *skb;
2952
2953 if (x->id.proto != IPPROTO_ESP)
2954 return -EINVAL;
2955
2956 if (!x->encap)
2957 return -EINVAL;
2958
2959 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2960 if (skb == NULL)
2961 return -ENOMEM;
2962
2963 if (build_mapping(skb, x, ipaddr, sport) < 0)
2964 BUG();
2965
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002966 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002967}
2968
Horia Geanta0f245582014-02-12 16:20:06 +02002969static bool xfrm_is_alive(const struct km_event *c)
2970{
2971 return (bool)xfrm_acquire_is_on(c->net);
2972}
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974static struct xfrm_mgr netlink_mgr = {
2975 .id = "netlink",
2976 .notify = xfrm_send_state_notify,
2977 .acquire = xfrm_send_acquire,
2978 .compile_policy = xfrm_compile_policy,
2979 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002980 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002981 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002982 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02002983 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984};
2985
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002986static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987{
Patrick McHardybe336902006-03-20 22:40:54 -08002988 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002989 struct netlink_kernel_cfg cfg = {
2990 .groups = XFRMNLGRP_MAX,
2991 .input = xfrm_netlink_rcv,
2992 };
Patrick McHardybe336902006-03-20 22:40:54 -08002993
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002994 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08002995 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002997 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00002998 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 return 0;
3000}
3001
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003002static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003003{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003004 struct net *net;
3005 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003006 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003007 synchronize_net();
3008 list_for_each_entry(net, net_exit_list, exit_list)
3009 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003010}
3011
3012static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003013 .init = xfrm_user_net_init,
3014 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003015};
3016
3017static int __init xfrm_user_init(void)
3018{
3019 int rv;
3020
3021 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3022
3023 rv = register_pernet_subsys(&xfrm_user_net_ops);
3024 if (rv < 0)
3025 return rv;
3026 rv = xfrm_register_km(&netlink_mgr);
3027 if (rv < 0)
3028 unregister_pernet_subsys(&xfrm_user_net_ops);
3029 return rv;
3030}
3031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032static void __exit xfrm_user_exit(void)
3033{
3034 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003035 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036}
3037
3038module_init(xfrm_user_init);
3039module_exit(xfrm_user_exit);
3040MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003041MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003042