blob: f964d4c00ffb53457aa46b24f0225249c1d46b7c [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];
880 xfrm_state_walk_done(walk);
881 return 0;
882}
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
885{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800886 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800887 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct xfrm_dump_info info;
889
Timo Teras4c563f72008-02-28 21:31:08 -0800890 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
891 sizeof(cb->args) - sizeof(cb->args[0]));
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 info.in_skb = cb->skb;
894 info.out_skb = skb;
895 info.nlmsg_seq = cb->nlh->nlmsg_seq;
896 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800897
898 if (!cb->args[0]) {
899 cb->args[0] = 1;
900 xfrm_state_walk_init(walk, 0);
901 }
902
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800903 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 return skb->len;
906}
907
908static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
909 struct xfrm_state *x, u32 seq)
910{
911 struct xfrm_dump_info info;
912 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000913 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Thomas Graf7deb2262007-08-22 13:57:39 -0700915 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (!skb)
917 return ERR_PTR(-ENOMEM);
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 info.in_skb = in_skb;
920 info.out_skb = skb;
921 info.nlmsg_seq = seq;
922 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Mathias Krause864745d2012-09-13 11:41:26 +0000924 err = dump_one_state(x, 0, &info);
925 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000927 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929
930 return skb;
931}
932
Thomas Graf7deb2262007-08-22 13:57:39 -0700933static inline size_t xfrm_spdinfo_msgsize(void)
934{
935 return NLMSG_ALIGN(4)
936 + nla_total_size(sizeof(struct xfrmu_spdinfo))
937 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
938}
939
Alexey Dobriyane0710412010-01-23 13:37:10 +0000940static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000941 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700942{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700943 struct xfrmk_spdinfo si;
944 struct xfrmu_spdinfo spc;
945 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700946 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700947 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700948 u32 *f;
949
Eric W. Biederman15e47302012-09-07 20:12:54 +0000950 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300951 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700952 return -EMSGSIZE;
953
954 f = nlmsg_data(nlh);
955 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000956 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700957 spc.incnt = si.incnt;
958 spc.outcnt = si.outcnt;
959 spc.fwdcnt = si.fwdcnt;
960 spc.inscnt = si.inscnt;
961 spc.outscnt = si.outscnt;
962 spc.fwdscnt = si.fwdscnt;
963 sph.spdhcnt = si.spdhcnt;
964 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700965
David S. Miller1d1e34d2012-06-27 21:57:03 -0700966 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
967 if (!err)
968 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
969 if (err) {
970 nlmsg_cancel(skb, nlh);
971 return err;
972 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700973
974 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700975}
976
977static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700978 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700979{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800980 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700981 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700982 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000983 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700984 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700985
Thomas Graf7deb2262007-08-22 13:57:39 -0700986 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700987 if (r_skb == NULL)
988 return -ENOMEM;
989
Eric W. Biederman15e47302012-09-07 20:12:54 +0000990 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700991 BUG();
992
Eric W. Biederman15e47302012-09-07 20:12:54 +0000993 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700994}
995
Thomas Graf7deb2262007-08-22 13:57:39 -0700996static inline size_t xfrm_sadinfo_msgsize(void)
997{
998 return NLMSG_ALIGN(4)
999 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1000 + nla_total_size(4); /* XFRMA_SAD_CNT */
1001}
1002
Alexey Dobriyane0710412010-01-23 13:37:10 +00001003static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001004 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001005{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001006 struct xfrmk_sadinfo si;
1007 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001008 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001009 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001010 u32 *f;
1011
Eric W. Biederman15e47302012-09-07 20:12:54 +00001012 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001013 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001014 return -EMSGSIZE;
1015
1016 f = nlmsg_data(nlh);
1017 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001018 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001019
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001020 sh.sadhmcnt = si.sadhmcnt;
1021 sh.sadhcnt = si.sadhcnt;
1022
David S. Miller1d1e34d2012-06-27 21:57:03 -07001023 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1024 if (!err)
1025 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1026 if (err) {
1027 nlmsg_cancel(skb, nlh);
1028 return err;
1029 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001030
1031 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001032}
1033
1034static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001035 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001036{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001037 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001038 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001039 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001040 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001041 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001042
Thomas Graf7deb2262007-08-22 13:57:39 -07001043 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001044 if (r_skb == NULL)
1045 return -ENOMEM;
1046
Eric W. Biederman15e47302012-09-07 20:12:54 +00001047 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001048 BUG();
1049
Eric W. Biederman15e47302012-09-07 20:12:54 +00001050 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001051}
1052
Christoph Hellwig22e70052007-01-02 15:22:30 -08001053static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001054 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001056 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001057 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 struct xfrm_state *x;
1059 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001060 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001062 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (x == NULL)
1064 goto out_noput;
1065
1066 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1067 if (IS_ERR(resp_skb)) {
1068 err = PTR_ERR(resp_skb);
1069 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001070 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
1072 xfrm_state_put(x);
1073out_noput:
1074 return err;
1075}
1076
1077static int verify_userspi_info(struct xfrm_userspi_info *p)
1078{
1079 switch (p->info.id.proto) {
1080 case IPPROTO_AH:
1081 case IPPROTO_ESP:
1082 break;
1083
1084 case IPPROTO_COMP:
1085 /* IPCOMP spi is 16-bits. */
1086 if (p->max >= 0x10000)
1087 return -EINVAL;
1088 break;
1089
1090 default:
1091 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (p->min > p->max)
1095 return -EINVAL;
1096
1097 return 0;
1098}
1099
Christoph Hellwig22e70052007-01-02 15:22:30 -08001100static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001101 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001103 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 struct xfrm_state *x;
1105 struct xfrm_userspi_info *p;
1106 struct sk_buff *resp_skb;
1107 xfrm_address_t *daddr;
1108 int family;
1109 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001110 u32 mark;
1111 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Thomas Graf7b67c852007-08-22 13:53:52 -07001113 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 err = verify_userspi_info(p);
1115 if (err)
1116 goto out_noput;
1117
1118 family = p->info.family;
1119 daddr = &p->info.id.daddr;
1120
1121 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001122
1123 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001125 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001126 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 xfrm_state_put(x);
1128 x = NULL;
1129 }
1130 }
1131
1132 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001133 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 p->info.id.proto, daddr,
1135 &p->info.saddr, 1,
1136 family);
1137 err = -ENOENT;
1138 if (x == NULL)
1139 goto out_noput;
1140
Herbert Xu658b2192007-10-09 13:29:52 -07001141 err = xfrm_alloc_spi(x, p->min, p->max);
1142 if (err)
1143 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Herbert Xu658b2192007-10-09 13:29:52 -07001145 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (IS_ERR(resp_skb)) {
1147 err = PTR_ERR(resp_skb);
1148 goto out;
1149 }
1150
Eric W. Biederman15e47302012-09-07 20:12:54 +00001151 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153out:
1154 xfrm_state_put(x);
1155out_noput:
1156 return err;
1157}
1158
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001159static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 switch (dir) {
1162 case XFRM_POLICY_IN:
1163 case XFRM_POLICY_OUT:
1164 case XFRM_POLICY_FWD:
1165 break;
1166
1167 default:
1168 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 return 0;
1172}
1173
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001174static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001175{
1176 switch (type) {
1177 case XFRM_POLICY_TYPE_MAIN:
1178#ifdef CONFIG_XFRM_SUB_POLICY
1179 case XFRM_POLICY_TYPE_SUB:
1180#endif
1181 break;
1182
1183 default:
1184 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001185 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001186
1187 return 0;
1188}
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1191{
1192 switch (p->share) {
1193 case XFRM_SHARE_ANY:
1194 case XFRM_SHARE_SESSION:
1195 case XFRM_SHARE_USER:
1196 case XFRM_SHARE_UNIQUE:
1197 break;
1198
1199 default:
1200 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 switch (p->action) {
1204 case XFRM_POLICY_ALLOW:
1205 case XFRM_POLICY_BLOCK:
1206 break;
1207
1208 default:
1209 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 switch (p->sel.family) {
1213 case AF_INET:
1214 break;
1215
1216 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001217#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 break;
1219#else
1220 return -EAFNOSUPPORT;
1221#endif
1222
1223 default:
1224 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 return verify_policy_dir(p->dir);
1228}
1229
Thomas Graf5424f322007-08-22 14:01:33 -07001230static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001231{
Thomas Graf5424f322007-08-22 14:01:33 -07001232 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001233 struct xfrm_user_sec_ctx *uctx;
1234
1235 if (!rt)
1236 return 0;
1237
Thomas Graf5424f322007-08-22 14:01:33 -07001238 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001239 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001240}
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1243 int nr)
1244{
1245 int i;
1246
1247 xp->xfrm_nr = nr;
1248 for (i = 0; i < nr; i++, ut++) {
1249 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1250
1251 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1252 memcpy(&t->saddr, &ut->saddr,
1253 sizeof(xfrm_address_t));
1254 t->reqid = ut->reqid;
1255 t->mode = ut->mode;
1256 t->share = ut->share;
1257 t->optional = ut->optional;
1258 t->aalgos = ut->aalgos;
1259 t->ealgos = ut->ealgos;
1260 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001261 /* If all masks are ~0, then we allow all algorithms. */
1262 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001263 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265}
1266
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001267static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1268{
1269 int i;
1270
1271 if (nr > XFRM_MAX_DEPTH)
1272 return -EINVAL;
1273
1274 for (i = 0; i < nr; i++) {
1275 /* We never validated the ut->family value, so many
1276 * applications simply leave it at zero. The check was
1277 * never made and ut->family was ignored because all
1278 * templates could be assumed to have the same family as
1279 * the policy itself. Now that we will have ipv4-in-ipv6
1280 * and ipv6-in-ipv4 tunnels, this is no longer true.
1281 */
1282 if (!ut[i].family)
1283 ut[i].family = family;
1284
1285 switch (ut[i].family) {
1286 case AF_INET:
1287 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001288#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001289 case AF_INET6:
1290 break;
1291#endif
1292 default:
1293 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001294 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001295 }
1296
1297 return 0;
1298}
1299
Thomas Graf5424f322007-08-22 14:01:33 -07001300static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Thomas Graf5424f322007-08-22 14:01:33 -07001302 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 if (!rt) {
1305 pol->xfrm_nr = 0;
1306 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001307 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1308 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001309 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001311 err = validate_tmpl(nr, utmpl, pol->family);
1312 if (err)
1313 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Thomas Graf5424f322007-08-22 14:01:33 -07001315 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317 return 0;
1318}
1319
Thomas Graf5424f322007-08-22 14:01:33 -07001320static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001321{
Thomas Graf5424f322007-08-22 14:01:33 -07001322 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001323 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001324 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001325 int err;
1326
1327 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001328 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001329 type = upt->type;
1330 }
1331
1332 err = verify_policy_type(type);
1333 if (err)
1334 return err;
1335
1336 *tp = type;
1337 return 0;
1338}
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1341{
1342 xp->priority = p->priority;
1343 xp->index = p->index;
1344 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1345 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1346 xp->action = p->action;
1347 xp->flags = p->flags;
1348 xp->family = p->sel.family;
1349 /* XXX xp->share = p->share; */
1350}
1351
1352static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1353{
Mathias Krause7b789832012-09-19 11:33:40 +00001354 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1356 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1357 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1358 p->priority = xp->priority;
1359 p->index = xp->index;
1360 p->sel.family = xp->family;
1361 p->dir = dir;
1362 p->action = xp->action;
1363 p->flags = xp->flags;
1364 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1365}
1366
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001367static 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 -07001368{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001369 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int err;
1371
1372 if (!xp) {
1373 *errp = -ENOMEM;
1374 return NULL;
1375 }
1376
1377 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001378
Thomas Graf35a7aa02007-08-22 14:00:40 -07001379 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001380 if (err)
1381 goto error;
1382
Thomas Graf35a7aa02007-08-22 14:00:40 -07001383 if (!(err = copy_from_user_tmpl(xp, attrs)))
1384 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001385 if (err)
1386 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001388 xfrm_mark_get(attrs, &xp->mark);
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001391 error:
1392 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001393 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001394 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001395 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
Christoph Hellwig22e70052007-01-02 15:22:30 -08001398static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001399 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001401 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001402 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001404 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 int err;
1406 int excl;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001407 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001408 u32 sessionid = audit_get_sessionid(current);
1409 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 err = verify_newpolicy_info(p);
1412 if (err)
1413 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001414 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001415 if (err)
1416 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001418 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (!xp)
1420 return err;
1421
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001422 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001423 * Aha! this is anti-netlink really i.e more pfkey derived
1424 * in netlink excl is a flag and you wouldnt need
1425 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1427 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001428 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001429 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001432 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 kfree(xp);
1434 return err;
1435 }
1436
Herbert Xuf60f6b82005-06-18 22:44:37 -07001437 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001438 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001439 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001440 km_policy_notify(xp, p->dir, &c);
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 xfrm_pol_put(xp);
1443
1444 return 0;
1445}
1446
1447static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1448{
1449 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1450 int i;
1451
1452 if (xp->xfrm_nr == 0)
1453 return 0;
1454
1455 for (i = 0; i < xp->xfrm_nr; i++) {
1456 struct xfrm_user_tmpl *up = &vec[i];
1457 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1458
Mathias Krause1f868402012-09-19 11:33:41 +00001459 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001461 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1463 up->reqid = kp->reqid;
1464 up->mode = kp->mode;
1465 up->share = kp->share;
1466 up->optional = kp->optional;
1467 up->aalgos = kp->aalgos;
1468 up->ealgos = kp->ealgos;
1469 up->calgos = kp->calgos;
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Thomas Grafc0144be2007-08-22 13:55:43 -07001472 return nla_put(skb, XFRMA_TMPL,
1473 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001474}
1475
Serge Hallyn0d681622006-07-24 23:30:44 -07001476static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1477{
1478 if (x->security) {
1479 return copy_sec_ctx(x->security, skb);
1480 }
1481 return 0;
1482}
1483
1484static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1485{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001486 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001487 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001488 return 0;
1489}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001490static inline size_t userpolicy_type_attrsize(void)
1491{
1492#ifdef CONFIG_XFRM_SUB_POLICY
1493 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1494#else
1495 return 0;
1496#endif
1497}
Serge Hallyn0d681622006-07-24 23:30:44 -07001498
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001499#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001500static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001501{
Thomas Grafc0144be2007-08-22 13:55:43 -07001502 struct xfrm_userpolicy_type upt = {
1503 .type = type,
1504 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001505
Thomas Grafc0144be2007-08-22 13:55:43 -07001506 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001507}
1508
1509#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001510static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001511{
1512 return 0;
1513}
1514#endif
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1517{
1518 struct xfrm_dump_info *sp = ptr;
1519 struct xfrm_userpolicy_info *p;
1520 struct sk_buff *in_skb = sp->in_skb;
1521 struct sk_buff *skb = sp->out_skb;
1522 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001523 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Eric W. Biederman15e47302012-09-07 20:12:54 +00001525 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001526 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1527 if (nlh == NULL)
1528 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Thomas Graf7b67c852007-08-22 13:53:52 -07001530 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001532 err = copy_to_user_tmpl(xp, skb);
1533 if (!err)
1534 err = copy_to_user_sec_ctx(xp, skb);
1535 if (!err)
1536 err = copy_to_user_policy_type(xp->type, skb);
1537 if (!err)
1538 err = xfrm_mark_put(skb, &xp->mark);
1539 if (err) {
1540 nlmsg_cancel(skb, nlh);
1541 return err;
1542 }
Thomas Graf98250692007-08-22 12:47:26 -07001543 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Timo Teras4c563f72008-02-28 21:31:08 -08001547static int xfrm_dump_policy_done(struct netlink_callback *cb)
1548{
1549 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1550
1551 xfrm_policy_walk_done(walk);
1552 return 0;
1553}
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1556{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001557 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001558 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 struct xfrm_dump_info info;
1560
Timo Teras4c563f72008-02-28 21:31:08 -08001561 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1562 sizeof(cb->args) - sizeof(cb->args[0]));
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 info.in_skb = cb->skb;
1565 info.out_skb = skb;
1566 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1567 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001568
1569 if (!cb->args[0]) {
1570 cb->args[0] = 1;
1571 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1572 }
1573
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001574 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 return skb->len;
1577}
1578
1579static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1580 struct xfrm_policy *xp,
1581 int dir, u32 seq)
1582{
1583 struct xfrm_dump_info info;
1584 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001585 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Thomas Graf7deb2262007-08-22 13:57:39 -07001587 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (!skb)
1589 return ERR_PTR(-ENOMEM);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 info.in_skb = in_skb;
1592 info.out_skb = skb;
1593 info.nlmsg_seq = seq;
1594 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Mathias Krausec2546372012-09-14 09:58:32 +00001596 err = dump_one_policy(xp, dir, 0, &info);
1597 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001599 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601
1602 return skb;
1603}
1604
Christoph Hellwig22e70052007-01-02 15:22:30 -08001605static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001606 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001608 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 struct xfrm_policy *xp;
1610 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001611 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001613 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001615 struct xfrm_mark m;
1616 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Thomas Graf7b67c852007-08-22 13:53:52 -07001618 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1620
Thomas Graf35a7aa02007-08-22 14:00:40 -07001621 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001622 if (err)
1623 return err;
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 err = verify_policy_dir(p->dir);
1626 if (err)
1627 return err;
1628
1629 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001630 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001631 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001632 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001633 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001634
Thomas Graf35a7aa02007-08-22 14:00:40 -07001635 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001636 if (err)
1637 return err;
1638
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001639 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001640 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001641 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001642
Paul Moore03e1ad72008-04-12 19:07:52 -07001643 err = security_xfrm_policy_alloc(&ctx, uctx);
1644 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001645 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001646 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001647 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001648 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001649 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 if (xp == NULL)
1652 return -ENOENT;
1653
1654 if (!delete) {
1655 struct sk_buff *resp_skb;
1656
1657 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1658 if (IS_ERR(resp_skb)) {
1659 err = PTR_ERR(resp_skb);
1660 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001661 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001662 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001664 } else {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001665 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001666 u32 sessionid = audit_get_sessionid(current);
1667 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001668
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001669 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001670 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1671 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001672
1673 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001674 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001675
Herbert Xue7443892005-06-18 22:44:18 -07001676 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001677 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001678 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001679 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001680 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001683out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001684 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001685 if (delete && err == 0)
1686 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return err;
1688}
1689
Christoph Hellwig22e70052007-01-02 15:22:30 -08001690static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001691 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001693 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001694 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001695 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001696 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001697 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001699 audit_info.loginuid = audit_get_loginuid(current);
1700 audit_info.sessionid = audit_get_sessionid(current);
1701 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001702 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001703 if (err) {
1704 if (err == -ESRCH) /* empty table */
1705 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001706 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001707 }
Herbert Xubf088672005-06-18 22:44:00 -07001708 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001709 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001710 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001711 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001712 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001713 km_state_notify(NULL, &c);
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return 0;
1716}
1717
Steffen Klassertd8647b72011-03-08 00:10:27 +00001718static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001719{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001720 size_t replay_size = x->replay_esn ?
1721 xfrm_replay_state_esn_len(x->replay_esn) :
1722 sizeof(struct xfrm_replay_state);
1723
Thomas Graf7deb2262007-08-22 13:57:39 -07001724 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001725 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001726 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001727 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001728 + nla_total_size(4) /* XFRM_AE_RTHR */
1729 + nla_total_size(4); /* XFRM_AE_ETHR */
1730}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001731
David S. Miller214e0052011-02-24 00:02:38 -05001732static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001733{
1734 struct xfrm_aevent_id *id;
1735 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001736 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001737
Eric W. Biederman15e47302012-09-07 20:12:54 +00001738 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001739 if (nlh == NULL)
1740 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001741
Thomas Graf7b67c852007-08-22 13:53:52 -07001742 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001743 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001744 id->sa_id.spi = x->id.spi;
1745 id->sa_id.family = x->props.family;
1746 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001747 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1748 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001749 id->flags = c->data.aevent;
1750
David S. Millerd0fde792012-03-29 04:02:26 -04001751 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001752 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1753 xfrm_replay_state_esn_len(x->replay_esn),
1754 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001755 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001756 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1757 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001758 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001759 if (err)
1760 goto out_cancel;
1761 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1762 if (err)
1763 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001764
David S. Miller1d1e34d2012-06-27 21:57:03 -07001765 if (id->flags & XFRM_AE_RTHR) {
1766 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1767 if (err)
1768 goto out_cancel;
1769 }
1770 if (id->flags & XFRM_AE_ETHR) {
1771 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1772 x->replay_maxage * 10 / HZ);
1773 if (err)
1774 goto out_cancel;
1775 }
1776 err = xfrm_mark_put(skb, &x->mark);
1777 if (err)
1778 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001779
Thomas Graf98250692007-08-22 12:47:26 -07001780 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001781
David S. Miller1d1e34d2012-06-27 21:57:03 -07001782out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001783 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001784 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001785}
1786
Christoph Hellwig22e70052007-01-02 15:22:30 -08001787static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001788 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001789{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001790 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001791 struct xfrm_state *x;
1792 struct sk_buff *r_skb;
1793 int err;
1794 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001795 u32 mark;
1796 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001797 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001798 struct xfrm_usersa_id *id = &p->sa_id;
1799
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001800 mark = xfrm_mark_get(attrs, &m);
1801
1802 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001803 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001804 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001805
1806 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1807 if (r_skb == NULL) {
1808 xfrm_state_put(x);
1809 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001810 }
1811
1812 /*
1813 * XXX: is this lock really needed - none of the other
1814 * gets lock (the concern is things getting updated
1815 * while we are still reading) - jhs
1816 */
1817 spin_lock_bh(&x->lock);
1818 c.data.aevent = p->flags;
1819 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001820 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001821
1822 if (build_aevent(r_skb, x, &c) < 0)
1823 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001824 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001825 spin_unlock_bh(&x->lock);
1826 xfrm_state_put(x);
1827 return err;
1828}
1829
Christoph Hellwig22e70052007-01-02 15:22:30 -08001830static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001831 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001832{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001833 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001834 struct xfrm_state *x;
1835 struct km_event c;
1836 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001837 u32 mark = 0;
1838 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001839 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001840 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001841 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001842 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001843
Steffen Klassertd8647b72011-03-08 00:10:27 +00001844 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001845 return err;
1846
1847 /* pedantic mode - thou shalt sayeth replaceth */
1848 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1849 return err;
1850
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001851 mark = xfrm_mark_get(attrs, &m);
1852
1853 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 -08001854 if (x == NULL)
1855 return -ESRCH;
1856
1857 if (x->km.state != XFRM_STATE_VALID)
1858 goto out;
1859
Steffen Klassert4479ff72013-09-09 09:39:01 +02001860 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001861 if (err)
1862 goto out;
1863
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001864 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001865 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001866 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001867
1868 c.event = nlh->nlmsg_type;
1869 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001870 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001871 c.data.aevent = XFRM_AE_CU;
1872 km_state_notify(x, &c);
1873 err = 0;
1874out:
1875 xfrm_state_put(x);
1876 return err;
1877}
1878
Christoph Hellwig22e70052007-01-02 15:22:30 -08001879static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001880 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001882 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001883 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001884 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001885 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001886 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001887
Thomas Graf35a7aa02007-08-22 14:00:40 -07001888 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001889 if (err)
1890 return err;
1891
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001892 audit_info.loginuid = audit_get_loginuid(current);
1893 audit_info.sessionid = audit_get_sessionid(current);
1894 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001895 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001896 if (err) {
1897 if (err == -ESRCH) /* empty table */
1898 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001899 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001900 }
1901
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001902 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001903 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001904 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001905 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001906 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001907 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return 0;
1909}
1910
Christoph Hellwig22e70052007-01-02 15:22:30 -08001911static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001912 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001913{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001914 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001915 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001916 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001917 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001918 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001919 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001920 struct xfrm_mark m;
1921 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001922
Thomas Graf35a7aa02007-08-22 14:00:40 -07001923 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001924 if (err)
1925 return err;
1926
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001927 err = verify_policy_dir(p->dir);
1928 if (err)
1929 return err;
1930
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001931 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001932 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001933 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001934 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001935 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001936
Thomas Graf35a7aa02007-08-22 14:00:40 -07001937 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001938 if (err)
1939 return err;
1940
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001941 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001942 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001943 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001944
Paul Moore03e1ad72008-04-12 19:07:52 -07001945 err = security_xfrm_policy_alloc(&ctx, uctx);
1946 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001947 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001948 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001949 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001950 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001951 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001952 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001953 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001954 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001955
Timo Teräsea2dea92010-03-31 00:17:05 +00001956 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001957 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001958
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001959 err = 0;
1960 if (up->hard) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001961 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001962 u32 sessionid = audit_get_sessionid(current);
1963 u32 sid;
1964
1965 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001966 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001967 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001968
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001969 } else {
1970 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001971 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001972 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001973 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001974
1975out:
1976 xfrm_pol_put(xp);
1977 return err;
1978}
1979
Christoph Hellwig22e70052007-01-02 15:22:30 -08001980static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001981 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001982{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001983 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001984 struct xfrm_state *x;
1985 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001986 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001987 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001988 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001989 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001990
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001991 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 -08001992
David S. Miller3a765aa2007-02-26 14:52:21 -08001993 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001994 if (x == NULL)
1995 return err;
1996
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001997 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001998 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001999 if (x->km.state != XFRM_STATE_VALID)
2000 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002001 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002002
Joy Latten161a09e2006-11-27 13:11:54 -06002003 if (ue->hard) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002004 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08002005 u32 sessionid = audit_get_sessionid(current);
2006 u32 sid;
2007
2008 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002009 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04002010 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06002011 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002012 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002013out:
2014 spin_unlock_bh(&x->lock);
2015 xfrm_state_put(x);
2016 return err;
2017}
2018
Christoph Hellwig22e70052007-01-02 15:22:30 -08002019static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002020 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002021{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002022 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002023 struct xfrm_policy *xp;
2024 struct xfrm_user_tmpl *ut;
2025 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002026 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002027 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002028
Thomas Graf7b67c852007-08-22 13:53:52 -07002029 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002030 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002031 int err = -ENOMEM;
2032
2033 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002034 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002035
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002036 xfrm_mark_get(attrs, &mark);
2037
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002038 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002039 if (err)
2040 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002041
2042 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002043 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002044 if (!xp)
2045 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002046
2047 memcpy(&x->id, &ua->id, sizeof(ua->id));
2048 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2049 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002050 xp->mark.m = x->mark.m = mark.m;
2051 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002052 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002053 /* extract the templates and for each call km_key */
2054 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2055 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2056 memcpy(&x->id, &t->id, sizeof(x->id));
2057 x->props.mode = t->mode;
2058 x->props.reqid = t->reqid;
2059 x->props.family = ut->family;
2060 t->aalgos = ua->aalgos;
2061 t->ealgos = ua->ealgos;
2062 t->calgos = ua->calgos;
2063 err = km_query(x, t, xp);
2064
2065 }
2066
2067 kfree(x);
2068 kfree(xp);
2069
2070 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002071
2072bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002073 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002074free_state:
2075 kfree(x);
2076nomem:
2077 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002078}
2079
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002080#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002081static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002082 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002083 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002084{
Thomas Graf5424f322007-08-22 14:01:33 -07002085 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002086 struct xfrm_user_migrate *um;
2087 int i, num_migrate;
2088
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002089 if (k != NULL) {
2090 struct xfrm_user_kmaddress *uk;
2091
2092 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2093 memcpy(&k->local, &uk->local, sizeof(k->local));
2094 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2095 k->family = uk->family;
2096 k->reserved = uk->reserved;
2097 }
2098
Thomas Graf5424f322007-08-22 14:01:33 -07002099 um = nla_data(rt);
2100 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002101
2102 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2103 return -EINVAL;
2104
2105 for (i = 0; i < num_migrate; i++, um++, ma++) {
2106 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2107 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2108 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2109 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2110
2111 ma->proto = um->proto;
2112 ma->mode = um->mode;
2113 ma->reqid = um->reqid;
2114
2115 ma->old_family = um->old_family;
2116 ma->new_family = um->new_family;
2117 }
2118
2119 *num = i;
2120 return 0;
2121}
2122
2123static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002124 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002125{
Thomas Graf7b67c852007-08-22 13:53:52 -07002126 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002127 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002128 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002129 u8 type;
2130 int err;
2131 int n = 0;
2132
Thomas Graf35a7aa02007-08-22 14:00:40 -07002133 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002134 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002135
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002136 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2137
Thomas Graf5424f322007-08-22 14:01:33 -07002138 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002139 if (err)
2140 return err;
2141
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002142 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002143 if (err)
2144 return err;
2145
2146 if (!n)
2147 return 0;
2148
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002149 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002150
2151 return 0;
2152}
2153#else
2154static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002155 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002156{
2157 return -ENOPROTOOPT;
2158}
2159#endif
2160
2161#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002162static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002163{
2164 struct xfrm_user_migrate um;
2165
2166 memset(&um, 0, sizeof(um));
2167 um.proto = m->proto;
2168 um.mode = m->mode;
2169 um.reqid = m->reqid;
2170 um.old_family = m->old_family;
2171 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2172 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2173 um.new_family = m->new_family;
2174 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2175 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2176
Thomas Grafc0144be2007-08-22 13:55:43 -07002177 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002178}
2179
David S. Miller183cad12011-02-24 00:28:01 -05002180static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002181{
2182 struct xfrm_user_kmaddress uk;
2183
2184 memset(&uk, 0, sizeof(uk));
2185 uk.family = k->family;
2186 uk.reserved = k->reserved;
2187 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002188 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002189
2190 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2191}
2192
2193static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002194{
2195 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002196 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2197 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2198 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002199}
2200
David S. Miller183cad12011-02-24 00:28:01 -05002201static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2202 int num_migrate, const struct xfrm_kmaddress *k,
2203 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002204{
David S. Miller183cad12011-02-24 00:28:01 -05002205 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206 struct xfrm_userpolicy_id *pol_id;
2207 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002208 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002209
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002210 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2211 if (nlh == NULL)
2212 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002213
Thomas Graf7b67c852007-08-22 13:53:52 -07002214 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002215 /* copy data from selector, dir, and type to the pol_id */
2216 memset(pol_id, 0, sizeof(*pol_id));
2217 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2218 pol_id->dir = dir;
2219
David S. Miller1d1e34d2012-06-27 21:57:03 -07002220 if (k != NULL) {
2221 err = copy_to_user_kmaddress(k, skb);
2222 if (err)
2223 goto out_cancel;
2224 }
2225 err = copy_to_user_policy_type(type, skb);
2226 if (err)
2227 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002228 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002229 err = copy_to_user_migrate(mp, skb);
2230 if (err)
2231 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002232 }
2233
Thomas Graf98250692007-08-22 12:47:26 -07002234 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002235
2236out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002237 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002238 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002239}
2240
David S. Miller183cad12011-02-24 00:28:01 -05002241static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2242 const struct xfrm_migrate *m, int num_migrate,
2243 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002244{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002245 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002246 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002247
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002248 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002249 if (skb == NULL)
2250 return -ENOMEM;
2251
2252 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002253 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254 BUG();
2255
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002256 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002257}
2258#else
David S. Miller183cad12011-02-24 00:28:01 -05002259static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2260 const struct xfrm_migrate *m, int num_migrate,
2261 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002262{
2263 return -ENOPROTOOPT;
2264}
2265#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002266
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002267#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002268
2269static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002270 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002271 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2272 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2273 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2274 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2275 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2276 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002277 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002278 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002279 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002280 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002281 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002282 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002283 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002284 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2285 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002286 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002288 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2289 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290};
2291
Thomas Graf492b5582005-05-03 14:26:40 -07002292#undef XMSGSIZE
2293
Thomas Grafcf5cb792007-08-22 13:59:04 -07002294static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002295 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2296 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2297 [XFRMA_LASTUSED] = { .type = NLA_U64},
2298 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002299 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002300 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2301 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2302 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2303 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2304 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2305 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2306 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2307 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2308 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2309 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2310 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2311 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2312 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2313 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002314 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002315 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002316 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002317 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002318 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002319};
2320
Mathias Krause05600a72013-02-24 14:10:27 +01002321static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002322 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002324 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002325} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2326 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2327 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2328 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002329 .dump = xfrm_dump_sa,
2330 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002331 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2332 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2333 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002334 .dump = xfrm_dump_policy,
2335 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002336 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002337 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002338 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002339 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2340 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002341 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002342 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2343 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002344 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2345 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002346 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002347 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002348 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349};
2350
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002351static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002353 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002354 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002355 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002356 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002360 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 type -= XFRM_MSG_BASE;
2363 link = &xfrm_dispatch[type];
2364
2365 /* All operations require privileges, even GET */
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002366 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002367 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Thomas Graf492b5582005-05-03 14:26:40 -07002369 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2370 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002371 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002373 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002375 {
2376 struct netlink_dump_control c = {
2377 .dump = link->dump,
2378 .done = link->done,
2379 };
2380 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
2383
Thomas Graf35a7aa02007-08-22 14:00:40 -07002384 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002385 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002386 if (err < 0)
2387 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002390 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Thomas Graf5424f322007-08-22 14:01:33 -07002392 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002395static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002397 mutex_lock(&xfrm_cfg_mutex);
2398 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2399 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
2401
Thomas Graf7deb2262007-08-22 13:57:39 -07002402static inline size_t xfrm_expire_msgsize(void)
2403{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002404 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2405 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002406}
2407
David S. Miller214e0052011-02-24 00:02:38 -05002408static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
2410 struct xfrm_user_expire *ue;
2411 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002412 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Eric W. Biederman15e47302012-09-07 20:12:54 +00002414 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002415 if (nlh == NULL)
2416 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Thomas Graf7b67c852007-08-22 13:53:52 -07002418 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002420 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
David S. Miller1d1e34d2012-06-27 21:57:03 -07002422 err = xfrm_mark_put(skb, &x->mark);
2423 if (err)
2424 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002425
Thomas Graf98250692007-08-22 12:47:26 -07002426 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
David S. Miller214e0052011-02-24 00:02:38 -05002429static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002431 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 struct sk_buff *skb;
2433
Thomas Graf7deb2262007-08-22 13:57:39 -07002434 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (skb == NULL)
2436 return -ENOMEM;
2437
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002438 if (build_expire(skb, x, c) < 0) {
2439 kfree_skb(skb);
2440 return -EMSGSIZE;
2441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002443 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
David S. Miller214e0052011-02-24 00:02:38 -05002446static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002447{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002448 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002449 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002450
Steffen Klassertd8647b72011-03-08 00:10:27 +00002451 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002452 if (skb == NULL)
2453 return -ENOMEM;
2454
2455 if (build_aevent(skb, x, c) < 0)
2456 BUG();
2457
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002458 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002459}
2460
David S. Miller214e0052011-02-24 00:02:38 -05002461static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002462{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002463 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002464 struct xfrm_usersa_flush *p;
2465 struct nlmsghdr *nlh;
2466 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002467 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002468
Thomas Graf7deb2262007-08-22 13:57:39 -07002469 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002470 if (skb == NULL)
2471 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002472
Eric W. Biederman15e47302012-09-07 20:12:54 +00002473 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002474 if (nlh == NULL) {
2475 kfree_skb(skb);
2476 return -EMSGSIZE;
2477 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002478
Thomas Graf7b67c852007-08-22 13:53:52 -07002479 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002480 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002481
Thomas Graf98250692007-08-22 12:47:26 -07002482 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002483
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002484 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002485}
2486
Thomas Graf7deb2262007-08-22 13:57:39 -07002487static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002488{
Thomas Graf7deb2262007-08-22 13:57:39 -07002489 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002490 if (x->aead)
2491 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002492 if (x->aalg) {
2493 l += nla_total_size(sizeof(struct xfrm_algo) +
2494 (x->aalg->alg_key_len + 7) / 8);
2495 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2496 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002497 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002498 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002499 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002500 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002501 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002502 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002503 if (x->tfcpad)
2504 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002505 if (x->replay_esn)
2506 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002507 if (x->security)
2508 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2509 x->security->ctx_len);
2510 if (x->coaddr)
2511 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002512 if (x->props.extra_flags)
2513 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002514
Herbert Xud26f3982007-11-13 21:47:08 -08002515 /* Must count x->lastused as it may become non-zero behind our back. */
2516 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002517
2518 return l;
2519}
2520
David S. Miller214e0052011-02-24 00:02:38 -05002521static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002522{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002523 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002524 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002525 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002526 struct nlmsghdr *nlh;
2527 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002528 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002529 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002530
2531 headlen = sizeof(*p);
2532 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002533 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002534 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002535 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002536 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002537 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002538
Thomas Graf7deb2262007-08-22 13:57:39 -07002539 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002540 if (skb == NULL)
2541 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002542
Eric W. Biederman15e47302012-09-07 20:12:54 +00002543 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002544 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002545 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002546 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002547
Thomas Graf7b67c852007-08-22 13:53:52 -07002548 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002549 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002550 struct nlattr *attr;
2551
Thomas Graf7b67c852007-08-22 13:53:52 -07002552 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002553 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2554 id->spi = x->id.spi;
2555 id->family = x->props.family;
2556 id->proto = x->id.proto;
2557
Thomas Grafc0144be2007-08-22 13:55:43 -07002558 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002559 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002560 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002561 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002562
2563 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002564 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002565 err = copy_to_user_state_extra(x, p, skb);
2566 if (err)
2567 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002568
Thomas Graf98250692007-08-22 12:47:26 -07002569 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002570
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002571 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002572
David S. Miller1d1e34d2012-06-27 21:57:03 -07002573out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002574 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002575 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002576}
2577
David S. Miller214e0052011-02-24 00:02:38 -05002578static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002579{
2580
2581 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002582 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002583 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002584 case XFRM_MSG_NEWAE:
2585 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002586 case XFRM_MSG_DELSA:
2587 case XFRM_MSG_UPDSA:
2588 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002589 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002590 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002591 return xfrm_notify_sa_flush(c);
2592 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002593 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2594 c->event);
2595 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002596 }
2597
2598 return 0;
2599
2600}
2601
Thomas Graf7deb2262007-08-22 13:57:39 -07002602static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2603 struct xfrm_policy *xp)
2604{
2605 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2606 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002607 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002608 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2609 + userpolicy_type_attrsize();
2610}
2611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002613 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002615 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 struct xfrm_user_acquire *ua;
2617 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002618 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002620 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2621 if (nlh == NULL)
2622 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Thomas Graf7b67c852007-08-22 13:53:52 -07002624 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 memcpy(&ua->id, &x->id, sizeof(ua->id));
2626 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2627 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002628 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 ua->aalgos = xt->aalgos;
2630 ua->ealgos = xt->ealgos;
2631 ua->calgos = xt->calgos;
2632 ua->seq = x->km.seq = seq;
2633
David S. Miller1d1e34d2012-06-27 21:57:03 -07002634 err = copy_to_user_tmpl(xp, skb);
2635 if (!err)
2636 err = copy_to_user_state_sec_ctx(x, skb);
2637 if (!err)
2638 err = copy_to_user_policy_type(xp->type, skb);
2639 if (!err)
2640 err = xfrm_mark_put(skb, &xp->mark);
2641 if (err) {
2642 nlmsg_cancel(skb, nlh);
2643 return err;
2644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Thomas Graf98250692007-08-22 12:47:26 -07002646 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
2649static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002650 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002652 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Thomas Graf7deb2262007-08-22 13:57:39 -07002655 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 if (skb == NULL)
2657 return -ENOMEM;
2658
Fan Du65e07362012-08-15 10:13:47 +08002659 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 BUG();
2661
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002662 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
2665/* User gives us xfrm_user_policy_info followed by an array of 0
2666 * or more templates.
2667 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002668static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 u8 *data, int len, int *dir)
2670{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002671 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2673 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2674 struct xfrm_policy *xp;
2675 int nr;
2676
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002677 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 case AF_INET:
2679 if (opt != IP_XFRM_POLICY) {
2680 *dir = -EOPNOTSUPP;
2681 return NULL;
2682 }
2683 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002684#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 case AF_INET6:
2686 if (opt != IPV6_XFRM_POLICY) {
2687 *dir = -EOPNOTSUPP;
2688 return NULL;
2689 }
2690 break;
2691#endif
2692 default:
2693 *dir = -EINVAL;
2694 return NULL;
2695 }
2696
2697 *dir = -EINVAL;
2698
2699 if (len < sizeof(*p) ||
2700 verify_newpolicy_info(p))
2701 return NULL;
2702
2703 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002704 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return NULL;
2706
Herbert Xua4f1bac2005-07-26 15:43:17 -07002707 if (p->dir > XFRM_POLICY_OUT)
2708 return NULL;
2709
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002710 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (xp == NULL) {
2712 *dir = -ENOBUFS;
2713 return NULL;
2714 }
2715
2716 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002717 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 copy_templates(xp, ut, nr);
2719
2720 *dir = p->dir;
2721
2722 return xp;
2723}
2724
Thomas Graf7deb2262007-08-22 13:57:39 -07002725static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2726{
2727 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2728 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2729 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002730 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002731 + userpolicy_type_attrsize();
2732}
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002735 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
2737 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002738 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002739 struct nlmsghdr *nlh;
2740 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Eric W. Biederman15e47302012-09-07 20:12:54 +00002742 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002743 if (nlh == NULL)
2744 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Thomas Graf7b67c852007-08-22 13:53:52 -07002746 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002748 err = copy_to_user_tmpl(xp, skb);
2749 if (!err)
2750 err = copy_to_user_sec_ctx(xp, skb);
2751 if (!err)
2752 err = copy_to_user_policy_type(xp->type, skb);
2753 if (!err)
2754 err = xfrm_mark_put(skb, &xp->mark);
2755 if (err) {
2756 nlmsg_cancel(skb, nlh);
2757 return err;
2758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 upe->hard = !!hard;
2760
Thomas Graf98250692007-08-22 12:47:26 -07002761 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
David S. Miller214e0052011-02-24 00:02:38 -05002764static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002766 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Thomas Graf7deb2262007-08-22 13:57:39 -07002769 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (skb == NULL)
2771 return -ENOMEM;
2772
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002773 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 BUG();
2775
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002776 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
2778
David S. Miller214e0052011-02-24 00:02:38 -05002779static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002780{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002781 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002782 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002783 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002784 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002785 struct nlmsghdr *nlh;
2786 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002787 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002788
2789 headlen = sizeof(*p);
2790 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002791 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002792 headlen = sizeof(*id);
2793 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002794 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002795 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002796 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002797
Thomas Graf7deb2262007-08-22 13:57:39 -07002798 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002799 if (skb == NULL)
2800 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002801
Eric W. Biederman15e47302012-09-07 20:12:54 +00002802 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002803 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002804 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002805 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806
Thomas Graf7b67c852007-08-22 13:53:52 -07002807 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002808 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002809 struct nlattr *attr;
2810
Thomas Graf7b67c852007-08-22 13:53:52 -07002811 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002812 memset(id, 0, sizeof(*id));
2813 id->dir = dir;
2814 if (c->data.byid)
2815 id->index = xp->index;
2816 else
2817 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2818
Thomas Grafc0144be2007-08-22 13:55:43 -07002819 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002820 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002821 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002822 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002823
2824 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002825 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002826
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002828 err = copy_to_user_tmpl(xp, skb);
2829 if (!err)
2830 err = copy_to_user_policy_type(xp->type, skb);
2831 if (!err)
2832 err = xfrm_mark_put(skb, &xp->mark);
2833 if (err)
2834 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002835
Thomas Graf98250692007-08-22 12:47:26 -07002836 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002837
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002838 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002839
David S. Miller1d1e34d2012-06-27 21:57:03 -07002840out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002841 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002842 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002843}
2844
David S. Miller214e0052011-02-24 00:02:38 -05002845static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002846{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002847 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848 struct nlmsghdr *nlh;
2849 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002850 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002851
Thomas Graf7deb2262007-08-22 13:57:39 -07002852 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002853 if (skb == NULL)
2854 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002855
Eric W. Biederman15e47302012-09-07 20:12:54 +00002856 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002857 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002858 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002859 goto out_free_skb;
2860 err = copy_to_user_policy_type(c->data.type, skb);
2861 if (err)
2862 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863
Thomas Graf98250692007-08-22 12:47:26 -07002864 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002865
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002866 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002867
David S. Miller1d1e34d2012-06-27 21:57:03 -07002868out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002869 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002870 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002871}
2872
David S. Miller214e0052011-02-24 00:02:38 -05002873static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002874{
2875
2876 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002877 case XFRM_MSG_NEWPOLICY:
2878 case XFRM_MSG_UPDPOLICY:
2879 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002880 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002881 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002883 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002884 return xfrm_exp_policy_notify(xp, dir, c);
2885 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002886 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2887 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002888 }
2889
2890 return 0;
2891
2892}
2893
Thomas Graf7deb2262007-08-22 13:57:39 -07002894static inline size_t xfrm_report_msgsize(void)
2895{
2896 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2897}
2898
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002899static int build_report(struct sk_buff *skb, u8 proto,
2900 struct xfrm_selector *sel, xfrm_address_t *addr)
2901{
2902 struct xfrm_user_report *ur;
2903 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002904
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002905 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2906 if (nlh == NULL)
2907 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002908
Thomas Graf7b67c852007-08-22 13:53:52 -07002909 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002910 ur->proto = proto;
2911 memcpy(&ur->sel, sel, sizeof(ur->sel));
2912
David S. Miller1d1e34d2012-06-27 21:57:03 -07002913 if (addr) {
2914 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2915 if (err) {
2916 nlmsg_cancel(skb, nlh);
2917 return err;
2918 }
2919 }
Thomas Graf98250692007-08-22 12:47:26 -07002920 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002921}
2922
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002923static int xfrm_send_report(struct net *net, u8 proto,
2924 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002925{
2926 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002927
Thomas Graf7deb2262007-08-22 13:57:39 -07002928 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002929 if (skb == NULL)
2930 return -ENOMEM;
2931
2932 if (build_report(skb, proto, sel, addr) < 0)
2933 BUG();
2934
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002935 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002936}
2937
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002938static inline size_t xfrm_mapping_msgsize(void)
2939{
2940 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2941}
2942
2943static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2944 xfrm_address_t *new_saddr, __be16 new_sport)
2945{
2946 struct xfrm_user_mapping *um;
2947 struct nlmsghdr *nlh;
2948
2949 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2950 if (nlh == NULL)
2951 return -EMSGSIZE;
2952
2953 um = nlmsg_data(nlh);
2954
2955 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2956 um->id.spi = x->id.spi;
2957 um->id.family = x->props.family;
2958 um->id.proto = x->id.proto;
2959 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2960 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2961 um->new_sport = new_sport;
2962 um->old_sport = x->encap->encap_sport;
2963 um->reqid = x->props.reqid;
2964
2965 return nlmsg_end(skb, nlh);
2966}
2967
2968static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2969 __be16 sport)
2970{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002971 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002972 struct sk_buff *skb;
2973
2974 if (x->id.proto != IPPROTO_ESP)
2975 return -EINVAL;
2976
2977 if (!x->encap)
2978 return -EINVAL;
2979
2980 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2981 if (skb == NULL)
2982 return -ENOMEM;
2983
2984 if (build_mapping(skb, x, ipaddr, sport) < 0)
2985 BUG();
2986
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002987 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002988}
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990static struct xfrm_mgr netlink_mgr = {
2991 .id = "netlink",
2992 .notify = xfrm_send_state_notify,
2993 .acquire = xfrm_send_acquire,
2994 .compile_policy = xfrm_compile_policy,
2995 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002996 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002997 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002998 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999};
3000
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003001static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002{
Patrick McHardybe336902006-03-20 22:40:54 -08003003 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003004 struct netlink_kernel_cfg cfg = {
3005 .groups = XFRMNLGRP_MAX,
3006 .input = xfrm_netlink_rcv,
3007 };
Patrick McHardybe336902006-03-20 22:40:54 -08003008
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003009 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003010 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003012 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003013 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 return 0;
3015}
3016
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003017static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003018{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003019 struct net *net;
3020 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003021 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003022 synchronize_net();
3023 list_for_each_entry(net, net_exit_list, exit_list)
3024 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003025}
3026
3027static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003028 .init = xfrm_user_net_init,
3029 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003030};
3031
3032static int __init xfrm_user_init(void)
3033{
3034 int rv;
3035
3036 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3037
3038 rv = register_pernet_subsys(&xfrm_user_net_ops);
3039 if (rv < 0)
3040 return rv;
3041 rv = xfrm_register_km(&netlink_mgr);
3042 if (rv < 0)
3043 unregister_pernet_subsys(&xfrm_user_net_ops);
3044 return rv;
3045}
3046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047static void __exit xfrm_user_exit(void)
3048{
3049 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003050 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051}
3052
3053module_init(xfrm_user_init);
3054module_exit(xfrm_user_exit);
3055MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003056MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003057