blob: 16c84608e81efc881adec9effdacc32f389a11ed [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
Herbert Xu1a6509d2008-01-28 19:37:29 -080035static inline int aead_len(struct xfrm_algo_aead *alg)
36{
37 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8);
38}
39
Thomas Graf5424f322007-08-22 14:01:33 -070040static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Thomas Graf5424f322007-08-22 14:01:33 -070042 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct xfrm_algo *algp;
44
45 if (!rt)
46 return 0;
47
Thomas Graf5424f322007-08-22 14:01:33 -070048 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080049 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070050 return -EINVAL;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 switch (type) {
53 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 break;
57
58 default:
59 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
63 return 0;
64}
65
Martin Willi4447bb32009-11-25 00:29:52 +000066static int verify_auth_trunc(struct nlattr **attrs)
67{
68 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
69 struct xfrm_algo_auth *algp;
70
71 if (!rt)
72 return 0;
73
74 algp = nla_data(rt);
75 if (nla_len(rt) < xfrm_alg_auth_len(algp))
76 return -EINVAL;
77
78 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
79 return 0;
80}
81
Herbert Xu1a6509d2008-01-28 19:37:29 -080082static int verify_aead(struct nlattr **attrs)
83{
84 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
85 struct xfrm_algo_aead *algp;
86
87 if (!rt)
88 return 0;
89
90 algp = nla_data(rt);
91 if (nla_len(rt) < aead_len(algp))
92 return -EINVAL;
93
94 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
95 return 0;
96}
97
Thomas Graf5424f322007-08-22 14:01:33 -070098static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070099 xfrm_address_t **addrp)
100{
Thomas Graf5424f322007-08-22 14:01:33 -0700101 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700102
Thomas Grafcf5cb792007-08-22 13:59:04 -0700103 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700104 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700105}
Trent Jaegerdf718372005-12-13 23:12:27 -0800106
Thomas Graf5424f322007-08-22 14:01:33 -0700107static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800108{
Thomas Graf5424f322007-08-22 14:01:33 -0700109 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800110 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800111
112 if (!rt)
113 return 0;
114
Thomas Graf5424f322007-08-22 14:01:33 -0700115 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700116 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800117 return -EINVAL;
118
119 return 0;
120}
121
Steffen Klassertd8647b72011-03-08 00:10:27 +0000122static inline int verify_replay(struct xfrm_usersa_info *p,
123 struct nlattr **attrs)
124{
125 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000126 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000127
Mathias Krauseecd79182012-09-20 10:01:49 +0000128 if (p->flags & XFRM_STATE_ESN) {
129 if (!rt)
130 return -EINVAL;
131
132 rs = nla_data(rt);
133
134 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
135 return -EINVAL;
136
137 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
138 nla_len(rt) != sizeof(*rs))
139 return -EINVAL;
140 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000141
Steffen Klassertd8647b72011-03-08 00:10:27 +0000142 if (!rt)
143 return 0;
144
Steffen Klassert02aadf72011-03-28 19:48:09 +0000145 if (p->id.proto != IPPROTO_ESP)
146 return -EINVAL;
147
Steffen Klassertd8647b72011-03-08 00:10:27 +0000148 if (p->replay_window != 0)
149 return -EINVAL;
150
151 return 0;
152}
Trent Jaegerdf718372005-12-13 23:12:27 -0800153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700155 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 int err;
158
159 err = -EINVAL;
160 switch (p->family) {
161 case AF_INET:
162 break;
163
164 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000165#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167#else
168 err = -EAFNOSUPPORT;
169 goto out;
170#endif
171
172 default:
173 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 err = -EINVAL;
177 switch (p->id.proto) {
178 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000179 if ((!attrs[XFRMA_ALG_AUTH] &&
180 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700182 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000183 attrs[XFRMA_ALG_COMP] ||
184 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 goto out;
186 break;
187
188 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800189 if (attrs[XFRMA_ALG_COMP])
190 goto out;
191 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000192 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800193 !attrs[XFRMA_ALG_CRYPT] &&
194 !attrs[XFRMA_ALG_AEAD])
195 goto out;
196 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000197 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800198 attrs[XFRMA_ALG_CRYPT]) &&
199 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000201 if (attrs[XFRMA_TFCPAD] &&
202 p->mode != XFRM_MODE_TUNNEL)
203 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205
206 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800208 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700209 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000210 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000211 attrs[XFRMA_ALG_CRYPT] ||
212 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 goto out;
214 break;
215
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000216#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700217 case IPPROTO_DSTOPTS:
218 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700219 if (attrs[XFRMA_ALG_COMP] ||
220 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000221 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800222 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700223 attrs[XFRMA_ALG_CRYPT] ||
224 attrs[XFRMA_ENCAP] ||
225 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000226 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700227 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700228 goto out;
229 break;
230#endif
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 default:
233 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Herbert Xu1a6509d2008-01-28 19:37:29 -0800236 if ((err = verify_aead(attrs)))
237 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000238 if ((err = verify_auth_trunc(attrs)))
239 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700240 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
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_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700246 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800247 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000248 if ((err = verify_replay(p, attrs)))
249 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 err = -EINVAL;
252 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700253 case XFRM_MODE_TRANSPORT:
254 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700255 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700256 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258
259 default:
260 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 err = 0;
264
265out:
266 return err;
267}
268
269static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800270 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700271 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct xfrm_algo *p, *ualg;
274 struct xfrm_algo_desc *algo;
275
276 if (!rta)
277 return 0;
278
Thomas Graf5424f322007-08-22 14:01:33 -0700279 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 algo = get_byname(ualg->alg_name, 1);
282 if (!algo)
283 return -ENOSYS;
284 *props = algo->desc.sadb_alg_id;
285
Eric Dumazet0f99be02008-01-08 23:39:06 -0800286 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (!p)
288 return -ENOMEM;
289
Herbert Xu04ff1262006-08-13 08:50:00 +1000290 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 *algpp = p;
292 return 0;
293}
294
Martin Willi4447bb32009-11-25 00:29:52 +0000295static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
296 struct nlattr *rta)
297{
298 struct xfrm_algo *ualg;
299 struct xfrm_algo_auth *p;
300 struct xfrm_algo_desc *algo;
301
302 if (!rta)
303 return 0;
304
305 ualg = nla_data(rta);
306
307 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
308 if (!algo)
309 return -ENOSYS;
310 *props = algo->desc.sadb_alg_id;
311
312 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
313 if (!p)
314 return -ENOMEM;
315
316 strcpy(p->alg_name, algo->name);
317 p->alg_key_len = ualg->alg_key_len;
318 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
319 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
320
321 *algpp = p;
322 return 0;
323}
324
325static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
326 struct nlattr *rta)
327{
328 struct xfrm_algo_auth *p, *ualg;
329 struct xfrm_algo_desc *algo;
330
331 if (!rta)
332 return 0;
333
334 ualg = nla_data(rta);
335
336 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
337 if (!algo)
338 return -ENOSYS;
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +0000339 if ((ualg->alg_trunc_len / 8) > MAX_AH_AUTH_LEN ||
340 ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000341 return -EINVAL;
342 *props = algo->desc.sadb_alg_id;
343
344 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
345 if (!p)
346 return -ENOMEM;
347
348 strcpy(p->alg_name, algo->name);
349 if (!p->alg_trunc_len)
350 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
351
352 *algpp = p;
353 return 0;
354}
355
Herbert Xu1a6509d2008-01-28 19:37:29 -0800356static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
357 struct nlattr *rta)
358{
359 struct xfrm_algo_aead *p, *ualg;
360 struct xfrm_algo_desc *algo;
361
362 if (!rta)
363 return 0;
364
365 ualg = nla_data(rta);
366
367 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
368 if (!algo)
369 return -ENOSYS;
370 *props = algo->desc.sadb_alg_id;
371
372 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
373 if (!p)
374 return -ENOMEM;
375
376 strcpy(p->alg_name, algo->name);
377 *algpp = p;
378 return 0;
379}
380
Steffen Klasserte2b19122011-03-28 19:47:30 +0000381static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
382 struct nlattr *rp)
383{
384 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000385 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000386
387 if (!replay_esn || !rp)
388 return 0;
389
390 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000391 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000392
Mathias Krauseecd79182012-09-20 10:01:49 +0000393 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000394 return -EINVAL;
395
396 return 0;
397}
398
Steffen Klassertd8647b72011-03-08 00:10:27 +0000399static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
400 struct xfrm_replay_state_esn **preplay_esn,
401 struct nlattr *rta)
402{
403 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000404 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000405
406 if (!rta)
407 return 0;
408
409 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000410 klen = xfrm_replay_state_esn_len(up);
411 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000412
Mathias Krauseecd79182012-09-20 10:01:49 +0000413 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000414 if (!p)
415 return -ENOMEM;
416
Mathias Krauseecd79182012-09-20 10:01:49 +0000417 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000418 if (!pp) {
419 kfree(p);
420 return -ENOMEM;
421 }
422
Mathias Krauseecd79182012-09-20 10:01:49 +0000423 memcpy(p, up, ulen);
424 memcpy(pp, up, ulen);
425
Steffen Klassertd8647b72011-03-08 00:10:27 +0000426 *replay_esn = p;
427 *preplay_esn = pp;
428
429 return 0;
430}
431
Joy Latten661697f2007-04-13 16:14:35 -0700432static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800433{
Trent Jaegerdf718372005-12-13 23:12:27 -0800434 int len = 0;
435
436 if (xfrm_ctx) {
437 len += sizeof(struct xfrm_user_sec_ctx);
438 len += xfrm_ctx->ctx_len;
439 }
440 return len;
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
444{
445 memcpy(&x->id, &p->id, sizeof(x->id));
446 memcpy(&x->sel, &p->sel, sizeof(x->sel));
447 memcpy(&x->lft, &p->lft, sizeof(x->lft));
448 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800449 x->props.replay_window = min_t(unsigned int, p->replay_window,
450 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 x->props.reqid = p->reqid;
452 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700453 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700455
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700456 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700457 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800460/*
461 * someday when pfkey also has support, we could have the code
462 * somehow made shareable and move it to xfrm_state.c - JHS
463 *
464*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000465static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
466 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800467{
Thomas Graf5424f322007-08-22 14:01:33 -0700468 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000469 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700470 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
471 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
472 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800473
Steffen Klassertd8647b72011-03-08 00:10:27 +0000474 if (re) {
475 struct xfrm_replay_state_esn *replay_esn;
476 replay_esn = nla_data(re);
477 memcpy(x->replay_esn, replay_esn,
478 xfrm_replay_state_esn_len(replay_esn));
479 memcpy(x->preplay_esn, replay_esn,
480 xfrm_replay_state_esn_len(replay_esn));
481 }
482
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800483 if (rp) {
484 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700485 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800486 memcpy(&x->replay, replay, sizeof(*replay));
487 memcpy(&x->preplay, replay, sizeof(*replay));
488 }
489
490 if (lt) {
491 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700492 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800493 x->curlft.bytes = ltime->bytes;
494 x->curlft.packets = ltime->packets;
495 x->curlft.add_time = ltime->add_time;
496 x->curlft.use_time = ltime->use_time;
497 }
498
Thomas Grafcf5cb792007-08-22 13:59:04 -0700499 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700500 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800501
Thomas Grafcf5cb792007-08-22 13:59:04 -0700502 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700503 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800504}
505
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800506static struct xfrm_state *xfrm_state_construct(struct net *net,
507 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700508 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 int *errp)
510{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800511 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int err = -ENOMEM;
513
514 if (!x)
515 goto error_no_put;
516
517 copy_from_user_state(x, p);
518
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100519 if (attrs[XFRMA_SA_EXTRA_FLAGS])
520 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
521
Herbert Xu1a6509d2008-01-28 19:37:29 -0800522 if ((err = attach_aead(&x->aead, &x->props.ealgo,
523 attrs[XFRMA_ALG_AEAD])))
524 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000525 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
526 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000528 if (!x->props.aalgo) {
529 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
530 attrs[XFRMA_ALG_AUTH])))
531 goto error;
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
534 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700535 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto error;
537 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
538 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700539 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700541
542 if (attrs[XFRMA_ENCAP]) {
543 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
544 sizeof(*x->encap), GFP_KERNEL);
545 if (x->encap == NULL)
546 goto error;
547 }
548
Martin Willi35d28562010-12-08 04:37:49 +0000549 if (attrs[XFRMA_TFCPAD])
550 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
551
Thomas Graffd211502007-09-06 03:28:08 -0700552 if (attrs[XFRMA_COADDR]) {
553 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
554 sizeof(*x->coaddr), GFP_KERNEL);
555 if (x->coaddr == NULL)
556 goto error;
557 }
558
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000559 xfrm_mark_get(attrs, &x->mark);
560
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700561 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (err)
563 goto error;
564
Thomas Graffd211502007-09-06 03:28:08 -0700565 if (attrs[XFRMA_SEC_CTX] &&
566 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800567 goto error;
568
Steffen Klassertd8647b72011-03-08 00:10:27 +0000569 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
570 attrs[XFRMA_REPLAY_ESN_VAL])))
571 goto error;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800574 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800575 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800576 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800577
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000578 if ((err = xfrm_init_replay(x)))
579 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800580
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000581 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000582 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 return x;
585
586error:
587 x->km.state = XFRM_STATE_DEAD;
588 xfrm_state_put(x);
589error_no_put:
590 *errp = err;
591 return NULL;
592}
593
Christoph Hellwig22e70052007-01-02 15:22:30 -0800594static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700595 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800597 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700598 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct xfrm_state *x;
600 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700601 struct km_event c;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700602 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800603 u32 sessionid = audit_get_sessionid(current);
604 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Thomas Graf35a7aa02007-08-22 14:00:40 -0700606 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (err)
608 return err;
609
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800610 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!x)
612 return err;
613
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700614 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
616 err = xfrm_state_add(x);
617 else
618 err = xfrm_state_update(x);
619
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800620 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400621 xfrm_audit_state_add(x, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -0600622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (err < 0) {
624 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800625 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700626 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700629 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000630 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700631 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700632
633 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700634out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700635 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return err;
637}
638
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800639static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
640 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700641 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700642 int *errp)
643{
644 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000645 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700646 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000647 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700648
649 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
650 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000651 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700652 } else {
653 xfrm_address_t *saddr = NULL;
654
Thomas Graf35a7aa02007-08-22 14:00:40 -0700655 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700656 if (!saddr) {
657 err = -EINVAL;
658 goto out;
659 }
660
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800661 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000662 x = xfrm_state_lookup_byaddr(net, mark,
663 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800664 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700665 }
666
667 out:
668 if (!x && errp)
669 *errp = err;
670 return x;
671}
672
Christoph Hellwig22e70052007-01-02 15:22:30 -0800673static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700674 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800676 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700678 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700679 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700680 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700681 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800682 u32 sessionid = audit_get_sessionid(current);
683 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800685 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
David S. Miller6f68dc32006-06-08 23:58:52 -0700689 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700690 goto out;
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700693 err = -EPERM;
694 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700697 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600698
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700699 if (err < 0)
700 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700701
702 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000703 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700704 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700705 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700707out:
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800708 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400709 xfrm_audit_state_delete(x, err ? 0 : 1, loginuid, sessionid, sid);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700710 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700711 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
715{
Mathias Krausef778a632012-09-19 11:33:39 +0000716 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 memcpy(&p->id, &x->id, sizeof(p->id));
718 memcpy(&p->sel, &x->sel, sizeof(p->sel));
719 memcpy(&p->lft, &x->lft, sizeof(p->lft));
720 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
721 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700722 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 p->mode = x->props.mode;
724 p->replay_window = x->props.replay_window;
725 p->reqid = x->props.reqid;
726 p->family = x->props.family;
727 p->flags = x->props.flags;
728 p->seq = x->km.seq;
729}
730
731struct xfrm_dump_info {
732 struct sk_buff *in_skb;
733 struct sk_buff *out_skb;
734 u32 nlmsg_seq;
735 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736};
737
Thomas Grafc0144be2007-08-22 13:55:43 -0700738static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
739{
Thomas Grafc0144be2007-08-22 13:55:43 -0700740 struct xfrm_user_sec_ctx *uctx;
741 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700742 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700743
744 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
745 if (attr == NULL)
746 return -EMSGSIZE;
747
748 uctx = nla_data(attr);
749 uctx->exttype = XFRMA_SEC_CTX;
750 uctx->len = ctx_size;
751 uctx->ctx_doi = s->ctx_doi;
752 uctx->ctx_alg = s->ctx_alg;
753 uctx->ctx_len = s->ctx_len;
754 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
755
756 return 0;
757}
758
Martin Willi4447bb32009-11-25 00:29:52 +0000759static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
760{
761 struct xfrm_algo *algo;
762 struct nlattr *nla;
763
764 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
765 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
766 if (!nla)
767 return -EMSGSIZE;
768
769 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000770 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000771 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
772 algo->alg_key_len = auth->alg_key_len;
773
774 return 0;
775}
776
Herbert Xu68325d32007-10-09 13:30:57 -0700777/* Don't change this without updating xfrm_sa_len! */
778static int copy_to_user_state_extra(struct xfrm_state *x,
779 struct xfrm_usersa_info *p,
780 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700782 int ret = 0;
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 copy_to_user_state(x, p);
785
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100786 if (x->props.extra_flags) {
787 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
788 x->props.extra_flags);
789 if (ret)
790 goto out;
791 }
792
David S. Miller1d1e34d2012-06-27 21:57:03 -0700793 if (x->coaddr) {
794 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
795 if (ret)
796 goto out;
797 }
798 if (x->lastused) {
799 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
800 if (ret)
801 goto out;
802 }
803 if (x->aead) {
804 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
805 if (ret)
806 goto out;
807 }
808 if (x->aalg) {
809 ret = copy_to_user_auth(x->aalg, skb);
810 if (!ret)
811 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
812 xfrm_alg_auth_len(x->aalg), x->aalg);
813 if (ret)
814 goto out;
815 }
816 if (x->ealg) {
817 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
818 if (ret)
819 goto out;
820 }
821 if (x->calg) {
822 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
823 if (ret)
824 goto out;
825 }
826 if (x->encap) {
827 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
828 if (ret)
829 goto out;
830 }
831 if (x->tfcpad) {
832 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
833 if (ret)
834 goto out;
835 }
836 ret = xfrm_mark_put(skb, &x->mark);
837 if (ret)
838 goto out;
839 if (x->replay_esn) {
840 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
841 xfrm_replay_state_esn_len(x->replay_esn),
842 x->replay_esn);
843 if (ret)
844 goto out;
845 }
846 if (x->security)
847 ret = copy_sec_ctx(x->security, skb);
848out:
849 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700850}
851
852static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
853{
854 struct xfrm_dump_info *sp = ptr;
855 struct sk_buff *in_skb = sp->in_skb;
856 struct sk_buff *skb = sp->out_skb;
857 struct xfrm_usersa_info *p;
858 struct nlmsghdr *nlh;
859 int err;
860
Eric W. Biederman15e47302012-09-07 20:12:54 +0000861 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700862 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
863 if (nlh == NULL)
864 return -EMSGSIZE;
865
866 p = nlmsg_data(nlh);
867
868 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700869 if (err) {
870 nlmsg_cancel(skb, nlh);
871 return err;
872 }
Thomas Graf98250692007-08-22 12:47:26 -0700873 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Timo Teras4c563f72008-02-28 21:31:08 -0800877static int xfrm_dump_sa_done(struct netlink_callback *cb)
878{
879 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800880 struct sock *sk = cb->skb->sk;
881 struct net *net = sock_net(sk);
882
883 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800884 return 0;
885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
888{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800889 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800890 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 struct xfrm_dump_info info;
892
Timo Teras4c563f72008-02-28 21:31:08 -0800893 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
894 sizeof(cb->args) - sizeof(cb->args[0]));
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 info.in_skb = cb->skb;
897 info.out_skb = skb;
898 info.nlmsg_seq = cb->nlh->nlmsg_seq;
899 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800900
901 if (!cb->args[0]) {
902 cb->args[0] = 1;
903 xfrm_state_walk_init(walk, 0);
904 }
905
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800906 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 return skb->len;
909}
910
911static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
912 struct xfrm_state *x, u32 seq)
913{
914 struct xfrm_dump_info info;
915 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000916 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Thomas Graf7deb2262007-08-22 13:57:39 -0700918 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (!skb)
920 return ERR_PTR(-ENOMEM);
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 info.in_skb = in_skb;
923 info.out_skb = skb;
924 info.nlmsg_seq = seq;
925 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Mathias Krause864745d2012-09-13 11:41:26 +0000927 err = dump_one_state(x, 0, &info);
928 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000930 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932
933 return skb;
934}
935
Thomas Graf7deb2262007-08-22 13:57:39 -0700936static inline size_t xfrm_spdinfo_msgsize(void)
937{
938 return NLMSG_ALIGN(4)
939 + nla_total_size(sizeof(struct xfrmu_spdinfo))
940 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
941}
942
Alexey Dobriyane0710412010-01-23 13:37:10 +0000943static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000944 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700945{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700946 struct xfrmk_spdinfo si;
947 struct xfrmu_spdinfo spc;
948 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700949 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700950 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700951 u32 *f;
952
Eric W. Biederman15e47302012-09-07 20:12:54 +0000953 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300954 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700955 return -EMSGSIZE;
956
957 f = nlmsg_data(nlh);
958 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000959 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700960 spc.incnt = si.incnt;
961 spc.outcnt = si.outcnt;
962 spc.fwdcnt = si.fwdcnt;
963 spc.inscnt = si.inscnt;
964 spc.outscnt = si.outscnt;
965 spc.fwdscnt = si.fwdscnt;
966 sph.spdhcnt = si.spdhcnt;
967 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700968
David S. Miller1d1e34d2012-06-27 21:57:03 -0700969 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
970 if (!err)
971 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
972 if (err) {
973 nlmsg_cancel(skb, nlh);
974 return err;
975 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700976
977 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700978}
979
980static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700981 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700982{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800983 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700984 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700985 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000986 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700987 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700988
Thomas Graf7deb2262007-08-22 13:57:39 -0700989 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700990 if (r_skb == NULL)
991 return -ENOMEM;
992
Eric W. Biederman15e47302012-09-07 20:12:54 +0000993 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700994 BUG();
995
Eric W. Biederman15e47302012-09-07 20:12:54 +0000996 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700997}
998
Thomas Graf7deb2262007-08-22 13:57:39 -0700999static inline size_t xfrm_sadinfo_msgsize(void)
1000{
1001 return NLMSG_ALIGN(4)
1002 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1003 + nla_total_size(4); /* XFRMA_SAD_CNT */
1004}
1005
Alexey Dobriyane0710412010-01-23 13:37:10 +00001006static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001007 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001008{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001009 struct xfrmk_sadinfo si;
1010 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001011 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001012 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001013 u32 *f;
1014
Eric W. Biederman15e47302012-09-07 20:12:54 +00001015 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001016 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001017 return -EMSGSIZE;
1018
1019 f = nlmsg_data(nlh);
1020 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001021 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001022
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001023 sh.sadhmcnt = si.sadhmcnt;
1024 sh.sadhcnt = si.sadhcnt;
1025
David S. Miller1d1e34d2012-06-27 21:57:03 -07001026 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1027 if (!err)
1028 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1029 if (err) {
1030 nlmsg_cancel(skb, nlh);
1031 return err;
1032 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001033
1034 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001035}
1036
1037static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001038 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001039{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001040 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001041 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001042 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001043 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001044 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001045
Thomas Graf7deb2262007-08-22 13:57:39 -07001046 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001047 if (r_skb == NULL)
1048 return -ENOMEM;
1049
Eric W. Biederman15e47302012-09-07 20:12:54 +00001050 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001051 BUG();
1052
Eric W. Biederman15e47302012-09-07 20:12:54 +00001053 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001054}
1055
Christoph Hellwig22e70052007-01-02 15:22:30 -08001056static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001057 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001059 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001060 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct xfrm_state *x;
1062 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001063 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001065 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (x == NULL)
1067 goto out_noput;
1068
1069 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1070 if (IS_ERR(resp_skb)) {
1071 err = PTR_ERR(resp_skb);
1072 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001073 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075 xfrm_state_put(x);
1076out_noput:
1077 return err;
1078}
1079
1080static int verify_userspi_info(struct xfrm_userspi_info *p)
1081{
1082 switch (p->info.id.proto) {
1083 case IPPROTO_AH:
1084 case IPPROTO_ESP:
1085 break;
1086
1087 case IPPROTO_COMP:
1088 /* IPCOMP spi is 16-bits. */
1089 if (p->max >= 0x10000)
1090 return -EINVAL;
1091 break;
1092
1093 default:
1094 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 if (p->min > p->max)
1098 return -EINVAL;
1099
1100 return 0;
1101}
1102
Christoph Hellwig22e70052007-01-02 15:22:30 -08001103static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001104 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001106 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 struct xfrm_state *x;
1108 struct xfrm_userspi_info *p;
1109 struct sk_buff *resp_skb;
1110 xfrm_address_t *daddr;
1111 int family;
1112 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001113 u32 mark;
1114 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Thomas Graf7b67c852007-08-22 13:53:52 -07001116 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 err = verify_userspi_info(p);
1118 if (err)
1119 goto out_noput;
1120
1121 family = p->info.family;
1122 daddr = &p->info.id.daddr;
1123
1124 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001125
1126 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001128 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001129 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 xfrm_state_put(x);
1131 x = NULL;
1132 }
1133 }
1134
1135 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001136 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 p->info.id.proto, daddr,
1138 &p->info.saddr, 1,
1139 family);
1140 err = -ENOENT;
1141 if (x == NULL)
1142 goto out_noput;
1143
Herbert Xu658b2192007-10-09 13:29:52 -07001144 err = xfrm_alloc_spi(x, p->min, p->max);
1145 if (err)
1146 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Herbert Xu658b2192007-10-09 13:29:52 -07001148 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (IS_ERR(resp_skb)) {
1150 err = PTR_ERR(resp_skb);
1151 goto out;
1152 }
1153
Eric W. Biederman15e47302012-09-07 20:12:54 +00001154 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156out:
1157 xfrm_state_put(x);
1158out_noput:
1159 return err;
1160}
1161
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001162static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 switch (dir) {
1165 case XFRM_POLICY_IN:
1166 case XFRM_POLICY_OUT:
1167 case XFRM_POLICY_FWD:
1168 break;
1169
1170 default:
1171 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 return 0;
1175}
1176
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001177static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001178{
1179 switch (type) {
1180 case XFRM_POLICY_TYPE_MAIN:
1181#ifdef CONFIG_XFRM_SUB_POLICY
1182 case XFRM_POLICY_TYPE_SUB:
1183#endif
1184 break;
1185
1186 default:
1187 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001188 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001189
1190 return 0;
1191}
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1194{
Fan Due682adf2013-11-07 17:47:48 +08001195 int ret;
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 switch (p->share) {
1198 case XFRM_SHARE_ANY:
1199 case XFRM_SHARE_SESSION:
1200 case XFRM_SHARE_USER:
1201 case XFRM_SHARE_UNIQUE:
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->action) {
1209 case XFRM_POLICY_ALLOW:
1210 case XFRM_POLICY_BLOCK:
1211 break;
1212
1213 default:
1214 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 switch (p->sel.family) {
1218 case AF_INET:
1219 break;
1220
1221 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001222#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 break;
1224#else
1225 return -EAFNOSUPPORT;
1226#endif
1227
1228 default:
1229 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Fan Due682adf2013-11-07 17:47:48 +08001232 ret = verify_policy_dir(p->dir);
1233 if (ret)
1234 return ret;
1235 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1236 return -EINVAL;
1237
1238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Thomas Graf5424f322007-08-22 14:01:33 -07001241static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001242{
Thomas Graf5424f322007-08-22 14:01:33 -07001243 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001244 struct xfrm_user_sec_ctx *uctx;
1245
1246 if (!rt)
1247 return 0;
1248
Thomas Graf5424f322007-08-22 14:01:33 -07001249 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001250 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001251}
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1254 int nr)
1255{
1256 int i;
1257
1258 xp->xfrm_nr = nr;
1259 for (i = 0; i < nr; i++, ut++) {
1260 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1261
1262 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1263 memcpy(&t->saddr, &ut->saddr,
1264 sizeof(xfrm_address_t));
1265 t->reqid = ut->reqid;
1266 t->mode = ut->mode;
1267 t->share = ut->share;
1268 t->optional = ut->optional;
1269 t->aalgos = ut->aalgos;
1270 t->ealgos = ut->ealgos;
1271 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001272 /* If all masks are ~0, then we allow all algorithms. */
1273 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001274 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276}
1277
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001278static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1279{
1280 int i;
1281
1282 if (nr > XFRM_MAX_DEPTH)
1283 return -EINVAL;
1284
1285 for (i = 0; i < nr; i++) {
1286 /* We never validated the ut->family value, so many
1287 * applications simply leave it at zero. The check was
1288 * never made and ut->family was ignored because all
1289 * templates could be assumed to have the same family as
1290 * the policy itself. Now that we will have ipv4-in-ipv6
1291 * and ipv6-in-ipv4 tunnels, this is no longer true.
1292 */
1293 if (!ut[i].family)
1294 ut[i].family = family;
1295
1296 switch (ut[i].family) {
1297 case AF_INET:
1298 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001299#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001300 case AF_INET6:
1301 break;
1302#endif
1303 default:
1304 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001305 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001306 }
1307
1308 return 0;
1309}
1310
Thomas Graf5424f322007-08-22 14:01:33 -07001311static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Thomas Graf5424f322007-08-22 14:01:33 -07001313 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 if (!rt) {
1316 pol->xfrm_nr = 0;
1317 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001318 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1319 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001320 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001322 err = validate_tmpl(nr, utmpl, pol->family);
1323 if (err)
1324 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Thomas Graf5424f322007-08-22 14:01:33 -07001326 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328 return 0;
1329}
1330
Thomas Graf5424f322007-08-22 14:01:33 -07001331static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001332{
Thomas Graf5424f322007-08-22 14:01:33 -07001333 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001334 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001335 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001336 int err;
1337
1338 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001339 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001340 type = upt->type;
1341 }
1342
1343 err = verify_policy_type(type);
1344 if (err)
1345 return err;
1346
1347 *tp = type;
1348 return 0;
1349}
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1352{
1353 xp->priority = p->priority;
1354 xp->index = p->index;
1355 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1356 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1357 xp->action = p->action;
1358 xp->flags = p->flags;
1359 xp->family = p->sel.family;
1360 /* XXX xp->share = p->share; */
1361}
1362
1363static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1364{
Mathias Krause7b789832012-09-19 11:33:40 +00001365 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1367 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1368 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1369 p->priority = xp->priority;
1370 p->index = xp->index;
1371 p->sel.family = xp->family;
1372 p->dir = dir;
1373 p->action = xp->action;
1374 p->flags = xp->flags;
1375 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1376}
1377
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001378static 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 -07001379{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001380 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 int err;
1382
1383 if (!xp) {
1384 *errp = -ENOMEM;
1385 return NULL;
1386 }
1387
1388 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001389
Thomas Graf35a7aa02007-08-22 14:00:40 -07001390 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001391 if (err)
1392 goto error;
1393
Thomas Graf35a7aa02007-08-22 14:00:40 -07001394 if (!(err = copy_from_user_tmpl(xp, attrs)))
1395 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001396 if (err)
1397 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001399 xfrm_mark_get(attrs, &xp->mark);
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001402 error:
1403 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001404 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001405 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001406 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
Christoph Hellwig22e70052007-01-02 15:22:30 -08001409static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001410 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001412 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001413 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001415 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 int err;
1417 int excl;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001418 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001419 u32 sessionid = audit_get_sessionid(current);
1420 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 err = verify_newpolicy_info(p);
1423 if (err)
1424 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001425 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001426 if (err)
1427 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001429 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (!xp)
1431 return err;
1432
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001433 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001434 * Aha! this is anti-netlink really i.e more pfkey derived
1435 * in netlink excl is a flag and you wouldnt need
1436 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1438 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001439 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001440 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001443 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 kfree(xp);
1445 return err;
1446 }
1447
Herbert Xuf60f6b82005-06-18 22:44:37 -07001448 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001449 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001450 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001451 km_policy_notify(xp, p->dir, &c);
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfrm_pol_put(xp);
1454
1455 return 0;
1456}
1457
1458static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1459{
1460 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1461 int i;
1462
1463 if (xp->xfrm_nr == 0)
1464 return 0;
1465
1466 for (i = 0; i < xp->xfrm_nr; i++) {
1467 struct xfrm_user_tmpl *up = &vec[i];
1468 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1469
Mathias Krause1f868402012-09-19 11:33:41 +00001470 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001472 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1474 up->reqid = kp->reqid;
1475 up->mode = kp->mode;
1476 up->share = kp->share;
1477 up->optional = kp->optional;
1478 up->aalgos = kp->aalgos;
1479 up->ealgos = kp->ealgos;
1480 up->calgos = kp->calgos;
1481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Thomas Grafc0144be2007-08-22 13:55:43 -07001483 return nla_put(skb, XFRMA_TMPL,
1484 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001485}
1486
Serge Hallyn0d681622006-07-24 23:30:44 -07001487static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1488{
1489 if (x->security) {
1490 return copy_sec_ctx(x->security, skb);
1491 }
1492 return 0;
1493}
1494
1495static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1496{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001497 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001498 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001499 return 0;
1500}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001501static inline size_t userpolicy_type_attrsize(void)
1502{
1503#ifdef CONFIG_XFRM_SUB_POLICY
1504 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1505#else
1506 return 0;
1507#endif
1508}
Serge Hallyn0d681622006-07-24 23:30:44 -07001509
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001510#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001511static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001512{
Thomas Grafc0144be2007-08-22 13:55:43 -07001513 struct xfrm_userpolicy_type upt = {
1514 .type = type,
1515 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001516
Thomas Grafc0144be2007-08-22 13:55:43 -07001517 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001518}
1519
1520#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001521static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001522{
1523 return 0;
1524}
1525#endif
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1528{
1529 struct xfrm_dump_info *sp = ptr;
1530 struct xfrm_userpolicy_info *p;
1531 struct sk_buff *in_skb = sp->in_skb;
1532 struct sk_buff *skb = sp->out_skb;
1533 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001534 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Eric W. Biederman15e47302012-09-07 20:12:54 +00001536 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001537 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1538 if (nlh == NULL)
1539 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Thomas Graf7b67c852007-08-22 13:53:52 -07001541 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001543 err = copy_to_user_tmpl(xp, skb);
1544 if (!err)
1545 err = copy_to_user_sec_ctx(xp, skb);
1546 if (!err)
1547 err = copy_to_user_policy_type(xp->type, skb);
1548 if (!err)
1549 err = xfrm_mark_put(skb, &xp->mark);
1550 if (err) {
1551 nlmsg_cancel(skb, nlh);
1552 return err;
1553 }
Thomas Graf98250692007-08-22 12:47:26 -07001554 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
Timo Teras4c563f72008-02-28 21:31:08 -08001558static int xfrm_dump_policy_done(struct netlink_callback *cb)
1559{
1560 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001561 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001562
Fan Du283bc9f2013-11-07 17:47:50 +08001563 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001564 return 0;
1565}
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1568{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001569 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001570 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 struct xfrm_dump_info info;
1572
Timo Teras4c563f72008-02-28 21:31:08 -08001573 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1574 sizeof(cb->args) - sizeof(cb->args[0]));
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 info.in_skb = cb->skb;
1577 info.out_skb = skb;
1578 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1579 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001580
1581 if (!cb->args[0]) {
1582 cb->args[0] = 1;
1583 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1584 }
1585
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001586 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 return skb->len;
1589}
1590
1591static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1592 struct xfrm_policy *xp,
1593 int dir, u32 seq)
1594{
1595 struct xfrm_dump_info info;
1596 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001597 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Thomas Graf7deb2262007-08-22 13:57:39 -07001599 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (!skb)
1601 return ERR_PTR(-ENOMEM);
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 info.in_skb = in_skb;
1604 info.out_skb = skb;
1605 info.nlmsg_seq = seq;
1606 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Mathias Krausec2546372012-09-14 09:58:32 +00001608 err = dump_one_policy(xp, dir, 0, &info);
1609 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001611 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
1613
1614 return skb;
1615}
1616
Christoph Hellwig22e70052007-01-02 15:22:30 -08001617static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001618 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001620 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 struct xfrm_policy *xp;
1622 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001623 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001625 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001627 struct xfrm_mark m;
1628 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Thomas Graf7b67c852007-08-22 13:53:52 -07001630 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1632
Thomas Graf35a7aa02007-08-22 14:00:40 -07001633 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001634 if (err)
1635 return err;
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 err = verify_policy_dir(p->dir);
1638 if (err)
1639 return err;
1640
1641 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001642 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001643 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001644 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001645 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001646
Thomas Graf35a7aa02007-08-22 14:00:40 -07001647 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001648 if (err)
1649 return err;
1650
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001651 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001652 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001653 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001654
Paul Moore03e1ad72008-04-12 19:07:52 -07001655 err = security_xfrm_policy_alloc(&ctx, uctx);
1656 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001657 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001658 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001659 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001660 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001661 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (xp == NULL)
1664 return -ENOENT;
1665
1666 if (!delete) {
1667 struct sk_buff *resp_skb;
1668
1669 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1670 if (IS_ERR(resp_skb)) {
1671 err = PTR_ERR(resp_skb);
1672 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001673 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001674 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001676 } else {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001677 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001678 u32 sessionid = audit_get_sessionid(current);
1679 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001680
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001681 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001682 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1683 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001684
1685 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001686 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001687
Herbert Xue7443892005-06-18 22:44:18 -07001688 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001689 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001690 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001691 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001692 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001695out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001696 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001697 if (delete && err == 0)
1698 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return err;
1700}
1701
Christoph Hellwig22e70052007-01-02 15:22:30 -08001702static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001703 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001705 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001706 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001707 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001708 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001709 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001711 audit_info.loginuid = audit_get_loginuid(current);
1712 audit_info.sessionid = audit_get_sessionid(current);
1713 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001714 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001715 if (err) {
1716 if (err == -ESRCH) /* empty table */
1717 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001718 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001719 }
Herbert Xubf088672005-06-18 22:44:00 -07001720 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001721 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001722 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001723 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001724 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001725 km_state_notify(NULL, &c);
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return 0;
1728}
1729
Steffen Klassertd8647b72011-03-08 00:10:27 +00001730static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001731{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001732 size_t replay_size = x->replay_esn ?
1733 xfrm_replay_state_esn_len(x->replay_esn) :
1734 sizeof(struct xfrm_replay_state);
1735
Thomas Graf7deb2262007-08-22 13:57:39 -07001736 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001737 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001738 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001739 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001740 + nla_total_size(4) /* XFRM_AE_RTHR */
1741 + nla_total_size(4); /* XFRM_AE_ETHR */
1742}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001743
David S. Miller214e0052011-02-24 00:02:38 -05001744static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001745{
1746 struct xfrm_aevent_id *id;
1747 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001748 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001749
Eric W. Biederman15e47302012-09-07 20:12:54 +00001750 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001751 if (nlh == NULL)
1752 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001753
Thomas Graf7b67c852007-08-22 13:53:52 -07001754 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001755 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001756 id->sa_id.spi = x->id.spi;
1757 id->sa_id.family = x->props.family;
1758 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001759 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1760 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001761 id->flags = c->data.aevent;
1762
David S. Millerd0fde792012-03-29 04:02:26 -04001763 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001764 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1765 xfrm_replay_state_esn_len(x->replay_esn),
1766 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001767 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001768 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1769 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001770 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001771 if (err)
1772 goto out_cancel;
1773 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1774 if (err)
1775 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001776
David S. Miller1d1e34d2012-06-27 21:57:03 -07001777 if (id->flags & XFRM_AE_RTHR) {
1778 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1779 if (err)
1780 goto out_cancel;
1781 }
1782 if (id->flags & XFRM_AE_ETHR) {
1783 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1784 x->replay_maxage * 10 / HZ);
1785 if (err)
1786 goto out_cancel;
1787 }
1788 err = xfrm_mark_put(skb, &x->mark);
1789 if (err)
1790 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001791
Thomas Graf98250692007-08-22 12:47:26 -07001792 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001793
David S. Miller1d1e34d2012-06-27 21:57:03 -07001794out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001795 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001796 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001797}
1798
Christoph Hellwig22e70052007-01-02 15:22:30 -08001799static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001800 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001801{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001802 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001803 struct xfrm_state *x;
1804 struct sk_buff *r_skb;
1805 int err;
1806 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001807 u32 mark;
1808 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001809 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001810 struct xfrm_usersa_id *id = &p->sa_id;
1811
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001812 mark = xfrm_mark_get(attrs, &m);
1813
1814 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001815 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001816 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001817
1818 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1819 if (r_skb == NULL) {
1820 xfrm_state_put(x);
1821 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001822 }
1823
1824 /*
1825 * XXX: is this lock really needed - none of the other
1826 * gets lock (the concern is things getting updated
1827 * while we are still reading) - jhs
1828 */
1829 spin_lock_bh(&x->lock);
1830 c.data.aevent = p->flags;
1831 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001832 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001833
1834 if (build_aevent(r_skb, x, &c) < 0)
1835 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001836 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001837 spin_unlock_bh(&x->lock);
1838 xfrm_state_put(x);
1839 return err;
1840}
1841
Christoph Hellwig22e70052007-01-02 15:22:30 -08001842static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001843 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001844{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001845 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001846 struct xfrm_state *x;
1847 struct km_event c;
1848 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001849 u32 mark = 0;
1850 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001851 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001852 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001853 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001854 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001855
Steffen Klassertd8647b72011-03-08 00:10:27 +00001856 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001857 return err;
1858
1859 /* pedantic mode - thou shalt sayeth replaceth */
1860 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1861 return err;
1862
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001863 mark = xfrm_mark_get(attrs, &m);
1864
1865 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 -08001866 if (x == NULL)
1867 return -ESRCH;
1868
1869 if (x->km.state != XFRM_STATE_VALID)
1870 goto out;
1871
Steffen Klassert4479ff72013-09-09 09:39:01 +02001872 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001873 if (err)
1874 goto out;
1875
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001876 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001877 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001878 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001879
1880 c.event = nlh->nlmsg_type;
1881 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001882 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001883 c.data.aevent = XFRM_AE_CU;
1884 km_state_notify(x, &c);
1885 err = 0;
1886out:
1887 xfrm_state_put(x);
1888 return err;
1889}
1890
Christoph Hellwig22e70052007-01-02 15:22:30 -08001891static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001892 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001894 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001895 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001896 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001897 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001898 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001899
Thomas Graf35a7aa02007-08-22 14:00:40 -07001900 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001901 if (err)
1902 return err;
1903
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001904 audit_info.loginuid = audit_get_loginuid(current);
1905 audit_info.sessionid = audit_get_sessionid(current);
1906 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001907 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001908 if (err) {
1909 if (err == -ESRCH) /* empty table */
1910 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001911 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001912 }
1913
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001914 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001915 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001916 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001917 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001918 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001919 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 return 0;
1921}
1922
Christoph Hellwig22e70052007-01-02 15:22:30 -08001923static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001924 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001925{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001926 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001927 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001928 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001929 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001930 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001931 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001932 struct xfrm_mark m;
1933 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001934
Thomas Graf35a7aa02007-08-22 14:00:40 -07001935 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001936 if (err)
1937 return err;
1938
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001939 err = verify_policy_dir(p->dir);
1940 if (err)
1941 return err;
1942
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001943 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001944 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001945 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001946 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001947 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001948
Thomas Graf35a7aa02007-08-22 14:00:40 -07001949 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001950 if (err)
1951 return err;
1952
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001953 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001954 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001955 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001956
Paul Moore03e1ad72008-04-12 19:07:52 -07001957 err = security_xfrm_policy_alloc(&ctx, uctx);
1958 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001959 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001960 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001961 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001962 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001963 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001964 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001965 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001966 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001967
Timo Teräsea2dea92010-03-31 00:17:05 +00001968 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001969 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001970
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001971 err = 0;
1972 if (up->hard) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001973 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001974 u32 sessionid = audit_get_sessionid(current);
1975 u32 sid;
1976
1977 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001978 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001979 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001980
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001981 } else {
1982 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001983 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001984 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001985 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001986
1987out:
1988 xfrm_pol_put(xp);
1989 return err;
1990}
1991
Christoph Hellwig22e70052007-01-02 15:22:30 -08001992static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001993 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001994{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001995 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001996 struct xfrm_state *x;
1997 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001998 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001999 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002000 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002001 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002002
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002003 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 -08002004
David S. Miller3a765aa2007-02-26 14:52:21 -08002005 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002006 if (x == NULL)
2007 return err;
2008
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002009 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002010 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002011 if (x->km.state != XFRM_STATE_VALID)
2012 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002013 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002014
Joy Latten161a09e2006-11-27 13:11:54 -06002015 if (ue->hard) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002016 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08002017 u32 sessionid = audit_get_sessionid(current);
2018 u32 sid;
2019
2020 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002021 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04002022 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06002023 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002024 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002025out:
2026 spin_unlock_bh(&x->lock);
2027 xfrm_state_put(x);
2028 return err;
2029}
2030
Christoph Hellwig22e70052007-01-02 15:22:30 -08002031static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002032 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002033{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002034 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002035 struct xfrm_policy *xp;
2036 struct xfrm_user_tmpl *ut;
2037 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002038 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002039 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002040
Thomas Graf7b67c852007-08-22 13:53:52 -07002041 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002042 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002043 int err = -ENOMEM;
2044
2045 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002046 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002047
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002048 xfrm_mark_get(attrs, &mark);
2049
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002050 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002051 if (err)
2052 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002053
2054 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002055 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002056 if (!xp)
2057 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002058
2059 memcpy(&x->id, &ua->id, sizeof(ua->id));
2060 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2061 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002062 xp->mark.m = x->mark.m = mark.m;
2063 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002064 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002065 /* extract the templates and for each call km_key */
2066 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2067 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2068 memcpy(&x->id, &t->id, sizeof(x->id));
2069 x->props.mode = t->mode;
2070 x->props.reqid = t->reqid;
2071 x->props.family = ut->family;
2072 t->aalgos = ua->aalgos;
2073 t->ealgos = ua->ealgos;
2074 t->calgos = ua->calgos;
2075 err = km_query(x, t, xp);
2076
2077 }
2078
2079 kfree(x);
2080 kfree(xp);
2081
2082 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002083
2084bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002085 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002086free_state:
2087 kfree(x);
2088nomem:
2089 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002090}
2091
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002092#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002093static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002094 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002095 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002096{
Thomas Graf5424f322007-08-22 14:01:33 -07002097 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002098 struct xfrm_user_migrate *um;
2099 int i, num_migrate;
2100
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002101 if (k != NULL) {
2102 struct xfrm_user_kmaddress *uk;
2103
2104 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2105 memcpy(&k->local, &uk->local, sizeof(k->local));
2106 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2107 k->family = uk->family;
2108 k->reserved = uk->reserved;
2109 }
2110
Thomas Graf5424f322007-08-22 14:01:33 -07002111 um = nla_data(rt);
2112 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002113
2114 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2115 return -EINVAL;
2116
2117 for (i = 0; i < num_migrate; i++, um++, ma++) {
2118 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2119 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2120 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2121 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2122
2123 ma->proto = um->proto;
2124 ma->mode = um->mode;
2125 ma->reqid = um->reqid;
2126
2127 ma->old_family = um->old_family;
2128 ma->new_family = um->new_family;
2129 }
2130
2131 *num = i;
2132 return 0;
2133}
2134
2135static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002136 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002137{
Thomas Graf7b67c852007-08-22 13:53:52 -07002138 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002139 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002140 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002141 u8 type;
2142 int err;
2143 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002144 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002145
Thomas Graf35a7aa02007-08-22 14:00:40 -07002146 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002147 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002148
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002149 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2150
Thomas Graf5424f322007-08-22 14:01:33 -07002151 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002152 if (err)
2153 return err;
2154
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002155 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002156 if (err)
2157 return err;
2158
2159 if (!n)
2160 return 0;
2161
Fan Du8d549c42013-11-07 17:47:49 +08002162 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002163
2164 return 0;
2165}
2166#else
2167static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002168 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002169{
2170 return -ENOPROTOOPT;
2171}
2172#endif
2173
2174#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002175static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002176{
2177 struct xfrm_user_migrate um;
2178
2179 memset(&um, 0, sizeof(um));
2180 um.proto = m->proto;
2181 um.mode = m->mode;
2182 um.reqid = m->reqid;
2183 um.old_family = m->old_family;
2184 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2185 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2186 um.new_family = m->new_family;
2187 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2188 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2189
Thomas Grafc0144be2007-08-22 13:55:43 -07002190 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002191}
2192
David S. Miller183cad12011-02-24 00:28:01 -05002193static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002194{
2195 struct xfrm_user_kmaddress uk;
2196
2197 memset(&uk, 0, sizeof(uk));
2198 uk.family = k->family;
2199 uk.reserved = k->reserved;
2200 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002201 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002202
2203 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2204}
2205
2206static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002207{
2208 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002209 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2210 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2211 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002212}
2213
David S. Miller183cad12011-02-24 00:28:01 -05002214static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2215 int num_migrate, const struct xfrm_kmaddress *k,
2216 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002217{
David S. Miller183cad12011-02-24 00:28:01 -05002218 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002219 struct xfrm_userpolicy_id *pol_id;
2220 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002221 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002222
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002223 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2224 if (nlh == NULL)
2225 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002226
Thomas Graf7b67c852007-08-22 13:53:52 -07002227 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002228 /* copy data from selector, dir, and type to the pol_id */
2229 memset(pol_id, 0, sizeof(*pol_id));
2230 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2231 pol_id->dir = dir;
2232
David S. Miller1d1e34d2012-06-27 21:57:03 -07002233 if (k != NULL) {
2234 err = copy_to_user_kmaddress(k, skb);
2235 if (err)
2236 goto out_cancel;
2237 }
2238 err = copy_to_user_policy_type(type, skb);
2239 if (err)
2240 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002241 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002242 err = copy_to_user_migrate(mp, skb);
2243 if (err)
2244 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002245 }
2246
Thomas Graf98250692007-08-22 12:47:26 -07002247 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002248
2249out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002250 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002251 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002252}
2253
David S. Miller183cad12011-02-24 00:28:01 -05002254static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2255 const struct xfrm_migrate *m, int num_migrate,
2256 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002257{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002258 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002259 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002260
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002261 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002262 if (skb == NULL)
2263 return -ENOMEM;
2264
2265 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002266 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002267 BUG();
2268
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002269 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002270}
2271#else
David S. Miller183cad12011-02-24 00:28:01 -05002272static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2273 const struct xfrm_migrate *m, int num_migrate,
2274 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002275{
2276 return -ENOPROTOOPT;
2277}
2278#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002279
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002280#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002281
2282static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002283 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002284 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2285 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2286 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2287 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2288 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2289 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002290 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002291 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002292 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002293 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002294 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002295 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002296 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002297 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2298 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002299 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002300 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002301 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2302 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303};
2304
Thomas Graf492b5582005-05-03 14:26:40 -07002305#undef XMSGSIZE
2306
Thomas Grafcf5cb792007-08-22 13:59:04 -07002307static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002308 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2309 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2310 [XFRMA_LASTUSED] = { .type = NLA_U64},
2311 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002312 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002313 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2314 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2315 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2316 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2317 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2318 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2319 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2320 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2321 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2322 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2323 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2324 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2325 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2326 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002327 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002328 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002329 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002330 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002331 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002332};
2333
Mathias Krause05600a72013-02-24 14:10:27 +01002334static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002335 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002337 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002338} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2339 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2340 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2341 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002342 .dump = xfrm_dump_sa,
2343 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002344 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2345 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2346 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002347 .dump = xfrm_dump_policy,
2348 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002349 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002350 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002351 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002352 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2353 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002354 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002355 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2356 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002357 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2358 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002359 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002360 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002361 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362};
2363
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002364static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002366 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002367 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002368 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002369 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002373 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 type -= XFRM_MSG_BASE;
2376 link = &xfrm_dispatch[type];
2377
2378 /* All operations require privileges, even GET */
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002379 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002380 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Thomas Graf492b5582005-05-03 14:26:40 -07002382 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2383 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002384 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002386 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002388 {
2389 struct netlink_dump_control c = {
2390 .dump = link->dump,
2391 .done = link->done,
2392 };
2393 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 }
2396
Thomas Graf35a7aa02007-08-22 14:00:40 -07002397 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002398 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002399 if (err < 0)
2400 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002403 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Thomas Graf5424f322007-08-22 14:01:33 -07002405 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002408static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
Fan Du283bc9f2013-11-07 17:47:50 +08002410 struct net *net = sock_net(skb->sk);
2411
2412 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002413 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002414 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415}
2416
Thomas Graf7deb2262007-08-22 13:57:39 -07002417static inline size_t xfrm_expire_msgsize(void)
2418{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002419 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2420 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002421}
2422
David S. Miller214e0052011-02-24 00:02:38 -05002423static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
2425 struct xfrm_user_expire *ue;
2426 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002427 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Eric W. Biederman15e47302012-09-07 20:12:54 +00002429 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002430 if (nlh == NULL)
2431 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Thomas Graf7b67c852007-08-22 13:53:52 -07002433 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002435 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
David S. Miller1d1e34d2012-06-27 21:57:03 -07002437 err = xfrm_mark_put(skb, &x->mark);
2438 if (err)
2439 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002440
Thomas Graf98250692007-08-22 12:47:26 -07002441 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
David S. Miller214e0052011-02-24 00:02:38 -05002444static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002446 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 struct sk_buff *skb;
2448
Thomas Graf7deb2262007-08-22 13:57:39 -07002449 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 if (skb == NULL)
2451 return -ENOMEM;
2452
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002453 if (build_expire(skb, x, c) < 0) {
2454 kfree_skb(skb);
2455 return -EMSGSIZE;
2456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002458 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
David S. Miller214e0052011-02-24 00:02:38 -05002461static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002462{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002463 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002464 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002465
Steffen Klassertd8647b72011-03-08 00:10:27 +00002466 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002467 if (skb == NULL)
2468 return -ENOMEM;
2469
2470 if (build_aevent(skb, x, c) < 0)
2471 BUG();
2472
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002473 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002474}
2475
David S. Miller214e0052011-02-24 00:02:38 -05002476static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002477{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002478 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002479 struct xfrm_usersa_flush *p;
2480 struct nlmsghdr *nlh;
2481 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002482 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002483
Thomas Graf7deb2262007-08-22 13:57:39 -07002484 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002485 if (skb == NULL)
2486 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002487
Eric W. Biederman15e47302012-09-07 20:12:54 +00002488 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002489 if (nlh == NULL) {
2490 kfree_skb(skb);
2491 return -EMSGSIZE;
2492 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002493
Thomas Graf7b67c852007-08-22 13:53:52 -07002494 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002495 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002496
Thomas Graf98250692007-08-22 12:47:26 -07002497 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002498
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002499 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002500}
2501
Thomas Graf7deb2262007-08-22 13:57:39 -07002502static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002503{
Thomas Graf7deb2262007-08-22 13:57:39 -07002504 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002505 if (x->aead)
2506 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002507 if (x->aalg) {
2508 l += nla_total_size(sizeof(struct xfrm_algo) +
2509 (x->aalg->alg_key_len + 7) / 8);
2510 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2511 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002512 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002513 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002514 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002515 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002516 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002517 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002518 if (x->tfcpad)
2519 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002520 if (x->replay_esn)
2521 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002522 if (x->security)
2523 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2524 x->security->ctx_len);
2525 if (x->coaddr)
2526 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002527 if (x->props.extra_flags)
2528 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002529
Herbert Xud26f3982007-11-13 21:47:08 -08002530 /* Must count x->lastused as it may become non-zero behind our back. */
2531 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002532
2533 return l;
2534}
2535
David S. Miller214e0052011-02-24 00:02:38 -05002536static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002537{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002538 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002539 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002540 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002541 struct nlmsghdr *nlh;
2542 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002543 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002544 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002545
2546 headlen = sizeof(*p);
2547 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002548 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002549 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002550 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002551 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002552 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002553
Thomas Graf7deb2262007-08-22 13:57:39 -07002554 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002555 if (skb == NULL)
2556 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002557
Eric W. Biederman15e47302012-09-07 20:12:54 +00002558 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002559 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002560 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002561 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002562
Thomas Graf7b67c852007-08-22 13:53:52 -07002563 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002564 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002565 struct nlattr *attr;
2566
Thomas Graf7b67c852007-08-22 13:53:52 -07002567 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002568 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2569 id->spi = x->id.spi;
2570 id->family = x->props.family;
2571 id->proto = x->id.proto;
2572
Thomas Grafc0144be2007-08-22 13:55:43 -07002573 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002574 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002575 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002576 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002577
2578 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002579 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002580 err = copy_to_user_state_extra(x, p, skb);
2581 if (err)
2582 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002583
Thomas Graf98250692007-08-22 12:47:26 -07002584 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002585
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002586 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002587
David S. Miller1d1e34d2012-06-27 21:57:03 -07002588out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002589 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002590 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002591}
2592
David S. Miller214e0052011-02-24 00:02:38 -05002593static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002594{
2595
2596 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002597 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002598 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002599 case XFRM_MSG_NEWAE:
2600 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002601 case XFRM_MSG_DELSA:
2602 case XFRM_MSG_UPDSA:
2603 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002604 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002605 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002606 return xfrm_notify_sa_flush(c);
2607 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002608 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2609 c->event);
2610 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002611 }
2612
2613 return 0;
2614
2615}
2616
Thomas Graf7deb2262007-08-22 13:57:39 -07002617static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2618 struct xfrm_policy *xp)
2619{
2620 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2621 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002622 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002623 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2624 + userpolicy_type_attrsize();
2625}
2626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002628 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002630 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 struct xfrm_user_acquire *ua;
2632 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002633 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002635 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2636 if (nlh == NULL)
2637 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Thomas Graf7b67c852007-08-22 13:53:52 -07002639 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 memcpy(&ua->id, &x->id, sizeof(ua->id));
2641 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2642 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002643 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 ua->aalgos = xt->aalgos;
2645 ua->ealgos = xt->ealgos;
2646 ua->calgos = xt->calgos;
2647 ua->seq = x->km.seq = seq;
2648
David S. Miller1d1e34d2012-06-27 21:57:03 -07002649 err = copy_to_user_tmpl(xp, skb);
2650 if (!err)
2651 err = copy_to_user_state_sec_ctx(x, skb);
2652 if (!err)
2653 err = copy_to_user_policy_type(xp->type, skb);
2654 if (!err)
2655 err = xfrm_mark_put(skb, &xp->mark);
2656 if (err) {
2657 nlmsg_cancel(skb, nlh);
2658 return err;
2659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Thomas Graf98250692007-08-22 12:47:26 -07002661 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662}
2663
2664static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002665 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002667 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Thomas Graf7deb2262007-08-22 13:57:39 -07002670 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (skb == NULL)
2672 return -ENOMEM;
2673
Fan Du65e07362012-08-15 10:13:47 +08002674 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 BUG();
2676
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002677 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678}
2679
2680/* User gives us xfrm_user_policy_info followed by an array of 0
2681 * or more templates.
2682 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002683static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 u8 *data, int len, int *dir)
2685{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002686 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2688 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2689 struct xfrm_policy *xp;
2690 int nr;
2691
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002692 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 case AF_INET:
2694 if (opt != IP_XFRM_POLICY) {
2695 *dir = -EOPNOTSUPP;
2696 return NULL;
2697 }
2698 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002699#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 case AF_INET6:
2701 if (opt != IPV6_XFRM_POLICY) {
2702 *dir = -EOPNOTSUPP;
2703 return NULL;
2704 }
2705 break;
2706#endif
2707 default:
2708 *dir = -EINVAL;
2709 return NULL;
2710 }
2711
2712 *dir = -EINVAL;
2713
2714 if (len < sizeof(*p) ||
2715 verify_newpolicy_info(p))
2716 return NULL;
2717
2718 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002719 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return NULL;
2721
Herbert Xua4f1bac2005-07-26 15:43:17 -07002722 if (p->dir > XFRM_POLICY_OUT)
2723 return NULL;
2724
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002725 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (xp == NULL) {
2727 *dir = -ENOBUFS;
2728 return NULL;
2729 }
2730
2731 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002732 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 copy_templates(xp, ut, nr);
2734
2735 *dir = p->dir;
2736
2737 return xp;
2738}
2739
Thomas Graf7deb2262007-08-22 13:57:39 -07002740static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2741{
2742 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2743 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2744 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002745 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002746 + userpolicy_type_attrsize();
2747}
2748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002750 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
2752 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002753 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002754 struct nlmsghdr *nlh;
2755 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Eric W. Biederman15e47302012-09-07 20:12:54 +00002757 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002758 if (nlh == NULL)
2759 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Thomas Graf7b67c852007-08-22 13:53:52 -07002761 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002763 err = copy_to_user_tmpl(xp, skb);
2764 if (!err)
2765 err = copy_to_user_sec_ctx(xp, skb);
2766 if (!err)
2767 err = copy_to_user_policy_type(xp->type, skb);
2768 if (!err)
2769 err = xfrm_mark_put(skb, &xp->mark);
2770 if (err) {
2771 nlmsg_cancel(skb, nlh);
2772 return err;
2773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 upe->hard = !!hard;
2775
Thomas Graf98250692007-08-22 12:47:26 -07002776 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
2778
David S. Miller214e0052011-02-24 00:02:38 -05002779static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002781 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Thomas Graf7deb2262007-08-22 13:57:39 -07002784 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (skb == NULL)
2786 return -ENOMEM;
2787
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002788 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 BUG();
2790
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002791 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
David S. Miller214e0052011-02-24 00:02:38 -05002794static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002795{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002796 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002797 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002798 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002799 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800 struct nlmsghdr *nlh;
2801 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002802 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002803
2804 headlen = sizeof(*p);
2805 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002806 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002807 headlen = sizeof(*id);
2808 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002809 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002810 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002811 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002812
Thomas Graf7deb2262007-08-22 13:57:39 -07002813 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002814 if (skb == NULL)
2815 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002816
Eric W. Biederman15e47302012-09-07 20:12:54 +00002817 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002818 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002819 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002820 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002821
Thomas Graf7b67c852007-08-22 13:53:52 -07002822 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002823 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002824 struct nlattr *attr;
2825
Thomas Graf7b67c852007-08-22 13:53:52 -07002826 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002827 memset(id, 0, sizeof(*id));
2828 id->dir = dir;
2829 if (c->data.byid)
2830 id->index = xp->index;
2831 else
2832 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2833
Thomas Grafc0144be2007-08-22 13:55:43 -07002834 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002835 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002836 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002837 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002838
2839 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002840 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002841
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002842 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002843 err = copy_to_user_tmpl(xp, skb);
2844 if (!err)
2845 err = copy_to_user_policy_type(xp->type, skb);
2846 if (!err)
2847 err = xfrm_mark_put(skb, &xp->mark);
2848 if (err)
2849 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002850
Thomas Graf98250692007-08-22 12:47:26 -07002851 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002852
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002853 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002854
David S. Miller1d1e34d2012-06-27 21:57:03 -07002855out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002856 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002857 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002858}
2859
David S. Miller214e0052011-02-24 00:02:38 -05002860static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002861{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002862 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863 struct nlmsghdr *nlh;
2864 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002865 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002866
Thomas Graf7deb2262007-08-22 13:57:39 -07002867 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002868 if (skb == NULL)
2869 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002870
Eric W. Biederman15e47302012-09-07 20:12:54 +00002871 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002872 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002873 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002874 goto out_free_skb;
2875 err = copy_to_user_policy_type(c->data.type, skb);
2876 if (err)
2877 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002878
Thomas Graf98250692007-08-22 12:47:26 -07002879 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002880
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002881 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882
David S. Miller1d1e34d2012-06-27 21:57:03 -07002883out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002884 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002885 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002886}
2887
David S. Miller214e0052011-02-24 00:02:38 -05002888static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002889{
2890
2891 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002892 case XFRM_MSG_NEWPOLICY:
2893 case XFRM_MSG_UPDPOLICY:
2894 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002895 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002896 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002897 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002898 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002899 return xfrm_exp_policy_notify(xp, dir, c);
2900 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002901 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2902 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002903 }
2904
2905 return 0;
2906
2907}
2908
Thomas Graf7deb2262007-08-22 13:57:39 -07002909static inline size_t xfrm_report_msgsize(void)
2910{
2911 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2912}
2913
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002914static int build_report(struct sk_buff *skb, u8 proto,
2915 struct xfrm_selector *sel, xfrm_address_t *addr)
2916{
2917 struct xfrm_user_report *ur;
2918 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002919
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002920 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2921 if (nlh == NULL)
2922 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002923
Thomas Graf7b67c852007-08-22 13:53:52 -07002924 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002925 ur->proto = proto;
2926 memcpy(&ur->sel, sel, sizeof(ur->sel));
2927
David S. Miller1d1e34d2012-06-27 21:57:03 -07002928 if (addr) {
2929 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2930 if (err) {
2931 nlmsg_cancel(skb, nlh);
2932 return err;
2933 }
2934 }
Thomas Graf98250692007-08-22 12:47:26 -07002935 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002936}
2937
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002938static int xfrm_send_report(struct net *net, u8 proto,
2939 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002940{
2941 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002942
Thomas Graf7deb2262007-08-22 13:57:39 -07002943 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002944 if (skb == NULL)
2945 return -ENOMEM;
2946
2947 if (build_report(skb, proto, sel, addr) < 0)
2948 BUG();
2949
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002950 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002951}
2952
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002953static inline size_t xfrm_mapping_msgsize(void)
2954{
2955 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2956}
2957
2958static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2959 xfrm_address_t *new_saddr, __be16 new_sport)
2960{
2961 struct xfrm_user_mapping *um;
2962 struct nlmsghdr *nlh;
2963
2964 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2965 if (nlh == NULL)
2966 return -EMSGSIZE;
2967
2968 um = nlmsg_data(nlh);
2969
2970 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2971 um->id.spi = x->id.spi;
2972 um->id.family = x->props.family;
2973 um->id.proto = x->id.proto;
2974 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2975 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2976 um->new_sport = new_sport;
2977 um->old_sport = x->encap->encap_sport;
2978 um->reqid = x->props.reqid;
2979
2980 return nlmsg_end(skb, nlh);
2981}
2982
2983static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2984 __be16 sport)
2985{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002986 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002987 struct sk_buff *skb;
2988
2989 if (x->id.proto != IPPROTO_ESP)
2990 return -EINVAL;
2991
2992 if (!x->encap)
2993 return -EINVAL;
2994
2995 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2996 if (skb == NULL)
2997 return -ENOMEM;
2998
2999 if (build_mapping(skb, x, ipaddr, sport) < 0)
3000 BUG();
3001
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003002 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003003}
3004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005static struct xfrm_mgr netlink_mgr = {
3006 .id = "netlink",
3007 .notify = xfrm_send_state_notify,
3008 .acquire = xfrm_send_acquire,
3009 .compile_policy = xfrm_compile_policy,
3010 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003011 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003012 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003013 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014};
3015
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003016static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
Patrick McHardybe336902006-03-20 22:40:54 -08003018 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003019 struct netlink_kernel_cfg cfg = {
3020 .groups = XFRMNLGRP_MAX,
3021 .input = xfrm_netlink_rcv,
3022 };
Patrick McHardybe336902006-03-20 22:40:54 -08003023
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003024 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003025 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003027 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003028 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return 0;
3030}
3031
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003032static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003033{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003034 struct net *net;
3035 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003036 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003037 synchronize_net();
3038 list_for_each_entry(net, net_exit_list, exit_list)
3039 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003040}
3041
3042static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003043 .init = xfrm_user_net_init,
3044 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003045};
3046
3047static int __init xfrm_user_init(void)
3048{
3049 int rv;
3050
3051 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3052
3053 rv = register_pernet_subsys(&xfrm_user_net_ops);
3054 if (rv < 0)
3055 return rv;
3056 rv = xfrm_register_km(&netlink_mgr);
3057 if (rv < 0)
3058 unregister_pernet_subsys(&xfrm_user_net_ops);
3059 return rv;
3060}
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062static void __exit xfrm_user_exit(void)
3063{
3064 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003065 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
3068module_init(xfrm_user_init);
3069module_exit(xfrm_user_exit);
3070MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003071MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003072