blob: d47a4cf5107a2e771b8751eb886d82ed60b04a3b [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
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Thomas Graf5424f322007-08-22 14:01:33 -070036static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Thomas Graf5424f322007-08-22 14:01:33 -070038 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct xfrm_algo *algp;
40
41 if (!rt)
42 return 0;
43
Thomas Graf5424f322007-08-22 14:01:33 -070044 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080045 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070046 return -EINVAL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (type) {
49 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53
54 default:
55 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
59 return 0;
60}
61
Martin Willi4447bb32009-11-25 00:29:52 +000062static int verify_auth_trunc(struct nlattr **attrs)
63{
64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65 struct xfrm_algo_auth *algp;
66
67 if (!rt)
68 return 0;
69
70 algp = nla_data(rt);
71 if (nla_len(rt) < xfrm_alg_auth_len(algp))
72 return -EINVAL;
73
74 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
75 return 0;
76}
77
Herbert Xu1a6509d2008-01-28 19:37:29 -080078static int verify_aead(struct nlattr **attrs)
79{
80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81 struct xfrm_algo_aead *algp;
82
83 if (!rt)
84 return 0;
85
86 algp = nla_data(rt);
87 if (nla_len(rt) < aead_len(algp))
88 return -EINVAL;
89
90 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
91 return 0;
92}
93
Thomas Graf5424f322007-08-22 14:01:33 -070094static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070095 xfrm_address_t **addrp)
96{
Thomas Graf5424f322007-08-22 14:01:33 -070097 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070098
Thomas Grafcf5cb792007-08-22 13:59:04 -070099 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700100 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700101}
Trent Jaegerdf718372005-12-13 23:12:27 -0800102
Thomas Graf5424f322007-08-22 14:01:33 -0700103static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800104{
Thomas Graf5424f322007-08-22 14:01:33 -0700105 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800106 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800107
108 if (!rt)
109 return 0;
110
Thomas Graf5424f322007-08-22 14:01:33 -0700111 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700112 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800113 return -EINVAL;
114
115 return 0;
116}
117
Steffen Klassertd8647b72011-03-08 00:10:27 +0000118static inline int verify_replay(struct xfrm_usersa_info *p,
119 struct nlattr **attrs)
120{
121 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000122 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000123
124 if (!rt)
Florian Westphal0355a9f2018-02-12 14:42:01 +0100125 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000135
Fan Du01714102014-01-18 09:54:28 +0800136 /* As only ESP and AH support ESN feature. */
137 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000138 return -EINVAL;
139
Steffen Klassertd8647b72011-03-08 00:10:27 +0000140 if (p->replay_window != 0)
141 return -EINVAL;
142
143 return 0;
144}
Trent Jaegerdf718372005-12-13 23:12:27 -0800145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700147 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int err;
150
151 err = -EINVAL;
152 switch (p->family) {
153 case AF_INET:
Anirudh Gupta92a63c22019-05-21 20:59:47 +0530154 break;
155
156 case AF_INET6:
157#if IS_ENABLED(CONFIG_IPV6)
158 break;
159#else
160 err = -EAFNOSUPPORT;
161 goto out;
162#endif
163
164 default:
165 goto out;
166 }
167
168 switch (p->sel.family) {
Nicolas Dichtel2d0dbd02019-06-14 11:13:55 +0200169 case AF_UNSPEC:
170 break;
171
Anirudh Gupta92a63c22019-05-21 20:59:47 +0530172 case AF_INET:
Steffen Klassert89cb86e2018-08-01 13:45:11 +0200173 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
174 goto out;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 break;
177
178 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000179#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert89cb86e2018-08-01 13:45:11 +0200180 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
181 goto out;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 break;
184#else
185 err = -EAFNOSUPPORT;
186 goto out;
187#endif
188
189 default:
190 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 err = -EINVAL;
194 switch (p->id.proto) {
195 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000196 if ((!attrs[XFRMA_ALG_AUTH] &&
197 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800198 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700199 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000200 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200201 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 goto out;
203 break;
204
205 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800206 if (attrs[XFRMA_ALG_COMP])
207 goto out;
208 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000209 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800210 !attrs[XFRMA_ALG_CRYPT] &&
211 !attrs[XFRMA_ALG_AEAD])
212 goto out;
213 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000214 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800215 attrs[XFRMA_ALG_CRYPT]) &&
216 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000218 if (attrs[XFRMA_TFCPAD] &&
219 p->mode != XFRM_MODE_TUNNEL)
220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 break;
222
223 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700224 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800225 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700226 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000227 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000228 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200229 attrs[XFRMA_TFCPAD] ||
230 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto out;
232 break;
233
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000234#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700235 case IPPROTO_DSTOPTS:
236 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700237 if (attrs[XFRMA_ALG_COMP] ||
238 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000239 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800240 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700241 attrs[XFRMA_ALG_CRYPT] ||
242 attrs[XFRMA_ENCAP] ||
243 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000244 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700245 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700246 goto out;
247 break;
248#endif
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 default:
251 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Herbert Xu1a6509d2008-01-28 19:37:29 -0800254 if ((err = verify_aead(attrs)))
255 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000256 if ((err = verify_auth_trunc(attrs)))
257 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700258 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700260 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700262 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700264 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800265 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000266 if ((err = verify_replay(p, attrs)))
267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 err = -EINVAL;
270 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700271 case XFRM_MODE_TRANSPORT:
272 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700273 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700274 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 break;
276
277 default:
278 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 err = 0;
282
283out:
284 return err;
285}
286
287static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800288 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700289 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct xfrm_algo *p, *ualg;
292 struct xfrm_algo_desc *algo;
293
294 if (!rta)
295 return 0;
296
Thomas Graf5424f322007-08-22 14:01:33 -0700297 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 algo = get_byname(ualg->alg_name, 1);
300 if (!algo)
301 return -ENOSYS;
302 *props = algo->desc.sadb_alg_id;
303
Eric Dumazet0f99be02008-01-08 23:39:06 -0800304 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!p)
306 return -ENOMEM;
307
Herbert Xu04ff1262006-08-13 08:50:00 +1000308 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 *algpp = p;
310 return 0;
311}
312
Herbert Xu69b01372015-05-27 16:03:45 +0800313static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
314{
315 struct xfrm_algo *p, *ualg;
316 struct xfrm_algo_desc *algo;
317
318 if (!rta)
319 return 0;
320
321 ualg = nla_data(rta);
322
323 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
324 if (!algo)
325 return -ENOSYS;
326 x->props.ealgo = algo->desc.sadb_alg_id;
327
328 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
329 if (!p)
330 return -ENOMEM;
331
332 strcpy(p->alg_name, algo->name);
333 x->ealg = p;
334 x->geniv = algo->uinfo.encr.geniv;
335 return 0;
336}
337
Martin Willi4447bb32009-11-25 00:29:52 +0000338static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
339 struct nlattr *rta)
340{
341 struct xfrm_algo *ualg;
342 struct xfrm_algo_auth *p;
343 struct xfrm_algo_desc *algo;
344
345 if (!rta)
346 return 0;
347
348 ualg = nla_data(rta);
349
350 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
351 if (!algo)
352 return -ENOSYS;
353 *props = algo->desc.sadb_alg_id;
354
355 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
356 if (!p)
357 return -ENOMEM;
358
359 strcpy(p->alg_name, algo->name);
360 p->alg_key_len = ualg->alg_key_len;
361 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
362 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
363
364 *algpp = p;
365 return 0;
366}
367
368static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
369 struct nlattr *rta)
370{
371 struct xfrm_algo_auth *p, *ualg;
372 struct xfrm_algo_desc *algo;
373
374 if (!rta)
375 return 0;
376
377 ualg = nla_data(rta);
378
379 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
380 if (!algo)
381 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800382 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000383 return -EINVAL;
384 *props = algo->desc.sadb_alg_id;
385
386 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
387 if (!p)
388 return -ENOMEM;
389
390 strcpy(p->alg_name, algo->name);
391 if (!p->alg_trunc_len)
392 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
393
394 *algpp = p;
395 return 0;
396}
397
Herbert Xu69b01372015-05-27 16:03:45 +0800398static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800399{
400 struct xfrm_algo_aead *p, *ualg;
401 struct xfrm_algo_desc *algo;
402
403 if (!rta)
404 return 0;
405
406 ualg = nla_data(rta);
407
408 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
409 if (!algo)
410 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800411 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800412
413 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
414 if (!p)
415 return -ENOMEM;
416
417 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800418 x->aead = p;
419 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800420 return 0;
421}
422
Steffen Klasserte2b19122011-03-28 19:47:30 +0000423static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
424 struct nlattr *rp)
425{
426 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000427 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000428
429 if (!replay_esn || !rp)
430 return 0;
431
432 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000433 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000434
Andy Whitcroft79191ea2017-03-23 07:45:44 +0000435 /* Check the overall length and the internal bitmap length to avoid
436 * potential overflow. */
437 if (nla_len(rp) < ulen ||
438 xfrm_replay_state_esn_len(replay_esn) != ulen ||
439 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000440 return -EINVAL;
441
Andy Whitcroft64a54652017-03-22 07:29:31 +0000442 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
443 return -EINVAL;
444
Steffen Klasserte2b19122011-03-28 19:47:30 +0000445 return 0;
446}
447
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
449 struct xfrm_replay_state_esn **preplay_esn,
450 struct nlattr *rta)
451{
452 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000453 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000454
455 if (!rta)
456 return 0;
457
458 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000459 klen = xfrm_replay_state_esn_len(up);
460 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000461
Mathias Krauseecd79182012-09-20 10:01:49 +0000462 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000463 if (!p)
464 return -ENOMEM;
465
Mathias Krauseecd79182012-09-20 10:01:49 +0000466 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000467 if (!pp) {
468 kfree(p);
469 return -ENOMEM;
470 }
471
Mathias Krauseecd79182012-09-20 10:01:49 +0000472 memcpy(p, up, ulen);
473 memcpy(pp, up, ulen);
474
Steffen Klassertd8647b72011-03-08 00:10:27 +0000475 *replay_esn = p;
476 *preplay_esn = pp;
477
478 return 0;
479}
480
Joy Latten661697f2007-04-13 16:14:35 -0700481static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800482{
Trent Jaegerdf718372005-12-13 23:12:27 -0800483 int len = 0;
484
485 if (xfrm_ctx) {
486 len += sizeof(struct xfrm_user_sec_ctx);
487 len += xfrm_ctx->ctx_len;
488 }
489 return len;
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
493{
494 memcpy(&x->id, &p->id, sizeof(x->id));
495 memcpy(&x->sel, &p->sel, sizeof(x->sel));
496 memcpy(&x->lft, &p->lft, sizeof(x->lft));
497 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800498 x->props.replay_window = min_t(unsigned int, p->replay_window,
499 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 x->props.reqid = p->reqid;
501 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700502 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700504
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700505 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700506 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800509/*
510 * someday when pfkey also has support, we could have the code
511 * somehow made shareable and move it to xfrm_state.c - JHS
512 *
513*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000514static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
515 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800516{
Thomas Graf5424f322007-08-22 14:01:33 -0700517 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000518 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700519 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
520 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
521 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800522
Steffen Klassertd8647b72011-03-08 00:10:27 +0000523 if (re) {
524 struct xfrm_replay_state_esn *replay_esn;
525 replay_esn = nla_data(re);
526 memcpy(x->replay_esn, replay_esn,
527 xfrm_replay_state_esn_len(replay_esn));
528 memcpy(x->preplay_esn, replay_esn,
529 xfrm_replay_state_esn_len(replay_esn));
530 }
531
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800532 if (rp) {
533 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700534 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800535 memcpy(&x->replay, replay, sizeof(*replay));
536 memcpy(&x->preplay, replay, sizeof(*replay));
537 }
538
539 if (lt) {
540 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700541 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800542 x->curlft.bytes = ltime->bytes;
543 x->curlft.packets = ltime->packets;
544 x->curlft.add_time = ltime->add_time;
545 x->curlft.use_time = ltime->use_time;
546 }
547
Thomas Grafcf5cb792007-08-22 13:59:04 -0700548 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700549 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800550
Thomas Grafcf5cb792007-08-22 13:59:04 -0700551 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700552 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800553}
554
Steffen Klassert78f10c52018-06-12 12:44:26 +0200555static void xfrm_smark_init(struct nlattr **attrs, struct xfrm_mark *m)
556{
557 if (attrs[XFRMA_SET_MARK]) {
558 m->v = nla_get_u32(attrs[XFRMA_SET_MARK]);
559 if (attrs[XFRMA_SET_MARK_MASK])
560 m->m = nla_get_u32(attrs[XFRMA_SET_MARK_MASK]);
561 else
562 m->m = 0xffffffff;
563 } else {
564 m->v = m->m = 0;
565 }
566}
567
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800568static struct xfrm_state *xfrm_state_construct(struct net *net,
569 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700570 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 int *errp)
572{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800573 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 int err = -ENOMEM;
575
576 if (!x)
577 goto error_no_put;
578
579 copy_from_user_state(x, p);
580
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100581 if (attrs[XFRMA_SA_EXTRA_FLAGS])
582 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
583
Herbert Xu69b01372015-05-27 16:03:45 +0800584 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800585 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000586 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
587 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000589 if (!x->props.aalgo) {
590 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
591 attrs[XFRMA_ALG_AUTH])))
592 goto error;
593 }
Herbert Xu69b01372015-05-27 16:03:45 +0800594 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto error;
596 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
597 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700598 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700600
601 if (attrs[XFRMA_ENCAP]) {
602 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
603 sizeof(*x->encap), GFP_KERNEL);
604 if (x->encap == NULL)
605 goto error;
606 }
607
Martin Willi35d28562010-12-08 04:37:49 +0000608 if (attrs[XFRMA_TFCPAD])
609 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
610
Thomas Graffd211502007-09-06 03:28:08 -0700611 if (attrs[XFRMA_COADDR]) {
612 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
613 sizeof(*x->coaddr), GFP_KERNEL);
614 if (x->coaddr == NULL)
615 goto error;
616 }
617
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000618 xfrm_mark_get(attrs, &x->mark);
619
Steffen Klassert78f10c52018-06-12 12:44:26 +0200620 xfrm_smark_init(attrs, &x->props.smark);
Lorenzo Colitti34e23de2017-08-11 02:11:33 +0900621
Steffen Klasserta80f5602018-06-12 14:07:07 +0200622 if (attrs[XFRMA_IF_ID])
623 x->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
Lorenzo Colittibf25c792017-08-11 02:11:33 +0900624
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700625 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (err)
627 goto error;
628
Mathias Krause2f30ea52016-09-08 18:09:57 +0200629 if (attrs[XFRMA_SEC_CTX]) {
630 err = security_xfrm_state_alloc(x,
631 nla_data(attrs[XFRMA_SEC_CTX]));
632 if (err)
633 goto error;
634 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800635
Steffen Klassertd8647b72011-03-08 00:10:27 +0000636 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
637 attrs[XFRMA_REPLAY_ESN_VAL])))
638 goto error;
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800641 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800642 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800643 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800644
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000645 if ((err = xfrm_init_replay(x)))
646 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800647
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000648 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000649 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 return x;
652
653error:
654 x->km.state = XFRM_STATE_DEAD;
655 xfrm_state_put(x);
656error_no_put:
657 *errp = err;
658 return NULL;
659}
660
Christoph Hellwig22e70052007-01-02 15:22:30 -0800661static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700662 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800664 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700665 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct xfrm_state *x;
667 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700668 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Thomas Graf35a7aa02007-08-22 14:00:40 -0700670 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (err)
672 return err;
673
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800674 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!x)
676 return err;
677
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700678 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
680 err = xfrm_state_add(x);
681 else
682 err = xfrm_state_update(x);
683
Tetsuo Handa2e710292014-04-22 21:48:30 +0900684 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (err < 0) {
687 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800688 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700689 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700692 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000693 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700694 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700695
696 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700697out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700698 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return err;
700}
701
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800702static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
703 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700704 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700705 int *errp)
706{
707 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000708 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700709 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000710 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700711
712 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
713 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000714 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700715 } else {
716 xfrm_address_t *saddr = NULL;
717
Thomas Graf35a7aa02007-08-22 14:00:40 -0700718 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700719 if (!saddr) {
720 err = -EINVAL;
721 goto out;
722 }
723
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800724 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000725 x = xfrm_state_lookup_byaddr(net, mark,
726 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800727 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700728 }
729
730 out:
731 if (!x && errp)
732 *errp = err;
733 return x;
734}
735
Christoph Hellwig22e70052007-01-02 15:22:30 -0800736static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700737 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800739 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700741 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700742 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700743 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800745 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700747 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
David S. Miller6f68dc32006-06-08 23:58:52 -0700749 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700750 goto out;
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700753 err = -EPERM;
754 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700757 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600758
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700759 if (err < 0)
760 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700761
762 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000763 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700764 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700765 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700767out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900768 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700769 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700770 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
774{
Mathias Krausef778a632012-09-19 11:33:39 +0000775 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 memcpy(&p->id, &x->id, sizeof(p->id));
777 memcpy(&p->sel, &x->sel, sizeof(p->sel));
778 memcpy(&p->lft, &x->lft, sizeof(p->lft));
779 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400780 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
781 put_unaligned(x->stats.replay, &p->stats.replay);
782 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700783 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 p->mode = x->props.mode;
785 p->replay_window = x->props.replay_window;
786 p->reqid = x->props.reqid;
787 p->family = x->props.family;
788 p->flags = x->props.flags;
789 p->seq = x->km.seq;
790}
791
792struct xfrm_dump_info {
793 struct sk_buff *in_skb;
794 struct sk_buff *out_skb;
795 u32 nlmsg_seq;
796 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797};
798
Thomas Grafc0144be2007-08-22 13:55:43 -0700799static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
800{
Thomas Grafc0144be2007-08-22 13:55:43 -0700801 struct xfrm_user_sec_ctx *uctx;
802 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700803 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700804
805 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
806 if (attr == NULL)
807 return -EMSGSIZE;
808
809 uctx = nla_data(attr);
810 uctx->exttype = XFRMA_SEC_CTX;
811 uctx->len = ctx_size;
812 uctx->ctx_doi = s->ctx_doi;
813 uctx->ctx_alg = s->ctx_alg;
814 uctx->ctx_len = s->ctx_len;
815 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
816
817 return 0;
818}
819
Martin Willi4447bb32009-11-25 00:29:52 +0000820static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
821{
822 struct xfrm_algo *algo;
823 struct nlattr *nla;
824
825 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
826 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
827 if (!nla)
828 return -EMSGSIZE;
829
830 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000831 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000832 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
833 algo->alg_key_len = auth->alg_key_len;
834
835 return 0;
836}
837
Steffen Klassert78f10c52018-06-12 12:44:26 +0200838static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
839{
840 int ret = 0;
841
842 if (m->v | m->m) {
843 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
844 if (!ret)
845 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
846 }
847 return ret;
848}
849
Herbert Xu68325d32007-10-09 13:30:57 -0700850/* Don't change this without updating xfrm_sa_len! */
851static int copy_to_user_state_extra(struct xfrm_state *x,
852 struct xfrm_usersa_info *p,
853 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700855 int ret = 0;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 copy_to_user_state(x, p);
858
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100859 if (x->props.extra_flags) {
860 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
861 x->props.extra_flags);
862 if (ret)
863 goto out;
864 }
865
David S. Miller1d1e34d2012-06-27 21:57:03 -0700866 if (x->coaddr) {
867 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
868 if (ret)
869 goto out;
870 }
871 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200872 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
873 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700874 if (ret)
875 goto out;
876 }
877 if (x->aead) {
878 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
879 if (ret)
880 goto out;
881 }
882 if (x->aalg) {
883 ret = copy_to_user_auth(x->aalg, skb);
884 if (!ret)
885 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
886 xfrm_alg_auth_len(x->aalg), x->aalg);
887 if (ret)
888 goto out;
889 }
890 if (x->ealg) {
891 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
892 if (ret)
893 goto out;
894 }
895 if (x->calg) {
896 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
897 if (ret)
898 goto out;
899 }
900 if (x->encap) {
901 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
902 if (ret)
903 goto out;
904 }
905 if (x->tfcpad) {
906 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
907 if (ret)
908 goto out;
909 }
910 ret = xfrm_mark_put(skb, &x->mark);
911 if (ret)
912 goto out;
Steffen Klassert78f10c52018-06-12 12:44:26 +0200913
914 ret = xfrm_smark_put(skb, &x->props.smark);
915 if (ret)
916 goto out;
917
dingzhif293a5e2014-10-30 09:39:36 +0100918 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700919 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
920 xfrm_replay_state_esn_len(x->replay_esn),
921 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100922 else
923 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
924 &x->replay);
925 if (ret)
926 goto out;
Steffen Klasserta80f5602018-06-12 14:07:07 +0200927
928 if (x->if_id) {
929 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
930 if (ret)
931 goto out;
932 }
933
David S. Miller1d1e34d2012-06-27 21:57:03 -0700934 if (x->security)
935 ret = copy_sec_ctx(x->security, skb);
Lorenzo Colittibf25c792017-08-11 02:11:33 +0900936 if (x->props.output_mark) {
937 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
938 if (ret)
939 goto out;
940 }
jianzhouf41ab602019-01-03 16:41:57 +0800941
David S. Miller1d1e34d2012-06-27 21:57:03 -0700942out:
943 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700944}
945
946static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
947{
948 struct xfrm_dump_info *sp = ptr;
949 struct sk_buff *in_skb = sp->in_skb;
950 struct sk_buff *skb = sp->out_skb;
951 struct xfrm_usersa_info *p;
952 struct nlmsghdr *nlh;
953 int err;
954
Eric W. Biederman15e47302012-09-07 20:12:54 +0000955 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700956 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
957 if (nlh == NULL)
958 return -EMSGSIZE;
959
960 p = nlmsg_data(nlh);
961
962 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700963 if (err) {
964 nlmsg_cancel(skb, nlh);
965 return err;
966 }
Thomas Graf98250692007-08-22 12:47:26 -0700967 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Timo Teras4c563f72008-02-28 21:31:08 -0800971static int xfrm_dump_sa_done(struct netlink_callback *cb)
972{
973 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800974 struct sock *sk = cb->skb->sk;
975 struct net *net = sock_net(sk);
976
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200977 if (cb->args[0])
978 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800979 return 0;
980}
981
Nicolas Dichteld3623092014-02-14 15:30:36 +0100982static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
984{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800985 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800986 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 struct xfrm_dump_info info;
988
Timo Teras4c563f72008-02-28 21:31:08 -0800989 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
990 sizeof(cb->args) - sizeof(cb->args[0]));
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 info.in_skb = cb->skb;
993 info.out_skb = skb;
994 info.nlmsg_seq = cb->nlh->nlmsg_seq;
995 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800996
997 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100998 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100999 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001000 u8 proto = 0;
1001 int err;
1002
Nicolas Dichteld3623092014-02-14 15:30:36 +01001003 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
1004 xfrma_policy);
1005 if (err < 0)
1006 return err;
1007
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001008 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001009 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1010 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001011 if (filter == NULL)
1012 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001013 }
1014
1015 if (attrs[XFRMA_PROTO])
1016 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1017
1018 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001019 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001020 }
1021
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001022 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 return skb->len;
1025}
1026
1027static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1028 struct xfrm_state *x, u32 seq)
1029{
1030 struct xfrm_dump_info info;
1031 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001032 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Thomas Graf7deb2262007-08-22 13:57:39 -07001034 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (!skb)
1036 return ERR_PTR(-ENOMEM);
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 info.in_skb = in_skb;
1039 info.out_skb = skb;
1040 info.nlmsg_seq = seq;
1041 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Mathias Krause864745d2012-09-13 11:41:26 +00001043 err = dump_one_state(x, 0, &info);
1044 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001046 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048
1049 return skb;
1050}
1051
Michal Kubecek21ee5432014-06-03 10:26:06 +02001052/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1053 * Must be called with RCU read lock.
1054 */
1055static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1056 u32 pid, unsigned int group)
1057{
1058 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1059
Florian Westphal301a6da2018-06-25 14:00:07 +02001060 if (!nlsk) {
1061 kfree_skb(skb);
1062 return -EPIPE;
1063 }
1064
1065 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001066}
1067
Thomas Graf7deb2262007-08-22 13:57:39 -07001068static inline size_t xfrm_spdinfo_msgsize(void)
1069{
1070 return NLMSG_ALIGN(4)
1071 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001072 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1073 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1074 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001075}
1076
Alexey Dobriyane0710412010-01-23 13:37:10 +00001077static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001078 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001079{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001080 struct xfrmk_spdinfo si;
1081 struct xfrmu_spdinfo spc;
1082 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001083 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001084 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001085 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001086 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001087 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001088
Eric W. Biederman15e47302012-09-07 20:12:54 +00001089 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001090 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001091 return -EMSGSIZE;
1092
1093 f = nlmsg_data(nlh);
1094 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001095 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001096 spc.incnt = si.incnt;
1097 spc.outcnt = si.outcnt;
1098 spc.fwdcnt = si.fwdcnt;
1099 spc.inscnt = si.inscnt;
1100 spc.outscnt = si.outscnt;
1101 spc.fwdscnt = si.fwdscnt;
1102 sph.spdhcnt = si.spdhcnt;
1103 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001104
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001105 do {
1106 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1107
1108 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1109 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1110 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1111 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1112 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1113
David S. Miller1d1e34d2012-06-27 21:57:03 -07001114 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1115 if (!err)
1116 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001117 if (!err)
1118 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1119 if (!err)
1120 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001121 if (err) {
1122 nlmsg_cancel(skb, nlh);
1123 return err;
1124 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001125
Johannes Berg053c0952015-01-16 22:09:00 +01001126 nlmsg_end(skb, nlh);
1127 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001128}
1129
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001130static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1131 struct nlattr **attrs)
1132{
1133 struct net *net = sock_net(skb->sk);
1134 struct xfrmu_spdhthresh *thresh4 = NULL;
1135 struct xfrmu_spdhthresh *thresh6 = NULL;
1136
1137 /* selector prefixlen thresholds to hash policies */
1138 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1139 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1140
1141 if (nla_len(rta) < sizeof(*thresh4))
1142 return -EINVAL;
1143 thresh4 = nla_data(rta);
1144 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1145 return -EINVAL;
1146 }
1147 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1148 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1149
1150 if (nla_len(rta) < sizeof(*thresh6))
1151 return -EINVAL;
1152 thresh6 = nla_data(rta);
1153 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1154 return -EINVAL;
1155 }
1156
1157 if (thresh4 || thresh6) {
1158 write_seqlock(&net->xfrm.policy_hthresh.lock);
1159 if (thresh4) {
1160 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1161 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1162 }
1163 if (thresh6) {
1164 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1165 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1166 }
1167 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1168
1169 xfrm_policy_hash_rebuild(net);
1170 }
1171
1172 return 0;
1173}
1174
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001175static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001176 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001177{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001178 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001179 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001180 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001181 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001182 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001183
Thomas Graf7deb2262007-08-22 13:57:39 -07001184 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001185 if (r_skb == NULL)
1186 return -ENOMEM;
1187
Eric W. Biederman15e47302012-09-07 20:12:54 +00001188 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001189 BUG();
1190
Eric W. Biederman15e47302012-09-07 20:12:54 +00001191 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001192}
1193
Thomas Graf7deb2262007-08-22 13:57:39 -07001194static inline size_t xfrm_sadinfo_msgsize(void)
1195{
1196 return NLMSG_ALIGN(4)
1197 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1198 + nla_total_size(4); /* XFRMA_SAD_CNT */
1199}
1200
Alexey Dobriyane0710412010-01-23 13:37:10 +00001201static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001202 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001203{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001204 struct xfrmk_sadinfo si;
1205 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001206 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001207 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001208 u32 *f;
1209
Eric W. Biederman15e47302012-09-07 20:12:54 +00001210 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001211 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001212 return -EMSGSIZE;
1213
1214 f = nlmsg_data(nlh);
1215 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001216 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001217
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001218 sh.sadhmcnt = si.sadhmcnt;
1219 sh.sadhcnt = si.sadhcnt;
1220
David S. Miller1d1e34d2012-06-27 21:57:03 -07001221 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1222 if (!err)
1223 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1224 if (err) {
1225 nlmsg_cancel(skb, nlh);
1226 return err;
1227 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001228
Johannes Berg053c0952015-01-16 22:09:00 +01001229 nlmsg_end(skb, nlh);
1230 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001231}
1232
1233static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001234 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001235{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001236 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001237 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001238 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001239 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001240 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001241
Thomas Graf7deb2262007-08-22 13:57:39 -07001242 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001243 if (r_skb == NULL)
1244 return -ENOMEM;
1245
Eric W. Biederman15e47302012-09-07 20:12:54 +00001246 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001247 BUG();
1248
Eric W. Biederman15e47302012-09-07 20:12:54 +00001249 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001250}
1251
Christoph Hellwig22e70052007-01-02 15:22:30 -08001252static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001253 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001255 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001256 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 struct xfrm_state *x;
1258 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001259 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001261 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (x == NULL)
1263 goto out_noput;
1264
1265 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1266 if (IS_ERR(resp_skb)) {
1267 err = PTR_ERR(resp_skb);
1268 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001269 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 xfrm_state_put(x);
1272out_noput:
1273 return err;
1274}
1275
Christoph Hellwig22e70052007-01-02 15:22:30 -08001276static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001277 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001279 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct xfrm_state *x;
1281 struct xfrm_userspi_info *p;
1282 struct sk_buff *resp_skb;
1283 xfrm_address_t *daddr;
1284 int family;
1285 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001286 u32 mark;
1287 struct xfrm_mark m;
Steffen Klasserta80f5602018-06-12 14:07:07 +02001288 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Thomas Graf7b67c852007-08-22 13:53:52 -07001290 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001291 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (err)
1293 goto out_noput;
1294
1295 family = p->info.family;
1296 daddr = &p->info.id.daddr;
1297
1298 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001299
1300 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001301
1302 if (attrs[XFRMA_IF_ID])
1303 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001306 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001307 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 xfrm_state_put(x);
1309 x = NULL;
1310 }
1311 }
1312
1313 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001314 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klasserta80f5602018-06-12 14:07:07 +02001315 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 &p->info.saddr, 1,
1317 family);
1318 err = -ENOENT;
1319 if (x == NULL)
1320 goto out_noput;
1321
Herbert Xu658b2192007-10-09 13:29:52 -07001322 err = xfrm_alloc_spi(x, p->min, p->max);
1323 if (err)
1324 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Herbert Xu658b2192007-10-09 13:29:52 -07001326 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (IS_ERR(resp_skb)) {
1328 err = PTR_ERR(resp_skb);
1329 goto out;
1330 }
1331
Eric W. Biederman15e47302012-09-07 20:12:54 +00001332 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334out:
1335 xfrm_state_put(x);
1336out_noput:
1337 return err;
1338}
1339
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001340static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 switch (dir) {
1343 case XFRM_POLICY_IN:
1344 case XFRM_POLICY_OUT:
1345 case XFRM_POLICY_FWD:
1346 break;
1347
1348 default:
1349 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 return 0;
1353}
1354
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001355static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001356{
1357 switch (type) {
1358 case XFRM_POLICY_TYPE_MAIN:
1359#ifdef CONFIG_XFRM_SUB_POLICY
1360 case XFRM_POLICY_TYPE_SUB:
1361#endif
1362 break;
1363
1364 default:
1365 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001366 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001367
1368 return 0;
1369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1372{
Fan Due682adf2013-11-07 17:47:48 +08001373 int ret;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 switch (p->share) {
1376 case XFRM_SHARE_ANY:
1377 case XFRM_SHARE_SESSION:
1378 case XFRM_SHARE_USER:
1379 case XFRM_SHARE_UNIQUE:
1380 break;
1381
1382 default:
1383 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 switch (p->action) {
1387 case XFRM_POLICY_ALLOW:
1388 case XFRM_POLICY_BLOCK:
1389 break;
1390
1391 default:
1392 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 switch (p->sel.family) {
1396 case AF_INET:
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001397 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1398 return -EINVAL;
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 break;
1401
1402 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001403#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001404 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1405 return -EINVAL;
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 break;
1408#else
1409 return -EAFNOSUPPORT;
1410#endif
1411
1412 default:
1413 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Fan Due682adf2013-11-07 17:47:48 +08001416 ret = verify_policy_dir(p->dir);
1417 if (ret)
1418 return ret;
YueHaibing7c967212019-02-28 15:18:59 +08001419 if (p->index && (xfrm_policy_id2dir(p->index) != p->dir))
Fan Due682adf2013-11-07 17:47:48 +08001420 return -EINVAL;
1421
1422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
Thomas Graf5424f322007-08-22 14:01:33 -07001425static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001426{
Thomas Graf5424f322007-08-22 14:01:33 -07001427 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001428 struct xfrm_user_sec_ctx *uctx;
1429
1430 if (!rt)
1431 return 0;
1432
Thomas Graf5424f322007-08-22 14:01:33 -07001433 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001434 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1438 int nr)
1439{
1440 int i;
1441
1442 xp->xfrm_nr = nr;
1443 for (i = 0; i < nr; i++, ut++) {
1444 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1445
1446 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1447 memcpy(&t->saddr, &ut->saddr,
1448 sizeof(xfrm_address_t));
1449 t->reqid = ut->reqid;
1450 t->mode = ut->mode;
1451 t->share = ut->share;
1452 t->optional = ut->optional;
1453 t->aalgos = ut->aalgos;
1454 t->ealgos = ut->ealgos;
1455 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001456 /* If all masks are ~0, then we allow all algorithms. */
1457 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001458 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460}
1461
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001462static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1463{
Steffen Klassert9a54c512017-12-08 08:07:25 +01001464 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001465 int i;
1466
1467 if (nr > XFRM_MAX_DEPTH)
1468 return -EINVAL;
1469
Steffen Klassert9a54c512017-12-08 08:07:25 +01001470 prev_family = family;
1471
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001472 for (i = 0; i < nr; i++) {
1473 /* We never validated the ut->family value, so many
1474 * applications simply leave it at zero. The check was
1475 * never made and ut->family was ignored because all
1476 * templates could be assumed to have the same family as
1477 * the policy itself. Now that we will have ipv4-in-ipv6
1478 * and ipv6-in-ipv4 tunnels, this is no longer true.
1479 */
1480 if (!ut[i].family)
1481 ut[i].family = family;
1482
Florian Westphala19fd852019-01-09 14:37:34 +01001483 switch (ut[i].mode) {
1484 case XFRM_MODE_TUNNEL:
1485 case XFRM_MODE_BEET:
1486 break;
1487 default:
1488 if (ut[i].family != prev_family)
1489 return -EINVAL;
1490 break;
1491 }
Sean Tranchettid83617a2018-09-07 15:50:31 -06001492 if (ut[i].mode >= XFRM_MODE_MAX)
1493 return -EINVAL;
1494
Steffen Klassert9a54c512017-12-08 08:07:25 +01001495 prev_family = ut[i].family;
1496
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001497 switch (ut[i].family) {
1498 case AF_INET:
1499 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001500#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001501 case AF_INET6:
1502 break;
1503#endif
1504 default:
1505 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001506 }
Cong Wang85552882017-11-27 11:15:16 -08001507
Cong Wang88d08312019-03-22 16:26:19 -07001508 if (!xfrm_id_proto_valid(ut[i].id.proto))
Cong Wang85552882017-11-27 11:15:16 -08001509 return -EINVAL;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001510 }
1511
1512 return 0;
1513}
1514
Thomas Graf5424f322007-08-22 14:01:33 -07001515static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Thomas Graf5424f322007-08-22 14:01:33 -07001517 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 if (!rt) {
1520 pol->xfrm_nr = 0;
1521 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001522 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1523 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001524 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001526 err = validate_tmpl(nr, utmpl, pol->family);
1527 if (err)
1528 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Thomas Graf5424f322007-08-22 14:01:33 -07001530 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532 return 0;
1533}
1534
Thomas Graf5424f322007-08-22 14:01:33 -07001535static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001536{
Thomas Graf5424f322007-08-22 14:01:33 -07001537 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001538 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001539 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001540 int err;
1541
1542 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001543 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001544 type = upt->type;
1545 }
1546
1547 err = verify_policy_type(type);
1548 if (err)
1549 return err;
1550
1551 *tp = type;
1552 return 0;
1553}
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1556{
1557 xp->priority = p->priority;
1558 xp->index = p->index;
1559 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1560 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1561 xp->action = p->action;
1562 xp->flags = p->flags;
1563 xp->family = p->sel.family;
1564 /* XXX xp->share = p->share; */
1565}
1566
1567static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1568{
Mathias Krause7b789832012-09-19 11:33:40 +00001569 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1571 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1572 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1573 p->priority = xp->priority;
1574 p->index = xp->index;
1575 p->sel.family = xp->family;
1576 p->dir = dir;
1577 p->action = xp->action;
1578 p->flags = xp->flags;
1579 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1580}
1581
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001582static 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 -07001583{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001584 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 int err;
1586
1587 if (!xp) {
1588 *errp = -ENOMEM;
1589 return NULL;
1590 }
1591
1592 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001593
Thomas Graf35a7aa02007-08-22 14:00:40 -07001594 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001595 if (err)
1596 goto error;
1597
Thomas Graf35a7aa02007-08-22 14:00:40 -07001598 if (!(err = copy_from_user_tmpl(xp, attrs)))
1599 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001600 if (err)
1601 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001603 xfrm_mark_get(attrs, &xp->mark);
1604
Steffen Klasserta80f5602018-06-12 14:07:07 +02001605 if (attrs[XFRMA_IF_ID])
1606 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001609 error:
1610 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001611 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001612 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001613 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Christoph Hellwig22e70052007-01-02 15:22:30 -08001616static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001617 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001619 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001620 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001622 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int err;
1624 int excl;
1625
1626 err = verify_newpolicy_info(p);
1627 if (err)
1628 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001629 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001630 if (err)
1631 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001633 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (!xp)
1635 return err;
1636
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001637 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001638 * Aha! this is anti-netlink really i.e more pfkey derived
1639 * in netlink excl is a flag and you wouldnt need
1640 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1642 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001643 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001646 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 kfree(xp);
1648 return err;
1649 }
1650
Herbert Xuf60f6b82005-06-18 22:44:37 -07001651 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001652 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001653 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001654 km_policy_notify(xp, p->dir, &c);
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 xfrm_pol_put(xp);
1657
1658 return 0;
1659}
1660
1661static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1662{
1663 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1664 int i;
1665
1666 if (xp->xfrm_nr == 0)
1667 return 0;
1668
1669 for (i = 0; i < xp->xfrm_nr; i++) {
1670 struct xfrm_user_tmpl *up = &vec[i];
1671 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1672
Mathias Krause1f868402012-09-19 11:33:41 +00001673 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001675 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1677 up->reqid = kp->reqid;
1678 up->mode = kp->mode;
1679 up->share = kp->share;
1680 up->optional = kp->optional;
1681 up->aalgos = kp->aalgos;
1682 up->ealgos = kp->ealgos;
1683 up->calgos = kp->calgos;
1684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Thomas Grafc0144be2007-08-22 13:55:43 -07001686 return nla_put(skb, XFRMA_TMPL,
1687 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001688}
1689
Serge Hallyn0d681622006-07-24 23:30:44 -07001690static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1691{
1692 if (x->security) {
1693 return copy_sec_ctx(x->security, skb);
1694 }
1695 return 0;
1696}
1697
1698static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1699{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001700 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001701 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001702 return 0;
1703}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001704static inline size_t userpolicy_type_attrsize(void)
1705{
1706#ifdef CONFIG_XFRM_SUB_POLICY
1707 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1708#else
1709 return 0;
1710#endif
1711}
Serge Hallyn0d681622006-07-24 23:30:44 -07001712
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001713#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001714static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001715{
Eric Dumazet2038a9e2018-06-18 21:35:07 -07001716 struct xfrm_userpolicy_type upt;
1717
1718 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1719 memset(&upt, 0, sizeof(upt));
1720 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001721
Thomas Grafc0144be2007-08-22 13:55:43 -07001722 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001723}
1724
1725#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001726static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001727{
1728 return 0;
1729}
1730#endif
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1733{
1734 struct xfrm_dump_info *sp = ptr;
1735 struct xfrm_userpolicy_info *p;
1736 struct sk_buff *in_skb = sp->in_skb;
1737 struct sk_buff *skb = sp->out_skb;
1738 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001739 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Eric W. Biederman15e47302012-09-07 20:12:54 +00001741 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001742 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1743 if (nlh == NULL)
1744 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Thomas Graf7b67c852007-08-22 13:53:52 -07001746 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001748 err = copy_to_user_tmpl(xp, skb);
1749 if (!err)
1750 err = copy_to_user_sec_ctx(xp, skb);
1751 if (!err)
1752 err = copy_to_user_policy_type(xp->type, skb);
1753 if (!err)
1754 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001755 if (!err)
1756 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001757 if (err) {
1758 nlmsg_cancel(skb, nlh);
1759 return err;
1760 }
Thomas Graf98250692007-08-22 12:47:26 -07001761 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Timo Teras4c563f72008-02-28 21:31:08 -08001765static int xfrm_dump_policy_done(struct netlink_callback *cb)
1766{
Herbert Xu543aabb2017-10-19 20:51:10 +08001767 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001768 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001769
Fan Du283bc9f2013-11-07 17:47:50 +08001770 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001771 return 0;
1772}
1773
Herbert Xu543aabb2017-10-19 20:51:10 +08001774static int xfrm_dump_policy_start(struct netlink_callback *cb)
1775{
1776 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1777
1778 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1779
1780 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1781 return 0;
1782}
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1785{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001786 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001787 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 struct xfrm_dump_info info;
1789
1790 info.in_skb = cb->skb;
1791 info.out_skb = skb;
1792 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1793 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001794
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001795 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 return skb->len;
1798}
1799
1800static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1801 struct xfrm_policy *xp,
1802 int dir, u32 seq)
1803{
1804 struct xfrm_dump_info info;
1805 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001806 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Thomas Graf7deb2262007-08-22 13:57:39 -07001808 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (!skb)
1810 return ERR_PTR(-ENOMEM);
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 info.in_skb = in_skb;
1813 info.out_skb = skb;
1814 info.nlmsg_seq = seq;
1815 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Mathias Krausec2546372012-09-14 09:58:32 +00001817 err = dump_one_policy(xp, dir, 0, &info);
1818 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001820 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
1822
1823 return skb;
1824}
1825
Christoph Hellwig22e70052007-01-02 15:22:30 -08001826static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001827 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001829 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct xfrm_policy *xp;
1831 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001832 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001834 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001836 struct xfrm_mark m;
1837 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001838 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Thomas Graf7b67c852007-08-22 13:53:52 -07001840 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1842
Thomas Graf35a7aa02007-08-22 14:00:40 -07001843 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001844 if (err)
1845 return err;
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 err = verify_policy_dir(p->dir);
1848 if (err)
1849 return err;
1850
Steffen Klasserta80f5602018-06-12 14:07:07 +02001851 if (attrs[XFRMA_IF_ID])
1852 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02001855 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001856 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001857 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001858 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001859
Thomas Graf35a7aa02007-08-22 14:00:40 -07001860 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001861 if (err)
1862 return err;
1863
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001864 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001865 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001866 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001867
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001868 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001869 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001870 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001871 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02001872 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001873 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001874 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (xp == NULL)
1877 return -ENOENT;
1878
1879 if (!delete) {
1880 struct sk_buff *resp_skb;
1881
1882 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1883 if (IS_ERR(resp_skb)) {
1884 err = PTR_ERR(resp_skb);
1885 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001886 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001887 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001889 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001890 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001891
1892 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001893 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001894
Herbert Xue7443892005-06-18 22:44:18 -07001895 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001896 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001897 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001898 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001899 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001902out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001903 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001904 if (delete && err == 0)
1905 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 return err;
1907}
1908
Christoph Hellwig22e70052007-01-02 15:22:30 -08001909static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001910 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001912 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001913 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001914 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001915 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Tetsuo Handa2e710292014-04-22 21:48:30 +09001917 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001918 if (err) {
1919 if (err == -ESRCH) /* empty table */
1920 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001921 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001922 }
Herbert Xubf088672005-06-18 22:44:00 -07001923 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001924 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001925 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001926 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001927 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001928 km_state_notify(NULL, &c);
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return 0;
1931}
1932
Steffen Klassertd8647b72011-03-08 00:10:27 +00001933static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001934{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001935 size_t replay_size = x->replay_esn ?
1936 xfrm_replay_state_esn_len(x->replay_esn) :
1937 sizeof(struct xfrm_replay_state);
1938
Thomas Graf7deb2262007-08-22 13:57:39 -07001939 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001940 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001941 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001942 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001943 + nla_total_size(4) /* XFRM_AE_RTHR */
1944 + nla_total_size(4); /* XFRM_AE_ETHR */
1945}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001946
David S. Miller214e0052011-02-24 00:02:38 -05001947static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001948{
1949 struct xfrm_aevent_id *id;
1950 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001951 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952
Eric W. Biederman15e47302012-09-07 20:12:54 +00001953 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001954 if (nlh == NULL)
1955 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001956
Thomas Graf7b67c852007-08-22 13:53:52 -07001957 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001958 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001959 id->sa_id.spi = x->id.spi;
1960 id->sa_id.family = x->props.family;
1961 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001962 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001963 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964 id->flags = c->data.aevent;
1965
David S. Millerd0fde792012-03-29 04:02:26 -04001966 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001967 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1968 xfrm_replay_state_esn_len(x->replay_esn),
1969 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001970 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001971 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1972 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001973 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001974 if (err)
1975 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001976 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1977 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001978 if (err)
1979 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001980
David S. Miller1d1e34d2012-06-27 21:57:03 -07001981 if (id->flags & XFRM_AE_RTHR) {
1982 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1983 if (err)
1984 goto out_cancel;
1985 }
1986 if (id->flags & XFRM_AE_ETHR) {
1987 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1988 x->replay_maxage * 10 / HZ);
1989 if (err)
1990 goto out_cancel;
1991 }
1992 err = xfrm_mark_put(skb, &x->mark);
1993 if (err)
1994 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001995
Steffen Klasserta80f5602018-06-12 14:07:07 +02001996 err = xfrm_if_id_put(skb, x->if_id);
1997 if (err)
1998 goto out_cancel;
1999
Johannes Berg053c0952015-01-16 22:09:00 +01002000 nlmsg_end(skb, nlh);
2001 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002002
David S. Miller1d1e34d2012-06-27 21:57:03 -07002003out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002004 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002005 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002006}
2007
Christoph Hellwig22e70052007-01-02 15:22:30 -08002008static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002009 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002010{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002011 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002012 struct xfrm_state *x;
2013 struct sk_buff *r_skb;
2014 int err;
2015 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002016 u32 mark;
2017 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002018 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002019 struct xfrm_usersa_id *id = &p->sa_id;
2020
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002021 mark = xfrm_mark_get(attrs, &m);
2022
2023 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002024 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002025 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002026
2027 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2028 if (r_skb == NULL) {
2029 xfrm_state_put(x);
2030 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002031 }
2032
2033 /*
2034 * XXX: is this lock really needed - none of the other
2035 * gets lock (the concern is things getting updated
2036 * while we are still reading) - jhs
2037 */
2038 spin_lock_bh(&x->lock);
2039 c.data.aevent = p->flags;
2040 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002041 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002042
2043 if (build_aevent(r_skb, x, &c) < 0)
2044 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00002045 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002046 spin_unlock_bh(&x->lock);
2047 xfrm_state_put(x);
2048 return err;
2049}
2050
Christoph Hellwig22e70052007-01-02 15:22:30 -08002051static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002052 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002053{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002054 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002055 struct xfrm_state *x;
2056 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002057 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002058 u32 mark = 0;
2059 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002060 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002061 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002062 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002063 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002064 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2065 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002066
Michael Rossberg4e077232015-09-29 11:25:08 +02002067 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002068 return err;
2069
2070 /* pedantic mode - thou shalt sayeth replaceth */
2071 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2072 return err;
2073
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002074 mark = xfrm_mark_get(attrs, &m);
2075
2076 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 -08002077 if (x == NULL)
2078 return -ESRCH;
2079
2080 if (x->km.state != XFRM_STATE_VALID)
2081 goto out;
2082
Steffen Klassert4479ff72013-09-09 09:39:01 +02002083 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002084 if (err)
2085 goto out;
2086
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002087 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002088 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002089 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002090
2091 c.event = nlh->nlmsg_type;
2092 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002093 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002094 c.data.aevent = XFRM_AE_CU;
2095 km_state_notify(x, &c);
2096 err = 0;
2097out:
2098 xfrm_state_put(x);
2099 return err;
2100}
2101
Christoph Hellwig22e70052007-01-02 15:22:30 -08002102static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002103 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002105 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002106 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002107 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002108 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002109
Thomas Graf35a7aa02007-08-22 14:00:40 -07002110 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002111 if (err)
2112 return err;
2113
Tetsuo Handa2e710292014-04-22 21:48:30 +09002114 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002115 if (err) {
2116 if (err == -ESRCH) /* empty table */
2117 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002118 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002119 }
2120
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002121 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002122 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002123 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002124 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002125 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002126 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 0;
2128}
2129
Christoph Hellwig22e70052007-01-02 15:22:30 -08002130static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002131 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002132{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002133 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002134 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002135 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002136 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002137 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002138 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002139 struct xfrm_mark m;
2140 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002141 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002142
Thomas Graf35a7aa02007-08-22 14:00:40 -07002143 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002144 if (err)
2145 return err;
2146
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002147 err = verify_policy_dir(p->dir);
2148 if (err)
2149 return err;
2150
Steffen Klasserta80f5602018-06-12 14:07:07 +02002151 if (attrs[XFRMA_IF_ID])
2152 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2153
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002154 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02002155 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002156 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002157 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002158 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002159
Thomas Graf35a7aa02007-08-22 14:00:40 -07002160 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002161 if (err)
2162 return err;
2163
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002164 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002165 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002166 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002167
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002168 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002169 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002170 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002171 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002172 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002173 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002174 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002175 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002177 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002178
Timo Teräsea2dea92010-03-31 00:17:05 +00002179 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002180 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002181
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182 err = 0;
2183 if (up->hard) {
2184 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002185 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002186 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002187 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002188
2189out:
2190 xfrm_pol_put(xp);
2191 return err;
2192}
2193
Christoph Hellwig22e70052007-01-02 15:22:30 -08002194static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002195 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002196{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002197 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002198 struct xfrm_state *x;
2199 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002200 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002201 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002202 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002203 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002204
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002205 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 -08002206
David S. Miller3a765aa2007-02-26 14:52:21 -08002207 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002208 if (x == NULL)
2209 return err;
2210
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002211 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002212 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002213 if (x->km.state != XFRM_STATE_VALID)
2214 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002215 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002216
Joy Latten161a09e2006-11-27 13:11:54 -06002217 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002218 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002219 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002220 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002221 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002222out:
2223 spin_unlock_bh(&x->lock);
2224 xfrm_state_put(x);
2225 return err;
2226}
2227
Christoph Hellwig22e70052007-01-02 15:22:30 -08002228static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002229 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002230{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002231 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002232 struct xfrm_policy *xp;
2233 struct xfrm_user_tmpl *ut;
2234 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002235 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002236 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002237
Thomas Graf7b67c852007-08-22 13:53:52 -07002238 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002239 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002240 int err = -ENOMEM;
2241
2242 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002243 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002244
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002245 xfrm_mark_get(attrs, &mark);
2246
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002247 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002248 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002249 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002250
2251 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002252 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002253 if (!xp)
2254 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002255
2256 memcpy(&x->id, &ua->id, sizeof(ua->id));
2257 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2258 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002259 xp->mark.m = x->mark.m = mark.m;
2260 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002261 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002262 /* extract the templates and for each call km_key */
2263 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2264 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2265 memcpy(&x->id, &t->id, sizeof(x->id));
2266 x->props.mode = t->mode;
2267 x->props.reqid = t->reqid;
2268 x->props.family = ut->family;
2269 t->aalgos = ua->aalgos;
2270 t->ealgos = ua->ealgos;
2271 t->calgos = ua->calgos;
2272 err = km_query(x, t, xp);
2273
2274 }
2275
2276 kfree(x);
2277 kfree(xp);
2278
2279 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002280
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002281free_state:
2282 kfree(x);
2283nomem:
2284 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002285}
2286
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002288static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002289 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002290 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002291{
Thomas Graf5424f322007-08-22 14:01:33 -07002292 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002293 struct xfrm_user_migrate *um;
2294 int i, num_migrate;
2295
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002296 if (k != NULL) {
2297 struct xfrm_user_kmaddress *uk;
2298
2299 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2300 memcpy(&k->local, &uk->local, sizeof(k->local));
2301 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2302 k->family = uk->family;
2303 k->reserved = uk->reserved;
2304 }
2305
Thomas Graf5424f322007-08-22 14:01:33 -07002306 um = nla_data(rt);
2307 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002308
2309 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2310 return -EINVAL;
2311
2312 for (i = 0; i < num_migrate; i++, um++, ma++) {
2313 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2314 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2315 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2316 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2317
2318 ma->proto = um->proto;
2319 ma->mode = um->mode;
2320 ma->reqid = um->reqid;
2321
2322 ma->old_family = um->old_family;
2323 ma->new_family = um->new_family;
2324 }
2325
2326 *num = i;
2327 return 0;
2328}
2329
2330static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002331 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002332{
Thomas Graf7b67c852007-08-22 13:53:52 -07002333 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002334 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002335 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002336 u8 type;
2337 int err;
2338 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002339 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002340
Thomas Graf35a7aa02007-08-22 14:00:40 -07002341 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002342 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002344 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2345
Thomas Graf5424f322007-08-22 14:01:33 -07002346 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002347 if (err)
2348 return err;
2349
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002350 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002351 if (err)
2352 return err;
2353
2354 if (!n)
2355 return 0;
2356
Fan Du8d549c42013-11-07 17:47:49 +08002357 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002358
2359 return 0;
2360}
2361#else
2362static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002363 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364{
2365 return -ENOPROTOOPT;
2366}
2367#endif
2368
2369#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002370static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002371{
2372 struct xfrm_user_migrate um;
2373
2374 memset(&um, 0, sizeof(um));
2375 um.proto = m->proto;
2376 um.mode = m->mode;
2377 um.reqid = m->reqid;
2378 um.old_family = m->old_family;
2379 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2380 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2381 um.new_family = m->new_family;
2382 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2383 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2384
Thomas Grafc0144be2007-08-22 13:55:43 -07002385 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002386}
2387
David S. Miller183cad12011-02-24 00:28:01 -05002388static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002389{
2390 struct xfrm_user_kmaddress uk;
2391
2392 memset(&uk, 0, sizeof(uk));
2393 uk.family = k->family;
2394 uk.reserved = k->reserved;
2395 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002396 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002397
2398 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2399}
2400
2401static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002402{
2403 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002404 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2405 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2406 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002407}
2408
David S. Miller183cad12011-02-24 00:28:01 -05002409static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2410 int num_migrate, const struct xfrm_kmaddress *k,
2411 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002412{
David S. Miller183cad12011-02-24 00:28:01 -05002413 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002414 struct xfrm_userpolicy_id *pol_id;
2415 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002416 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002417
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002418 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2419 if (nlh == NULL)
2420 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002421
Thomas Graf7b67c852007-08-22 13:53:52 -07002422 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002423 /* copy data from selector, dir, and type to the pol_id */
2424 memset(pol_id, 0, sizeof(*pol_id));
2425 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2426 pol_id->dir = dir;
2427
David S. Miller1d1e34d2012-06-27 21:57:03 -07002428 if (k != NULL) {
2429 err = copy_to_user_kmaddress(k, skb);
2430 if (err)
2431 goto out_cancel;
2432 }
2433 err = copy_to_user_policy_type(type, skb);
2434 if (err)
2435 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002436 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002437 err = copy_to_user_migrate(mp, skb);
2438 if (err)
2439 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002440 }
2441
Johannes Berg053c0952015-01-16 22:09:00 +01002442 nlmsg_end(skb, nlh);
2443 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002444
2445out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002446 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002447 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002448}
2449
David S. Miller183cad12011-02-24 00:28:01 -05002450static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2451 const struct xfrm_migrate *m, int num_migrate,
2452 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002453{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002454 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002455 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002456
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002457 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002458 if (skb == NULL)
2459 return -ENOMEM;
2460
2461 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002462 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002463 BUG();
2464
Michal Kubecek21ee5432014-06-03 10:26:06 +02002465 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002466}
2467#else
David S. Miller183cad12011-02-24 00:28:01 -05002468static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2469 const struct xfrm_migrate *m, int num_migrate,
2470 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002471{
2472 return -ENOPROTOOPT;
2473}
2474#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002475
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002476#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002477
2478static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002479 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002480 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2481 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2482 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2483 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2484 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2485 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002486 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002487 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002488 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002489 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002490 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002491 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002492 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002493 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2494 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002495 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002496 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002497 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002498 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002499 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500};
2501
Thomas Graf492b5582005-05-03 14:26:40 -07002502#undef XMSGSIZE
2503
Thomas Grafcf5cb792007-08-22 13:59:04 -07002504static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002505 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2506 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2507 [XFRMA_LASTUSED] = { .type = NLA_U64},
2508 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002509 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002510 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2511 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2512 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2513 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2514 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2515 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2516 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2517 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2518 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2519 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2520 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2521 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2522 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2523 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002524 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002525 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002526 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002527 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002528 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002529 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002530 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassert78f10c52018-06-12 12:44:26 +02002531 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2532 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klasserta80f5602018-06-12 14:07:07 +02002533 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002534};
2535
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002536static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2537 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2538 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2539};
2540
Mathias Krause05600a72013-02-24 14:10:27 +01002541static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002542 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002543 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002545 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002546 const struct nla_policy *nla_pol;
2547 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002548} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2549 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2550 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2551 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002552 .dump = xfrm_dump_sa,
2553 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002554 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2555 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2556 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002557 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002558 .dump = xfrm_dump_policy,
2559 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002560 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002561 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002562 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002563 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2564 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002565 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002566 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2567 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002568 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2569 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002570 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002571 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002572 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2573 .nla_pol = xfrma_spd_policy,
2574 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002575 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576};
2577
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002578static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002580 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002581 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002582 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002583 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002587 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
2589 type -= XFRM_MSG_BASE;
2590 link = &xfrm_dispatch[type];
2591
2592 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002593 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002594 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Thomas Graf492b5582005-05-03 14:26:40 -07002596 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2597 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002598 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002600 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002602 {
2603 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002604 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002605 .dump = link->dump,
2606 .done = link->done,
2607 };
2608 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002612 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2613 link->nla_max ? : XFRMA_MAX,
2614 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002615 if (err < 0)
2616 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002619 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Thomas Graf5424f322007-08-22 14:01:33 -07002621 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002624static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
Fan Du283bc9f2013-11-07 17:47:50 +08002626 struct net *net = sock_net(skb->sk);
2627
2628 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002629 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002630 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
Thomas Graf7deb2262007-08-22 13:57:39 -07002633static inline size_t xfrm_expire_msgsize(void)
2634{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002635 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2636 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002637}
2638
David S. Miller214e0052011-02-24 00:02:38 -05002639static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
2641 struct xfrm_user_expire *ue;
2642 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002643 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Eric W. Biederman15e47302012-09-07 20:12:54 +00002645 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002646 if (nlh == NULL)
2647 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Thomas Graf7b67c852007-08-22 13:53:52 -07002649 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002651 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
David S. Miller1d1e34d2012-06-27 21:57:03 -07002653 err = xfrm_mark_put(skb, &x->mark);
2654 if (err)
2655 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002656
Steffen Klasserta80f5602018-06-12 14:07:07 +02002657 err = xfrm_if_id_put(skb, x->if_id);
2658 if (err)
2659 return err;
2660
Johannes Berg053c0952015-01-16 22:09:00 +01002661 nlmsg_end(skb, nlh);
2662 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
David S. Miller214e0052011-02-24 00:02:38 -05002665static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002667 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 struct sk_buff *skb;
2669
Thomas Graf7deb2262007-08-22 13:57:39 -07002670 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (skb == NULL)
2672 return -ENOMEM;
2673
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002674 if (build_expire(skb, x, c) < 0) {
2675 kfree_skb(skb);
2676 return -EMSGSIZE;
2677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Michal Kubecek21ee5432014-06-03 10:26:06 +02002679 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680}
2681
David S. Miller214e0052011-02-24 00:02:38 -05002682static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002683{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002684 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002685 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002686
Steffen Klassertd8647b72011-03-08 00:10:27 +00002687 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002688 if (skb == NULL)
2689 return -ENOMEM;
2690
2691 if (build_aevent(skb, x, c) < 0)
2692 BUG();
2693
Michal Kubecek21ee5432014-06-03 10:26:06 +02002694 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002695}
2696
David S. Miller214e0052011-02-24 00:02:38 -05002697static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002698{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002699 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002700 struct xfrm_usersa_flush *p;
2701 struct nlmsghdr *nlh;
2702 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002703 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002704
Thomas Graf7deb2262007-08-22 13:57:39 -07002705 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002706 if (skb == NULL)
2707 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002708
Eric W. Biederman15e47302012-09-07 20:12:54 +00002709 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002710 if (nlh == NULL) {
2711 kfree_skb(skb);
2712 return -EMSGSIZE;
2713 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002714
Thomas Graf7b67c852007-08-22 13:53:52 -07002715 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002716 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002717
Thomas Graf98250692007-08-22 12:47:26 -07002718 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002719
Michal Kubecek21ee5432014-06-03 10:26:06 +02002720 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002721}
2722
Thomas Graf7deb2262007-08-22 13:57:39 -07002723static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002724{
Thomas Graf7deb2262007-08-22 13:57:39 -07002725 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002726 if (x->aead)
2727 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002728 if (x->aalg) {
2729 l += nla_total_size(sizeof(struct xfrm_algo) +
2730 (x->aalg->alg_key_len + 7) / 8);
2731 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2732 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002733 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002734 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002735 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002736 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002737 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002738 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002739 if (x->tfcpad)
2740 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002741 if (x->replay_esn)
2742 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002743 else
2744 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002745 if (x->security)
2746 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2747 x->security->ctx_len);
2748 if (x->coaddr)
2749 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002750 if (x->props.extra_flags)
2751 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassert78f10c52018-06-12 12:44:26 +02002752 if (x->props.smark.v | x->props.smark.m) {
2753 l += nla_total_size(sizeof(x->props.smark.v));
2754 l += nla_total_size(sizeof(x->props.smark.m));
2755 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002756 if (x->if_id)
2757 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002758
Herbert Xud26f3982007-11-13 21:47:08 -08002759 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002760 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002761
2762 return l;
2763}
2764
David S. Miller214e0052011-02-24 00:02:38 -05002765static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002767 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002768 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002769 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002770 struct nlmsghdr *nlh;
2771 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002772 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002773 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002774
2775 headlen = sizeof(*p);
2776 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002777 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002778 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002779 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002780 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002781 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002782
Thomas Graf7deb2262007-08-22 13:57:39 -07002783 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002784 if (skb == NULL)
2785 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002786
Eric W. Biederman15e47302012-09-07 20:12:54 +00002787 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002788 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002789 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002790 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791
Thomas Graf7b67c852007-08-22 13:53:52 -07002792 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002793 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002794 struct nlattr *attr;
2795
Thomas Graf7b67c852007-08-22 13:53:52 -07002796 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002797 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2798 id->spi = x->id.spi;
2799 id->family = x->props.family;
2800 id->proto = x->id.proto;
2801
Thomas Grafc0144be2007-08-22 13:55:43 -07002802 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002803 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002804 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002805 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002806
2807 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002808 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002809 err = copy_to_user_state_extra(x, p, skb);
2810 if (err)
2811 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002812
Thomas Graf98250692007-08-22 12:47:26 -07002813 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002814
Michal Kubecek21ee5432014-06-03 10:26:06 +02002815 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002816
David S. Miller1d1e34d2012-06-27 21:57:03 -07002817out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002818 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002819 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002820}
2821
David S. Miller214e0052011-02-24 00:02:38 -05002822static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002823{
2824
2825 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002826 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002828 case XFRM_MSG_NEWAE:
2829 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002830 case XFRM_MSG_DELSA:
2831 case XFRM_MSG_UPDSA:
2832 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002833 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002834 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002835 return xfrm_notify_sa_flush(c);
2836 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002837 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2838 c->event);
2839 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002840 }
2841
2842 return 0;
2843
2844}
2845
Thomas Graf7deb2262007-08-22 13:57:39 -07002846static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2847 struct xfrm_policy *xp)
2848{
2849 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2850 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002851 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002852 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2853 + userpolicy_type_attrsize();
2854}
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002857 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002859 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 struct xfrm_user_acquire *ua;
2861 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002862 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002864 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2865 if (nlh == NULL)
2866 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Thomas Graf7b67c852007-08-22 13:53:52 -07002868 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 memcpy(&ua->id, &x->id, sizeof(ua->id));
2870 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2871 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002872 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 ua->aalgos = xt->aalgos;
2874 ua->ealgos = xt->ealgos;
2875 ua->calgos = xt->calgos;
2876 ua->seq = x->km.seq = seq;
2877
David S. Miller1d1e34d2012-06-27 21:57:03 -07002878 err = copy_to_user_tmpl(xp, skb);
2879 if (!err)
2880 err = copy_to_user_state_sec_ctx(x, skb);
2881 if (!err)
2882 err = copy_to_user_policy_type(xp->type, skb);
2883 if (!err)
2884 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002885 if (!err)
2886 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002887 if (err) {
2888 nlmsg_cancel(skb, nlh);
2889 return err;
2890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Johannes Berg053c0952015-01-16 22:09:00 +01002892 nlmsg_end(skb, nlh);
2893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894}
2895
2896static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002897 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002899 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Thomas Graf7deb2262007-08-22 13:57:39 -07002902 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 if (skb == NULL)
2904 return -ENOMEM;
2905
Fan Du65e07362012-08-15 10:13:47 +08002906 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 BUG();
2908
Michal Kubecek21ee5432014-06-03 10:26:06 +02002909 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910}
2911
2912/* User gives us xfrm_user_policy_info followed by an array of 0
2913 * or more templates.
2914 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002915static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 u8 *data, int len, int *dir)
2917{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002918 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2920 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2921 struct xfrm_policy *xp;
2922 int nr;
2923
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002924 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 case AF_INET:
2926 if (opt != IP_XFRM_POLICY) {
2927 *dir = -EOPNOTSUPP;
2928 return NULL;
2929 }
2930 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002931#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 case AF_INET6:
2933 if (opt != IPV6_XFRM_POLICY) {
2934 *dir = -EOPNOTSUPP;
2935 return NULL;
2936 }
2937 break;
2938#endif
2939 default:
2940 *dir = -EINVAL;
2941 return NULL;
2942 }
2943
2944 *dir = -EINVAL;
2945
2946 if (len < sizeof(*p) ||
2947 verify_newpolicy_info(p))
2948 return NULL;
2949
2950 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002951 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 return NULL;
2953
Herbert Xua4f1bac2005-07-26 15:43:17 -07002954 if (p->dir > XFRM_POLICY_OUT)
2955 return NULL;
2956
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002957 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (xp == NULL) {
2959 *dir = -ENOBUFS;
2960 return NULL;
2961 }
2962
2963 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002964 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 copy_templates(xp, ut, nr);
2966
2967 *dir = p->dir;
2968
2969 return xp;
2970}
2971
Thomas Graf7deb2262007-08-22 13:57:39 -07002972static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2973{
2974 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2975 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2976 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002977 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002978 + userpolicy_type_attrsize();
2979}
2980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002982 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983{
2984 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002985 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002986 struct nlmsghdr *nlh;
2987 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Eric W. Biederman15e47302012-09-07 20:12:54 +00002989 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002990 if (nlh == NULL)
2991 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Thomas Graf7b67c852007-08-22 13:53:52 -07002993 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002995 err = copy_to_user_tmpl(xp, skb);
2996 if (!err)
2997 err = copy_to_user_sec_ctx(xp, skb);
2998 if (!err)
2999 err = copy_to_user_policy_type(xp->type, skb);
3000 if (!err)
3001 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02003002 if (!err)
3003 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003004 if (err) {
3005 nlmsg_cancel(skb, nlh);
3006 return err;
3007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 upe->hard = !!hard;
3009
Johannes Berg053c0952015-01-16 22:09:00 +01003010 nlmsg_end(skb, nlh);
3011 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012}
3013
David S. Miller214e0052011-02-24 00:02:38 -05003014static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003016 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
Thomas Graf7deb2262007-08-22 13:57:39 -07003019 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 if (skb == NULL)
3021 return -ENOMEM;
3022
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003023 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 BUG();
3025
Michal Kubecek21ee5432014-06-03 10:26:06 +02003026 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027}
3028
David S. Miller214e0052011-02-24 00:02:38 -05003029static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003030{
David S. Miller1d1e34d2012-06-27 21:57:03 -07003031 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003032 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003033 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003034 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003035 struct nlmsghdr *nlh;
3036 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003037 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003038
3039 headlen = sizeof(*p);
3040 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003041 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003042 headlen = sizeof(*id);
3043 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003044 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003045 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003046 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003047
Thomas Graf7deb2262007-08-22 13:57:39 -07003048 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003049 if (skb == NULL)
3050 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003051
Eric W. Biederman15e47302012-09-07 20:12:54 +00003052 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003053 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003054 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003055 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003056
Thomas Graf7b67c852007-08-22 13:53:52 -07003057 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003058 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003059 struct nlattr *attr;
3060
Thomas Graf7b67c852007-08-22 13:53:52 -07003061 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003062 memset(id, 0, sizeof(*id));
3063 id->dir = dir;
3064 if (c->data.byid)
3065 id->index = xp->index;
3066 else
3067 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3068
Thomas Grafc0144be2007-08-22 13:55:43 -07003069 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003070 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003071 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003072 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003073
3074 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003075 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003076
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003077 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003078 err = copy_to_user_tmpl(xp, skb);
3079 if (!err)
3080 err = copy_to_user_policy_type(xp->type, skb);
3081 if (!err)
3082 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02003083 if (!err)
3084 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003085 if (err)
3086 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003087
Thomas Graf98250692007-08-22 12:47:26 -07003088 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003089
Michal Kubecek21ee5432014-06-03 10:26:06 +02003090 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003091
David S. Miller1d1e34d2012-06-27 21:57:03 -07003092out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003093 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003094 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003095}
3096
David S. Miller214e0052011-02-24 00:02:38 -05003097static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003098{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003099 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003100 struct nlmsghdr *nlh;
3101 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003102 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003103
Thomas Graf7deb2262007-08-22 13:57:39 -07003104 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003105 if (skb == NULL)
3106 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003107
Eric W. Biederman15e47302012-09-07 20:12:54 +00003108 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003109 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003110 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003111 goto out_free_skb;
3112 err = copy_to_user_policy_type(c->data.type, skb);
3113 if (err)
3114 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003115
Thomas Graf98250692007-08-22 12:47:26 -07003116 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003117
Michal Kubecek21ee5432014-06-03 10:26:06 +02003118 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003119
David S. Miller1d1e34d2012-06-27 21:57:03 -07003120out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003121 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003122 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003123}
3124
David S. Miller214e0052011-02-24 00:02:38 -05003125static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003126{
3127
3128 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003129 case XFRM_MSG_NEWPOLICY:
3130 case XFRM_MSG_UPDPOLICY:
3131 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003132 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003133 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003134 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003135 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003136 return xfrm_exp_policy_notify(xp, dir, c);
3137 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003138 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3139 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003140 }
3141
3142 return 0;
3143
3144}
3145
Thomas Graf7deb2262007-08-22 13:57:39 -07003146static inline size_t xfrm_report_msgsize(void)
3147{
3148 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3149}
3150
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003151static int build_report(struct sk_buff *skb, u8 proto,
3152 struct xfrm_selector *sel, xfrm_address_t *addr)
3153{
3154 struct xfrm_user_report *ur;
3155 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003156
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003157 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3158 if (nlh == NULL)
3159 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003160
Thomas Graf7b67c852007-08-22 13:53:52 -07003161 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003162 ur->proto = proto;
3163 memcpy(&ur->sel, sel, sizeof(ur->sel));
3164
David S. Miller1d1e34d2012-06-27 21:57:03 -07003165 if (addr) {
3166 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3167 if (err) {
3168 nlmsg_cancel(skb, nlh);
3169 return err;
3170 }
3171 }
Johannes Berg053c0952015-01-16 22:09:00 +01003172 nlmsg_end(skb, nlh);
3173 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003174}
3175
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003176static int xfrm_send_report(struct net *net, u8 proto,
3177 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003178{
3179 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003180
Thomas Graf7deb2262007-08-22 13:57:39 -07003181 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003182 if (skb == NULL)
3183 return -ENOMEM;
3184
3185 if (build_report(skb, proto, sel, addr) < 0)
3186 BUG();
3187
Michal Kubecek21ee5432014-06-03 10:26:06 +02003188 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003189}
3190
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003191static inline size_t xfrm_mapping_msgsize(void)
3192{
3193 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3194}
3195
3196static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3197 xfrm_address_t *new_saddr, __be16 new_sport)
3198{
3199 struct xfrm_user_mapping *um;
3200 struct nlmsghdr *nlh;
3201
3202 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3203 if (nlh == NULL)
3204 return -EMSGSIZE;
3205
3206 um = nlmsg_data(nlh);
3207
3208 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3209 um->id.spi = x->id.spi;
3210 um->id.family = x->props.family;
3211 um->id.proto = x->id.proto;
3212 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3213 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3214 um->new_sport = new_sport;
3215 um->old_sport = x->encap->encap_sport;
3216 um->reqid = x->props.reqid;
3217
Johannes Berg053c0952015-01-16 22:09:00 +01003218 nlmsg_end(skb, nlh);
3219 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003220}
3221
3222static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3223 __be16 sport)
3224{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003225 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003226 struct sk_buff *skb;
3227
3228 if (x->id.proto != IPPROTO_ESP)
3229 return -EINVAL;
3230
3231 if (!x->encap)
3232 return -EINVAL;
3233
3234 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3235 if (skb == NULL)
3236 return -ENOMEM;
3237
3238 if (build_mapping(skb, x, ipaddr, sport) < 0)
3239 BUG();
3240
Michal Kubecek21ee5432014-06-03 10:26:06 +02003241 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003242}
3243
Horia Geanta0f245582014-02-12 16:20:06 +02003244static bool xfrm_is_alive(const struct km_event *c)
3245{
3246 return (bool)xfrm_acquire_is_on(c->net);
3247}
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249static struct xfrm_mgr netlink_mgr = {
3250 .id = "netlink",
3251 .notify = xfrm_send_state_notify,
3252 .acquire = xfrm_send_acquire,
3253 .compile_policy = xfrm_compile_policy,
3254 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003255 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003256 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003257 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003258 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259};
3260
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003261static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262{
Patrick McHardybe336902006-03-20 22:40:54 -08003263 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003264 struct netlink_kernel_cfg cfg = {
3265 .groups = XFRMNLGRP_MAX,
3266 .input = xfrm_netlink_rcv,
3267 };
Patrick McHardybe336902006-03-20 22:40:54 -08003268
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003269 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003270 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003272 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003273 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 return 0;
3275}
3276
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003277static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003278{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003279 struct net *net;
3280 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003281 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003282 synchronize_net();
3283 list_for_each_entry(net, net_exit_list, exit_list)
3284 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003285}
3286
3287static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003288 .init = xfrm_user_net_init,
3289 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003290};
3291
3292static int __init xfrm_user_init(void)
3293{
3294 int rv;
3295
3296 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3297
3298 rv = register_pernet_subsys(&xfrm_user_net_ops);
3299 if (rv < 0)
3300 return rv;
3301 rv = xfrm_register_km(&netlink_mgr);
3302 if (rv < 0)
3303 unregister_pernet_subsys(&xfrm_user_net_ops);
3304 return rv;
3305}
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307static void __exit xfrm_user_exit(void)
3308{
3309 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003310 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311}
3312
3313module_init(xfrm_user_init);
3314module_exit(xfrm_user_exit);
3315MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003316MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003317