blob: af4f48c212bf2e94990e0806954b630fe19b44fe [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]);
624
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
Steffen Klassert2a5cc532017-08-31 10:37:00 +0200934 if (x->security)
935 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700936out:
937 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700938}
939
940static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
941{
942 struct xfrm_dump_info *sp = ptr;
943 struct sk_buff *in_skb = sp->in_skb;
944 struct sk_buff *skb = sp->out_skb;
945 struct xfrm_usersa_info *p;
946 struct nlmsghdr *nlh;
947 int err;
948
Eric W. Biederman15e47302012-09-07 20:12:54 +0000949 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700950 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
951 if (nlh == NULL)
952 return -EMSGSIZE;
953
954 p = nlmsg_data(nlh);
955
956 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700957 if (err) {
958 nlmsg_cancel(skb, nlh);
959 return err;
960 }
Thomas Graf98250692007-08-22 12:47:26 -0700961 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Timo Teras4c563f72008-02-28 21:31:08 -0800965static int xfrm_dump_sa_done(struct netlink_callback *cb)
966{
967 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800968 struct sock *sk = cb->skb->sk;
969 struct net *net = sock_net(sk);
970
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200971 if (cb->args[0])
972 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800973 return 0;
974}
975
Nicolas Dichteld3623092014-02-14 15:30:36 +0100976static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
978{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800979 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800980 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct xfrm_dump_info info;
982
Timo Teras4c563f72008-02-28 21:31:08 -0800983 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
984 sizeof(cb->args) - sizeof(cb->args[0]));
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 info.in_skb = cb->skb;
987 info.out_skb = skb;
988 info.nlmsg_seq = cb->nlh->nlmsg_seq;
989 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800990
991 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100992 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100993 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100994 u8 proto = 0;
995 int err;
996
Nicolas Dichteld3623092014-02-14 15:30:36 +0100997 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
998 xfrma_policy);
999 if (err < 0)
1000 return err;
1001
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001002 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001003 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1004 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001005 if (filter == NULL)
1006 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001007 }
1008
1009 if (attrs[XFRMA_PROTO])
1010 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1011
1012 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001013 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001014 }
1015
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001016 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 return skb->len;
1019}
1020
1021static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1022 struct xfrm_state *x, u32 seq)
1023{
1024 struct xfrm_dump_info info;
1025 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001026 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Thomas Graf7deb2262007-08-22 13:57:39 -07001028 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (!skb)
1030 return ERR_PTR(-ENOMEM);
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 info.in_skb = in_skb;
1033 info.out_skb = skb;
1034 info.nlmsg_seq = seq;
1035 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Mathias Krause864745d2012-09-13 11:41:26 +00001037 err = dump_one_state(x, 0, &info);
1038 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001040 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042
1043 return skb;
1044}
1045
Michal Kubecek21ee5432014-06-03 10:26:06 +02001046/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1047 * Must be called with RCU read lock.
1048 */
1049static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1050 u32 pid, unsigned int group)
1051{
1052 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1053
Florian Westphal301a6da2018-06-25 14:00:07 +02001054 if (!nlsk) {
1055 kfree_skb(skb);
1056 return -EPIPE;
1057 }
1058
1059 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001060}
1061
Thomas Graf7deb2262007-08-22 13:57:39 -07001062static inline size_t xfrm_spdinfo_msgsize(void)
1063{
1064 return NLMSG_ALIGN(4)
1065 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001066 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1067 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1068 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001069}
1070
Alexey Dobriyane0710412010-01-23 13:37:10 +00001071static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001072 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001073{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001074 struct xfrmk_spdinfo si;
1075 struct xfrmu_spdinfo spc;
1076 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001077 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001078 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001079 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001080 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001081 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001082
Eric W. Biederman15e47302012-09-07 20:12:54 +00001083 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001084 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001085 return -EMSGSIZE;
1086
1087 f = nlmsg_data(nlh);
1088 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001089 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001090 spc.incnt = si.incnt;
1091 spc.outcnt = si.outcnt;
1092 spc.fwdcnt = si.fwdcnt;
1093 spc.inscnt = si.inscnt;
1094 spc.outscnt = si.outscnt;
1095 spc.fwdscnt = si.fwdscnt;
1096 sph.spdhcnt = si.spdhcnt;
1097 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001098
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001099 do {
1100 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1101
1102 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1103 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1104 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1105 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1106 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1107
David S. Miller1d1e34d2012-06-27 21:57:03 -07001108 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1109 if (!err)
1110 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001111 if (!err)
1112 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1113 if (!err)
1114 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001115 if (err) {
1116 nlmsg_cancel(skb, nlh);
1117 return err;
1118 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001119
Johannes Berg053c0952015-01-16 22:09:00 +01001120 nlmsg_end(skb, nlh);
1121 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001122}
1123
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001124static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1125 struct nlattr **attrs)
1126{
1127 struct net *net = sock_net(skb->sk);
1128 struct xfrmu_spdhthresh *thresh4 = NULL;
1129 struct xfrmu_spdhthresh *thresh6 = NULL;
1130
1131 /* selector prefixlen thresholds to hash policies */
1132 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1133 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1134
1135 if (nla_len(rta) < sizeof(*thresh4))
1136 return -EINVAL;
1137 thresh4 = nla_data(rta);
1138 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1139 return -EINVAL;
1140 }
1141 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1142 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1143
1144 if (nla_len(rta) < sizeof(*thresh6))
1145 return -EINVAL;
1146 thresh6 = nla_data(rta);
1147 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1148 return -EINVAL;
1149 }
1150
1151 if (thresh4 || thresh6) {
1152 write_seqlock(&net->xfrm.policy_hthresh.lock);
1153 if (thresh4) {
1154 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1155 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1156 }
1157 if (thresh6) {
1158 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1159 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1160 }
1161 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1162
1163 xfrm_policy_hash_rebuild(net);
1164 }
1165
1166 return 0;
1167}
1168
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001169static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001170 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001171{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001172 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001173 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001174 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001175 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001176 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001177
Thomas Graf7deb2262007-08-22 13:57:39 -07001178 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001179 if (r_skb == NULL)
1180 return -ENOMEM;
1181
Eric W. Biederman15e47302012-09-07 20:12:54 +00001182 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001183 BUG();
1184
Eric W. Biederman15e47302012-09-07 20:12:54 +00001185 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001186}
1187
Thomas Graf7deb2262007-08-22 13:57:39 -07001188static inline size_t xfrm_sadinfo_msgsize(void)
1189{
1190 return NLMSG_ALIGN(4)
1191 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1192 + nla_total_size(4); /* XFRMA_SAD_CNT */
1193}
1194
Alexey Dobriyane0710412010-01-23 13:37:10 +00001195static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001196 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001197{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001198 struct xfrmk_sadinfo si;
1199 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001200 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001201 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001202 u32 *f;
1203
Eric W. Biederman15e47302012-09-07 20:12:54 +00001204 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001205 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001206 return -EMSGSIZE;
1207
1208 f = nlmsg_data(nlh);
1209 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001210 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001211
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001212 sh.sadhmcnt = si.sadhmcnt;
1213 sh.sadhcnt = si.sadhcnt;
1214
David S. Miller1d1e34d2012-06-27 21:57:03 -07001215 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1216 if (!err)
1217 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1218 if (err) {
1219 nlmsg_cancel(skb, nlh);
1220 return err;
1221 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001222
Johannes Berg053c0952015-01-16 22:09:00 +01001223 nlmsg_end(skb, nlh);
1224 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001225}
1226
1227static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001228 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001229{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001230 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001231 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001232 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001233 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001234 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001235
Thomas Graf7deb2262007-08-22 13:57:39 -07001236 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001237 if (r_skb == NULL)
1238 return -ENOMEM;
1239
Eric W. Biederman15e47302012-09-07 20:12:54 +00001240 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001241 BUG();
1242
Eric W. Biederman15e47302012-09-07 20:12:54 +00001243 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001244}
1245
Christoph Hellwig22e70052007-01-02 15:22:30 -08001246static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001247 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001249 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001250 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct xfrm_state *x;
1252 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001253 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001255 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (x == NULL)
1257 goto out_noput;
1258
1259 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1260 if (IS_ERR(resp_skb)) {
1261 err = PTR_ERR(resp_skb);
1262 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001263 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265 xfrm_state_put(x);
1266out_noput:
1267 return err;
1268}
1269
Christoph Hellwig22e70052007-01-02 15:22:30 -08001270static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001271 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001273 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 struct xfrm_state *x;
1275 struct xfrm_userspi_info *p;
1276 struct sk_buff *resp_skb;
1277 xfrm_address_t *daddr;
1278 int family;
1279 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001280 u32 mark;
1281 struct xfrm_mark m;
Steffen Klasserta80f5602018-06-12 14:07:07 +02001282 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Thomas Graf7b67c852007-08-22 13:53:52 -07001284 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001285 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (err)
1287 goto out_noput;
1288
1289 family = p->info.family;
1290 daddr = &p->info.id.daddr;
1291
1292 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001293
1294 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001295
1296 if (attrs[XFRMA_IF_ID])
1297 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001300 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001301 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 xfrm_state_put(x);
1303 x = NULL;
1304 }
1305 }
1306
1307 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001308 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klasserta80f5602018-06-12 14:07:07 +02001309 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 &p->info.saddr, 1,
1311 family);
1312 err = -ENOENT;
1313 if (x == NULL)
1314 goto out_noput;
1315
Herbert Xu658b2192007-10-09 13:29:52 -07001316 err = xfrm_alloc_spi(x, p->min, p->max);
1317 if (err)
1318 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Herbert Xu658b2192007-10-09 13:29:52 -07001320 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (IS_ERR(resp_skb)) {
1322 err = PTR_ERR(resp_skb);
1323 goto out;
1324 }
1325
Eric W. Biederman15e47302012-09-07 20:12:54 +00001326 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328out:
1329 xfrm_state_put(x);
1330out_noput:
1331 return err;
1332}
1333
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001334static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 switch (dir) {
1337 case XFRM_POLICY_IN:
1338 case XFRM_POLICY_OUT:
1339 case XFRM_POLICY_FWD:
1340 break;
1341
1342 default:
1343 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 return 0;
1347}
1348
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001349static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001350{
1351 switch (type) {
1352 case XFRM_POLICY_TYPE_MAIN:
1353#ifdef CONFIG_XFRM_SUB_POLICY
1354 case XFRM_POLICY_TYPE_SUB:
1355#endif
1356 break;
1357
1358 default:
1359 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001360 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001361
1362 return 0;
1363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1366{
Fan Due682adf2013-11-07 17:47:48 +08001367 int ret;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 switch (p->share) {
1370 case XFRM_SHARE_ANY:
1371 case XFRM_SHARE_SESSION:
1372 case XFRM_SHARE_USER:
1373 case XFRM_SHARE_UNIQUE:
1374 break;
1375
1376 default:
1377 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 switch (p->action) {
1381 case XFRM_POLICY_ALLOW:
1382 case XFRM_POLICY_BLOCK:
1383 break;
1384
1385 default:
1386 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 switch (p->sel.family) {
1390 case AF_INET:
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001391 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1392 return -EINVAL;
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 break;
1395
1396 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001397#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert89cb86e2018-08-01 13:45:11 +02001398 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1399 return -EINVAL;
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 break;
1402#else
1403 return -EAFNOSUPPORT;
1404#endif
1405
1406 default:
1407 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Fan Due682adf2013-11-07 17:47:48 +08001410 ret = verify_policy_dir(p->dir);
1411 if (ret)
1412 return ret;
YueHaibing7c967212019-02-28 15:18:59 +08001413 if (p->index && (xfrm_policy_id2dir(p->index) != p->dir))
Fan Due682adf2013-11-07 17:47:48 +08001414 return -EINVAL;
1415
1416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
Thomas Graf5424f322007-08-22 14:01:33 -07001419static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001420{
Thomas Graf5424f322007-08-22 14:01:33 -07001421 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001422 struct xfrm_user_sec_ctx *uctx;
1423
1424 if (!rt)
1425 return 0;
1426
Thomas Graf5424f322007-08-22 14:01:33 -07001427 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001428 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001429}
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1432 int nr)
1433{
1434 int i;
1435
1436 xp->xfrm_nr = nr;
1437 for (i = 0; i < nr; i++, ut++) {
1438 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1439
1440 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1441 memcpy(&t->saddr, &ut->saddr,
1442 sizeof(xfrm_address_t));
1443 t->reqid = ut->reqid;
1444 t->mode = ut->mode;
1445 t->share = ut->share;
1446 t->optional = ut->optional;
1447 t->aalgos = ut->aalgos;
1448 t->ealgos = ut->ealgos;
1449 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001450 /* If all masks are ~0, then we allow all algorithms. */
1451 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001452 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454}
1455
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001456static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1457{
Steffen Klassert9a54c512017-12-08 08:07:25 +01001458 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001459 int i;
1460
1461 if (nr > XFRM_MAX_DEPTH)
1462 return -EINVAL;
1463
Steffen Klassert9a54c512017-12-08 08:07:25 +01001464 prev_family = family;
1465
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001466 for (i = 0; i < nr; i++) {
1467 /* We never validated the ut->family value, so many
1468 * applications simply leave it at zero. The check was
1469 * never made and ut->family was ignored because all
1470 * templates could be assumed to have the same family as
1471 * the policy itself. Now that we will have ipv4-in-ipv6
1472 * and ipv6-in-ipv4 tunnels, this is no longer true.
1473 */
1474 if (!ut[i].family)
1475 ut[i].family = family;
1476
Florian Westphala19fd852019-01-09 14:37:34 +01001477 switch (ut[i].mode) {
1478 case XFRM_MODE_TUNNEL:
1479 case XFRM_MODE_BEET:
1480 break;
1481 default:
1482 if (ut[i].family != prev_family)
1483 return -EINVAL;
1484 break;
1485 }
Sean Tranchettide500b92018-09-19 13:54:56 -06001486 if (ut[i].mode >= XFRM_MODE_MAX)
1487 return -EINVAL;
1488
Steffen Klassert9a54c512017-12-08 08:07:25 +01001489 prev_family = ut[i].family;
1490
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001491 switch (ut[i].family) {
1492 case AF_INET:
1493 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001494#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001495 case AF_INET6:
1496 break;
1497#endif
1498 default:
1499 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001500 }
Cong Wang85552882017-11-27 11:15:16 -08001501
1502 switch (ut[i].id.proto) {
1503 case IPPROTO_AH:
1504 case IPPROTO_ESP:
1505 case IPPROTO_COMP:
1506#if IS_ENABLED(CONFIG_IPV6)
1507 case IPPROTO_ROUTING:
1508 case IPPROTO_DSTOPTS:
1509#endif
1510 case IPSEC_PROTO_ANY:
1511 break;
1512 default:
1513 return -EINVAL;
1514 }
1515
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001516 }
1517
1518 return 0;
1519}
1520
Thomas Graf5424f322007-08-22 14:01:33 -07001521static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Thomas Graf5424f322007-08-22 14:01:33 -07001523 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 if (!rt) {
1526 pol->xfrm_nr = 0;
1527 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001528 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1529 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001530 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001532 err = validate_tmpl(nr, utmpl, pol->family);
1533 if (err)
1534 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Thomas Graf5424f322007-08-22 14:01:33 -07001536 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538 return 0;
1539}
1540
Thomas Graf5424f322007-08-22 14:01:33 -07001541static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001542{
Thomas Graf5424f322007-08-22 14:01:33 -07001543 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001544 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001545 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001546 int err;
1547
1548 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001549 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001550 type = upt->type;
1551 }
1552
1553 err = verify_policy_type(type);
1554 if (err)
1555 return err;
1556
1557 *tp = type;
1558 return 0;
1559}
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1562{
1563 xp->priority = p->priority;
1564 xp->index = p->index;
1565 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1566 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1567 xp->action = p->action;
1568 xp->flags = p->flags;
1569 xp->family = p->sel.family;
1570 /* XXX xp->share = p->share; */
1571}
1572
1573static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1574{
Mathias Krause7b789832012-09-19 11:33:40 +00001575 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1577 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1578 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1579 p->priority = xp->priority;
1580 p->index = xp->index;
1581 p->sel.family = xp->family;
1582 p->dir = dir;
1583 p->action = xp->action;
1584 p->flags = xp->flags;
1585 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1586}
1587
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001588static 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 -07001589{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001590 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 int err;
1592
1593 if (!xp) {
1594 *errp = -ENOMEM;
1595 return NULL;
1596 }
1597
1598 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001599
Thomas Graf35a7aa02007-08-22 14:00:40 -07001600 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001601 if (err)
1602 goto error;
1603
Thomas Graf35a7aa02007-08-22 14:00:40 -07001604 if (!(err = copy_from_user_tmpl(xp, attrs)))
1605 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001606 if (err)
1607 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001609 xfrm_mark_get(attrs, &xp->mark);
1610
Steffen Klasserta80f5602018-06-12 14:07:07 +02001611 if (attrs[XFRMA_IF_ID])
1612 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001615 error:
1616 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001617 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001618 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001619 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
Christoph Hellwig22e70052007-01-02 15:22:30 -08001622static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001623 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001625 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001626 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001628 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 int err;
1630 int excl;
1631
1632 err = verify_newpolicy_info(p);
1633 if (err)
1634 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001635 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001636 if (err)
1637 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001639 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (!xp)
1641 return err;
1642
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001643 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001644 * Aha! this is anti-netlink really i.e more pfkey derived
1645 * in netlink excl is a flag and you wouldnt need
1646 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1648 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001649 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001652 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 kfree(xp);
1654 return err;
1655 }
1656
Herbert Xuf60f6b82005-06-18 22:44:37 -07001657 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001658 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001659 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001660 km_policy_notify(xp, p->dir, &c);
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 xfrm_pol_put(xp);
1663
1664 return 0;
1665}
1666
1667static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1668{
1669 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1670 int i;
1671
1672 if (xp->xfrm_nr == 0)
1673 return 0;
1674
1675 for (i = 0; i < xp->xfrm_nr; i++) {
1676 struct xfrm_user_tmpl *up = &vec[i];
1677 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1678
Mathias Krause1f868402012-09-19 11:33:41 +00001679 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001681 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1683 up->reqid = kp->reqid;
1684 up->mode = kp->mode;
1685 up->share = kp->share;
1686 up->optional = kp->optional;
1687 up->aalgos = kp->aalgos;
1688 up->ealgos = kp->ealgos;
1689 up->calgos = kp->calgos;
1690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Thomas Grafc0144be2007-08-22 13:55:43 -07001692 return nla_put(skb, XFRMA_TMPL,
1693 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001694}
1695
Serge Hallyn0d681622006-07-24 23:30:44 -07001696static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1697{
1698 if (x->security) {
1699 return copy_sec_ctx(x->security, skb);
1700 }
1701 return 0;
1702}
1703
1704static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1705{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001706 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001707 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001708 return 0;
1709}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001710static inline size_t userpolicy_type_attrsize(void)
1711{
1712#ifdef CONFIG_XFRM_SUB_POLICY
1713 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1714#else
1715 return 0;
1716#endif
1717}
Serge Hallyn0d681622006-07-24 23:30:44 -07001718
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001719#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001720static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001721{
Eric Dumazet2038a9e2018-06-18 21:35:07 -07001722 struct xfrm_userpolicy_type upt;
1723
1724 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1725 memset(&upt, 0, sizeof(upt));
1726 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001727
Thomas Grafc0144be2007-08-22 13:55:43 -07001728 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001729}
1730
1731#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001732static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001733{
1734 return 0;
1735}
1736#endif
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1739{
1740 struct xfrm_dump_info *sp = ptr;
1741 struct xfrm_userpolicy_info *p;
1742 struct sk_buff *in_skb = sp->in_skb;
1743 struct sk_buff *skb = sp->out_skb;
1744 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001745 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Eric W. Biederman15e47302012-09-07 20:12:54 +00001747 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001748 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1749 if (nlh == NULL)
1750 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Thomas Graf7b67c852007-08-22 13:53:52 -07001752 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001754 err = copy_to_user_tmpl(xp, skb);
1755 if (!err)
1756 err = copy_to_user_sec_ctx(xp, skb);
1757 if (!err)
1758 err = copy_to_user_policy_type(xp->type, skb);
1759 if (!err)
1760 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001761 if (!err)
1762 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001763 if (err) {
1764 nlmsg_cancel(skb, nlh);
1765 return err;
1766 }
Thomas Graf98250692007-08-22 12:47:26 -07001767 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
Timo Teras4c563f72008-02-28 21:31:08 -08001771static int xfrm_dump_policy_done(struct netlink_callback *cb)
1772{
Herbert Xu543aabb2017-10-19 20:51:10 +08001773 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001774 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001775
Fan Du283bc9f2013-11-07 17:47:50 +08001776 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001777 return 0;
1778}
1779
Herbert Xu543aabb2017-10-19 20:51:10 +08001780static int xfrm_dump_policy_start(struct netlink_callback *cb)
1781{
1782 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1783
1784 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1785
1786 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1787 return 0;
1788}
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1791{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001792 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001793 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 struct xfrm_dump_info info;
1795
1796 info.in_skb = cb->skb;
1797 info.out_skb = skb;
1798 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1799 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001800
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001801 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 return skb->len;
1804}
1805
1806static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1807 struct xfrm_policy *xp,
1808 int dir, u32 seq)
1809{
1810 struct xfrm_dump_info info;
1811 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001812 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Thomas Graf7deb2262007-08-22 13:57:39 -07001814 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (!skb)
1816 return ERR_PTR(-ENOMEM);
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 info.in_skb = in_skb;
1819 info.out_skb = skb;
1820 info.nlmsg_seq = seq;
1821 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Mathias Krausec2546372012-09-14 09:58:32 +00001823 err = dump_one_policy(xp, dir, 0, &info);
1824 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001826 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828
1829 return skb;
1830}
1831
Christoph Hellwig22e70052007-01-02 15:22:30 -08001832static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001833 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001835 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 struct xfrm_policy *xp;
1837 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001838 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001840 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001842 struct xfrm_mark m;
1843 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001844 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Thomas Graf7b67c852007-08-22 13:53:52 -07001846 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1848
Thomas Graf35a7aa02007-08-22 14:00:40 -07001849 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001850 if (err)
1851 return err;
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 err = verify_policy_dir(p->dir);
1854 if (err)
1855 return err;
1856
Steffen Klasserta80f5602018-06-12 14:07:07 +02001857 if (attrs[XFRMA_IF_ID])
1858 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02001861 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001862 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001863 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001864 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001865
Thomas Graf35a7aa02007-08-22 14:00:40 -07001866 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001867 if (err)
1868 return err;
1869
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001870 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001871 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001872 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001873
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001874 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001875 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001876 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001877 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02001878 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001879 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001880 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (xp == NULL)
1883 return -ENOENT;
1884
1885 if (!delete) {
1886 struct sk_buff *resp_skb;
1887
1888 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1889 if (IS_ERR(resp_skb)) {
1890 err = PTR_ERR(resp_skb);
1891 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001892 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001893 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001895 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001896 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001897
1898 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001899 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001900
Herbert Xue7443892005-06-18 22:44:18 -07001901 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001902 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001903 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001904 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001905 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001908out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001909 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001910 if (delete && err == 0)
1911 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return err;
1913}
1914
Christoph Hellwig22e70052007-01-02 15:22:30 -08001915static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001916 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001918 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001919 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001920 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001921 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Tetsuo Handa2e710292014-04-22 21:48:30 +09001923 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001924 if (err) {
1925 if (err == -ESRCH) /* empty table */
1926 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001927 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001928 }
Herbert Xubf088672005-06-18 22:44:00 -07001929 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001930 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001931 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001932 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001933 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001934 km_state_notify(NULL, &c);
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 return 0;
1937}
1938
Steffen Klassertd8647b72011-03-08 00:10:27 +00001939static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001940{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001941 size_t replay_size = x->replay_esn ?
1942 xfrm_replay_state_esn_len(x->replay_esn) :
1943 sizeof(struct xfrm_replay_state);
1944
Thomas Graf7deb2262007-08-22 13:57:39 -07001945 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001946 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001947 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001948 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001949 + nla_total_size(4) /* XFRM_AE_RTHR */
1950 + nla_total_size(4); /* XFRM_AE_ETHR */
1951}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952
David S. Miller214e0052011-02-24 00:02:38 -05001953static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001954{
1955 struct xfrm_aevent_id *id;
1956 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001957 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001958
Eric W. Biederman15e47302012-09-07 20:12:54 +00001959 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001960 if (nlh == NULL)
1961 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001962
Thomas Graf7b67c852007-08-22 13:53:52 -07001963 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001964 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001965 id->sa_id.spi = x->id.spi;
1966 id->sa_id.family = x->props.family;
1967 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001968 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001969 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001970 id->flags = c->data.aevent;
1971
David S. Millerd0fde792012-03-29 04:02:26 -04001972 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001973 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1974 xfrm_replay_state_esn_len(x->replay_esn),
1975 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001976 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001977 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1978 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001979 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001980 if (err)
1981 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001982 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1983 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001984 if (err)
1985 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001986
David S. Miller1d1e34d2012-06-27 21:57:03 -07001987 if (id->flags & XFRM_AE_RTHR) {
1988 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1989 if (err)
1990 goto out_cancel;
1991 }
1992 if (id->flags & XFRM_AE_ETHR) {
1993 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1994 x->replay_maxage * 10 / HZ);
1995 if (err)
1996 goto out_cancel;
1997 }
1998 err = xfrm_mark_put(skb, &x->mark);
1999 if (err)
2000 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002001
Steffen Klasserta80f5602018-06-12 14:07:07 +02002002 err = xfrm_if_id_put(skb, x->if_id);
2003 if (err)
2004 goto out_cancel;
2005
Johannes Berg053c0952015-01-16 22:09:00 +01002006 nlmsg_end(skb, nlh);
2007 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002008
David S. Miller1d1e34d2012-06-27 21:57:03 -07002009out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002010 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002011 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002012}
2013
Christoph Hellwig22e70052007-01-02 15:22:30 -08002014static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002015 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002016{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002017 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002018 struct xfrm_state *x;
2019 struct sk_buff *r_skb;
2020 int err;
2021 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002022 u32 mark;
2023 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002024 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002025 struct xfrm_usersa_id *id = &p->sa_id;
2026
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002027 mark = xfrm_mark_get(attrs, &m);
2028
2029 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002030 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002031 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002032
2033 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2034 if (r_skb == NULL) {
2035 xfrm_state_put(x);
2036 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002037 }
2038
2039 /*
2040 * XXX: is this lock really needed - none of the other
2041 * gets lock (the concern is things getting updated
2042 * while we are still reading) - jhs
2043 */
2044 spin_lock_bh(&x->lock);
2045 c.data.aevent = p->flags;
2046 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002047 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002048
2049 if (build_aevent(r_skb, x, &c) < 0)
2050 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00002051 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002052 spin_unlock_bh(&x->lock);
2053 xfrm_state_put(x);
2054 return err;
2055}
2056
Christoph Hellwig22e70052007-01-02 15:22:30 -08002057static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002058 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002059{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002060 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002061 struct xfrm_state *x;
2062 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002063 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002064 u32 mark = 0;
2065 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002066 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002067 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002068 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002069 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002070 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2071 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002072
Michael Rossberg4e077232015-09-29 11:25:08 +02002073 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002074 return err;
2075
2076 /* pedantic mode - thou shalt sayeth replaceth */
2077 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2078 return err;
2079
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002080 mark = xfrm_mark_get(attrs, &m);
2081
2082 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 -08002083 if (x == NULL)
2084 return -ESRCH;
2085
2086 if (x->km.state != XFRM_STATE_VALID)
2087 goto out;
2088
Steffen Klassert4479ff72013-09-09 09:39:01 +02002089 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002090 if (err)
2091 goto out;
2092
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002093 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002094 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002095 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002096
2097 c.event = nlh->nlmsg_type;
2098 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002099 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002100 c.data.aevent = XFRM_AE_CU;
2101 km_state_notify(x, &c);
2102 err = 0;
2103out:
2104 xfrm_state_put(x);
2105 return err;
2106}
2107
Christoph Hellwig22e70052007-01-02 15:22:30 -08002108static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002109 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002111 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002112 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002113 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002114 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002115
Thomas Graf35a7aa02007-08-22 14:00:40 -07002116 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002117 if (err)
2118 return err;
2119
Tetsuo Handa2e710292014-04-22 21:48:30 +09002120 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002121 if (err) {
2122 if (err == -ESRCH) /* empty table */
2123 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002124 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002125 }
2126
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002127 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002128 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002129 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002130 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002131 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002132 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return 0;
2134}
2135
Christoph Hellwig22e70052007-01-02 15:22:30 -08002136static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002137 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002138{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002139 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002140 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002141 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002142 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002143 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002144 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002145 struct xfrm_mark m;
2146 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002147 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002148
Thomas Graf35a7aa02007-08-22 14:00:40 -07002149 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002150 if (err)
2151 return err;
2152
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002153 err = verify_policy_dir(p->dir);
2154 if (err)
2155 return err;
2156
Steffen Klasserta80f5602018-06-12 14:07:07 +02002157 if (attrs[XFRMA_IF_ID])
2158 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2159
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002160 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02002161 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002162 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002163 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002164 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002165
Thomas Graf35a7aa02007-08-22 14:00:40 -07002166 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002167 if (err)
2168 return err;
2169
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002170 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002171 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002172 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002173
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002174 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002175 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002177 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002178 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002179 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002180 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002181 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002183 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002184
Timo Teräsea2dea92010-03-31 00:17:05 +00002185 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002186 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002187
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002188 err = 0;
2189 if (up->hard) {
2190 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002191 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002192 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002193 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002194
2195out:
2196 xfrm_pol_put(xp);
2197 return err;
2198}
2199
Christoph Hellwig22e70052007-01-02 15:22:30 -08002200static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002201 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002202{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002203 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002204 struct xfrm_state *x;
2205 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002206 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002207 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002208 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002209 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002210
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002211 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 -08002212
David S. Miller3a765aa2007-02-26 14:52:21 -08002213 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002214 if (x == NULL)
2215 return err;
2216
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002217 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002218 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002219 if (x->km.state != XFRM_STATE_VALID)
2220 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002221 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002222
Joy Latten161a09e2006-11-27 13:11:54 -06002223 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002224 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002225 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002226 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002227 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002228out:
2229 spin_unlock_bh(&x->lock);
2230 xfrm_state_put(x);
2231 return err;
2232}
2233
Christoph Hellwig22e70052007-01-02 15:22:30 -08002234static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002235 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002236{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002237 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002238 struct xfrm_policy *xp;
2239 struct xfrm_user_tmpl *ut;
2240 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002241 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002242 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002243
Thomas Graf7b67c852007-08-22 13:53:52 -07002244 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002245 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002246 int err = -ENOMEM;
2247
2248 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002249 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002250
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002251 xfrm_mark_get(attrs, &mark);
2252
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002253 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002254 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002255 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002256
2257 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002258 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002259 if (!xp)
2260 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002261
2262 memcpy(&x->id, &ua->id, sizeof(ua->id));
2263 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2264 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002265 xp->mark.m = x->mark.m = mark.m;
2266 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002267 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002268 /* extract the templates and for each call km_key */
2269 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2270 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2271 memcpy(&x->id, &t->id, sizeof(x->id));
2272 x->props.mode = t->mode;
2273 x->props.reqid = t->reqid;
2274 x->props.family = ut->family;
2275 t->aalgos = ua->aalgos;
2276 t->ealgos = ua->ealgos;
2277 t->calgos = ua->calgos;
2278 err = km_query(x, t, xp);
2279
2280 }
2281
2282 kfree(x);
2283 kfree(xp);
2284
2285 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002286
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002287free_state:
2288 kfree(x);
2289nomem:
2290 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002291}
2292
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002293#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002295 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002296 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002297{
Thomas Graf5424f322007-08-22 14:01:33 -07002298 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002299 struct xfrm_user_migrate *um;
2300 int i, num_migrate;
2301
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002302 if (k != NULL) {
2303 struct xfrm_user_kmaddress *uk;
2304
2305 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2306 memcpy(&k->local, &uk->local, sizeof(k->local));
2307 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2308 k->family = uk->family;
2309 k->reserved = uk->reserved;
2310 }
2311
Thomas Graf5424f322007-08-22 14:01:33 -07002312 um = nla_data(rt);
2313 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002314
2315 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2316 return -EINVAL;
2317
2318 for (i = 0; i < num_migrate; i++, um++, ma++) {
2319 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2320 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2321 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2322 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2323
2324 ma->proto = um->proto;
2325 ma->mode = um->mode;
2326 ma->reqid = um->reqid;
2327
2328 ma->old_family = um->old_family;
2329 ma->new_family = um->new_family;
2330 }
2331
2332 *num = i;
2333 return 0;
2334}
2335
2336static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002337 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002338{
Thomas Graf7b67c852007-08-22 13:53:52 -07002339 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002340 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002341 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002342 u8 type;
2343 int err;
2344 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002345 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002346
Thomas Graf35a7aa02007-08-22 14:00:40 -07002347 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002348 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002349
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002350 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2351
Thomas Graf5424f322007-08-22 14:01:33 -07002352 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002353 if (err)
2354 return err;
2355
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002356 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002357 if (err)
2358 return err;
2359
2360 if (!n)
2361 return 0;
2362
Fan Du8d549c42013-11-07 17:47:49 +08002363 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364
2365 return 0;
2366}
2367#else
2368static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002369 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002370{
2371 return -ENOPROTOOPT;
2372}
2373#endif
2374
2375#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002376static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002377{
2378 struct xfrm_user_migrate um;
2379
2380 memset(&um, 0, sizeof(um));
2381 um.proto = m->proto;
2382 um.mode = m->mode;
2383 um.reqid = m->reqid;
2384 um.old_family = m->old_family;
2385 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2386 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2387 um.new_family = m->new_family;
2388 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2389 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2390
Thomas Grafc0144be2007-08-22 13:55:43 -07002391 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002392}
2393
David S. Miller183cad12011-02-24 00:28:01 -05002394static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002395{
2396 struct xfrm_user_kmaddress uk;
2397
2398 memset(&uk, 0, sizeof(uk));
2399 uk.family = k->family;
2400 uk.reserved = k->reserved;
2401 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002402 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002403
2404 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2405}
2406
2407static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002408{
2409 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002410 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2411 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2412 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002413}
2414
David S. Miller183cad12011-02-24 00:28:01 -05002415static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2416 int num_migrate, const struct xfrm_kmaddress *k,
2417 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002418{
David S. Miller183cad12011-02-24 00:28:01 -05002419 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002420 struct xfrm_userpolicy_id *pol_id;
2421 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002422 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002423
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002424 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2425 if (nlh == NULL)
2426 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002427
Thomas Graf7b67c852007-08-22 13:53:52 -07002428 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002429 /* copy data from selector, dir, and type to the pol_id */
2430 memset(pol_id, 0, sizeof(*pol_id));
2431 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2432 pol_id->dir = dir;
2433
David S. Miller1d1e34d2012-06-27 21:57:03 -07002434 if (k != NULL) {
2435 err = copy_to_user_kmaddress(k, skb);
2436 if (err)
2437 goto out_cancel;
2438 }
2439 err = copy_to_user_policy_type(type, skb);
2440 if (err)
2441 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002442 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002443 err = copy_to_user_migrate(mp, skb);
2444 if (err)
2445 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002446 }
2447
Johannes Berg053c0952015-01-16 22:09:00 +01002448 nlmsg_end(skb, nlh);
2449 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002450
2451out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002452 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002453 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002454}
2455
David S. Miller183cad12011-02-24 00:28:01 -05002456static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2457 const struct xfrm_migrate *m, int num_migrate,
2458 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002459{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002460 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002461 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002462
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002463 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002464 if (skb == NULL)
2465 return -ENOMEM;
2466
2467 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002468 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002469 BUG();
2470
Michal Kubecek21ee5432014-06-03 10:26:06 +02002471 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002472}
2473#else
David S. Miller183cad12011-02-24 00:28:01 -05002474static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2475 const struct xfrm_migrate *m, int num_migrate,
2476 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002477{
2478 return -ENOPROTOOPT;
2479}
2480#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002481
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002482#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002483
2484static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002485 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002486 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2487 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2488 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2489 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2490 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2491 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002492 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002493 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002494 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002495 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002496 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002497 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002498 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002499 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2500 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002501 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002502 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002503 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002504 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002505 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506};
2507
Thomas Graf492b5582005-05-03 14:26:40 -07002508#undef XMSGSIZE
2509
Thomas Grafcf5cb792007-08-22 13:59:04 -07002510static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002511 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2512 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2513 [XFRMA_LASTUSED] = { .type = NLA_U64},
2514 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002515 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002516 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2517 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2518 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2519 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2520 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2521 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2522 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2523 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2524 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2525 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2526 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2527 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2528 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2529 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002530 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002531 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002532 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002533 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002534 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002535 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002536 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassert78f10c52018-06-12 12:44:26 +02002537 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2538 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klasserta80f5602018-06-12 14:07:07 +02002539 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002540};
2541
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002542static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2543 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2544 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2545};
2546
Mathias Krause05600a72013-02-24 14:10:27 +01002547static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002548 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002549 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002551 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002552 const struct nla_policy *nla_pol;
2553 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002554} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2555 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2556 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2557 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002558 .dump = xfrm_dump_sa,
2559 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002560 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2561 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2562 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002563 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002564 .dump = xfrm_dump_policy,
2565 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002566 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002567 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002568 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002569 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2570 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002571 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002572 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2573 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002574 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2575 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002576 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002577 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002578 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2579 .nla_pol = xfrma_spd_policy,
2580 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002581 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582};
2583
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002584static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002586 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002587 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002588 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002589 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002593 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
2595 type -= XFRM_MSG_BASE;
2596 link = &xfrm_dispatch[type];
2597
2598 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002599 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002600 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Thomas Graf492b5582005-05-03 14:26:40 -07002602 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2603 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002604 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002606 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002608 {
2609 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002610 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002611 .dump = link->dump,
2612 .done = link->done,
2613 };
2614 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
2617
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002618 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2619 link->nla_max ? : XFRMA_MAX,
2620 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002621 if (err < 0)
2622 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002625 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Thomas Graf5424f322007-08-22 14:01:33 -07002627 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
2629
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002630static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Fan Du283bc9f2013-11-07 17:47:50 +08002632 struct net *net = sock_net(skb->sk);
2633
2634 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002635 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002636 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637}
2638
Thomas Graf7deb2262007-08-22 13:57:39 -07002639static inline size_t xfrm_expire_msgsize(void)
2640{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002641 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2642 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002643}
2644
David S. Miller214e0052011-02-24 00:02:38 -05002645static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
2647 struct xfrm_user_expire *ue;
2648 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002649 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Eric W. Biederman15e47302012-09-07 20:12:54 +00002651 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002652 if (nlh == NULL)
2653 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Thomas Graf7b67c852007-08-22 13:53:52 -07002655 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002657 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
David S. Miller1d1e34d2012-06-27 21:57:03 -07002659 err = xfrm_mark_put(skb, &x->mark);
2660 if (err)
2661 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002662
Steffen Klasserta80f5602018-06-12 14:07:07 +02002663 err = xfrm_if_id_put(skb, x->if_id);
2664 if (err)
2665 return err;
2666
Johannes Berg053c0952015-01-16 22:09:00 +01002667 nlmsg_end(skb, nlh);
2668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669}
2670
David S. Miller214e0052011-02-24 00:02:38 -05002671static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002673 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 struct sk_buff *skb;
2675
Thomas Graf7deb2262007-08-22 13:57:39 -07002676 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 if (skb == NULL)
2678 return -ENOMEM;
2679
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002680 if (build_expire(skb, x, c) < 0) {
2681 kfree_skb(skb);
2682 return -EMSGSIZE;
2683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Michal Kubecek21ee5432014-06-03 10:26:06 +02002685 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686}
2687
David S. Miller214e0052011-02-24 00:02:38 -05002688static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002689{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002690 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002691 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002692
Steffen Klassertd8647b72011-03-08 00:10:27 +00002693 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002694 if (skb == NULL)
2695 return -ENOMEM;
2696
2697 if (build_aevent(skb, x, c) < 0)
2698 BUG();
2699
Michal Kubecek21ee5432014-06-03 10:26:06 +02002700 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002701}
2702
David S. Miller214e0052011-02-24 00:02:38 -05002703static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002704{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002705 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002706 struct xfrm_usersa_flush *p;
2707 struct nlmsghdr *nlh;
2708 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002709 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002710
Thomas Graf7deb2262007-08-22 13:57:39 -07002711 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002712 if (skb == NULL)
2713 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002714
Eric W. Biederman15e47302012-09-07 20:12:54 +00002715 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002716 if (nlh == NULL) {
2717 kfree_skb(skb);
2718 return -EMSGSIZE;
2719 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002720
Thomas Graf7b67c852007-08-22 13:53:52 -07002721 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002722 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002723
Thomas Graf98250692007-08-22 12:47:26 -07002724 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002725
Michal Kubecek21ee5432014-06-03 10:26:06 +02002726 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002727}
2728
Thomas Graf7deb2262007-08-22 13:57:39 -07002729static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002730{
Thomas Graf7deb2262007-08-22 13:57:39 -07002731 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002732 if (x->aead)
2733 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002734 if (x->aalg) {
2735 l += nla_total_size(sizeof(struct xfrm_algo) +
2736 (x->aalg->alg_key_len + 7) / 8);
2737 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2738 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002739 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002740 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002741 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002742 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002743 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002744 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002745 if (x->tfcpad)
2746 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002747 if (x->replay_esn)
2748 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002749 else
2750 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002751 if (x->security)
2752 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2753 x->security->ctx_len);
2754 if (x->coaddr)
2755 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002756 if (x->props.extra_flags)
2757 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassert78f10c52018-06-12 12:44:26 +02002758 if (x->props.smark.v | x->props.smark.m) {
2759 l += nla_total_size(sizeof(x->props.smark.v));
2760 l += nla_total_size(sizeof(x->props.smark.m));
2761 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002762 if (x->if_id)
2763 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002764
Herbert Xud26f3982007-11-13 21:47:08 -08002765 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002766 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002767
2768 return l;
2769}
2770
David S. Miller214e0052011-02-24 00:02:38 -05002771static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002772{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002773 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002774 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002775 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002776 struct nlmsghdr *nlh;
2777 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002778 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002779 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002780
2781 headlen = sizeof(*p);
2782 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002783 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002784 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002785 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002786 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002787 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002788
Thomas Graf7deb2262007-08-22 13:57:39 -07002789 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002790 if (skb == NULL)
2791 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002792
Eric W. Biederman15e47302012-09-07 20:12:54 +00002793 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002794 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002795 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002796 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002797
Thomas Graf7b67c852007-08-22 13:53:52 -07002798 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002799 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002800 struct nlattr *attr;
2801
Thomas Graf7b67c852007-08-22 13:53:52 -07002802 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002803 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2804 id->spi = x->id.spi;
2805 id->family = x->props.family;
2806 id->proto = x->id.proto;
2807
Thomas Grafc0144be2007-08-22 13:55:43 -07002808 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002809 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002810 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002811 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002812
2813 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002814 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002815 err = copy_to_user_state_extra(x, p, skb);
2816 if (err)
2817 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002818
Thomas Graf98250692007-08-22 12:47:26 -07002819 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002820
Michal Kubecek21ee5432014-06-03 10:26:06 +02002821 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002822
David S. Miller1d1e34d2012-06-27 21:57:03 -07002823out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002824 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002825 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002826}
2827
David S. Miller214e0052011-02-24 00:02:38 -05002828static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002829{
2830
2831 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002832 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002833 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002834 case XFRM_MSG_NEWAE:
2835 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002836 case XFRM_MSG_DELSA:
2837 case XFRM_MSG_UPDSA:
2838 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002839 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002840 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002841 return xfrm_notify_sa_flush(c);
2842 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002843 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2844 c->event);
2845 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002846 }
2847
2848 return 0;
2849
2850}
2851
Thomas Graf7deb2262007-08-22 13:57:39 -07002852static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2853 struct xfrm_policy *xp)
2854{
2855 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2856 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002857 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002858 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2859 + userpolicy_type_attrsize();
2860}
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002863 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002865 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 struct xfrm_user_acquire *ua;
2867 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002868 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002870 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2871 if (nlh == NULL)
2872 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Thomas Graf7b67c852007-08-22 13:53:52 -07002874 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 memcpy(&ua->id, &x->id, sizeof(ua->id));
2876 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2877 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002878 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 ua->aalgos = xt->aalgos;
2880 ua->ealgos = xt->ealgos;
2881 ua->calgos = xt->calgos;
2882 ua->seq = x->km.seq = seq;
2883
David S. Miller1d1e34d2012-06-27 21:57:03 -07002884 err = copy_to_user_tmpl(xp, skb);
2885 if (!err)
2886 err = copy_to_user_state_sec_ctx(x, skb);
2887 if (!err)
2888 err = copy_to_user_policy_type(xp->type, skb);
2889 if (!err)
2890 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002891 if (!err)
2892 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002893 if (err) {
2894 nlmsg_cancel(skb, nlh);
2895 return err;
2896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Johannes Berg053c0952015-01-16 22:09:00 +01002898 nlmsg_end(skb, nlh);
2899 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900}
2901
2902static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002903 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002905 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Thomas Graf7deb2262007-08-22 13:57:39 -07002908 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 if (skb == NULL)
2910 return -ENOMEM;
2911
Fan Du65e07362012-08-15 10:13:47 +08002912 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 BUG();
2914
Michal Kubecek21ee5432014-06-03 10:26:06 +02002915 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916}
2917
2918/* User gives us xfrm_user_policy_info followed by an array of 0
2919 * or more templates.
2920 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002921static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 u8 *data, int len, int *dir)
2923{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002924 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2926 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2927 struct xfrm_policy *xp;
2928 int nr;
2929
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002930 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 case AF_INET:
2932 if (opt != IP_XFRM_POLICY) {
2933 *dir = -EOPNOTSUPP;
2934 return NULL;
2935 }
2936 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002937#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 case AF_INET6:
2939 if (opt != IPV6_XFRM_POLICY) {
2940 *dir = -EOPNOTSUPP;
2941 return NULL;
2942 }
2943 break;
2944#endif
2945 default:
2946 *dir = -EINVAL;
2947 return NULL;
2948 }
2949
2950 *dir = -EINVAL;
2951
2952 if (len < sizeof(*p) ||
2953 verify_newpolicy_info(p))
2954 return NULL;
2955
2956 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002957 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 return NULL;
2959
Herbert Xua4f1bac2005-07-26 15:43:17 -07002960 if (p->dir > XFRM_POLICY_OUT)
2961 return NULL;
2962
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002963 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if (xp == NULL) {
2965 *dir = -ENOBUFS;
2966 return NULL;
2967 }
2968
2969 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002970 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 copy_templates(xp, ut, nr);
2972
2973 *dir = p->dir;
2974
2975 return xp;
2976}
2977
Thomas Graf7deb2262007-08-22 13:57:39 -07002978static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2979{
2980 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2981 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2982 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002983 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002984 + userpolicy_type_attrsize();
2985}
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002988 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
2990 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002991 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002992 struct nlmsghdr *nlh;
2993 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Eric W. Biederman15e47302012-09-07 20:12:54 +00002995 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002996 if (nlh == NULL)
2997 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Thomas Graf7b67c852007-08-22 13:53:52 -07002999 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003001 err = copy_to_user_tmpl(xp, skb);
3002 if (!err)
3003 err = copy_to_user_sec_ctx(xp, skb);
3004 if (!err)
3005 err = copy_to_user_policy_type(xp->type, skb);
3006 if (!err)
3007 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02003008 if (!err)
3009 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003010 if (err) {
3011 nlmsg_cancel(skb, nlh);
3012 return err;
3013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 upe->hard = !!hard;
3015
Johannes Berg053c0952015-01-16 22:09:00 +01003016 nlmsg_end(skb, nlh);
3017 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018}
3019
David S. Miller214e0052011-02-24 00:02:38 -05003020static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003022 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Thomas Graf7deb2262007-08-22 13:57:39 -07003025 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 if (skb == NULL)
3027 return -ENOMEM;
3028
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003029 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 BUG();
3031
Michal Kubecek21ee5432014-06-03 10:26:06 +02003032 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
3034
David S. Miller214e0052011-02-24 00:02:38 -05003035static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003036{
David S. Miller1d1e34d2012-06-27 21:57:03 -07003037 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003038 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003039 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003040 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003041 struct nlmsghdr *nlh;
3042 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003043 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003044
3045 headlen = sizeof(*p);
3046 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003047 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003048 headlen = sizeof(*id);
3049 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003050 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003051 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003052 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003053
Thomas Graf7deb2262007-08-22 13:57:39 -07003054 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003055 if (skb == NULL)
3056 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003057
Eric W. Biederman15e47302012-09-07 20:12:54 +00003058 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003059 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003060 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003061 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003062
Thomas Graf7b67c852007-08-22 13:53:52 -07003063 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003064 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003065 struct nlattr *attr;
3066
Thomas Graf7b67c852007-08-22 13:53:52 -07003067 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003068 memset(id, 0, sizeof(*id));
3069 id->dir = dir;
3070 if (c->data.byid)
3071 id->index = xp->index;
3072 else
3073 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3074
Thomas Grafc0144be2007-08-22 13:55:43 -07003075 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003076 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003077 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003078 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003079
3080 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003081 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003082
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003083 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003084 err = copy_to_user_tmpl(xp, skb);
3085 if (!err)
3086 err = copy_to_user_policy_type(xp->type, skb);
3087 if (!err)
3088 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02003089 if (!err)
3090 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003091 if (err)
3092 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003093
Thomas Graf98250692007-08-22 12:47:26 -07003094 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003095
Michal Kubecek21ee5432014-06-03 10:26:06 +02003096 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003097
David S. Miller1d1e34d2012-06-27 21:57:03 -07003098out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003099 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003100 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003101}
3102
David S. Miller214e0052011-02-24 00:02:38 -05003103static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003104{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003105 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003106 struct nlmsghdr *nlh;
3107 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003108 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003109
Thomas Graf7deb2262007-08-22 13:57:39 -07003110 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003111 if (skb == NULL)
3112 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003113
Eric W. Biederman15e47302012-09-07 20:12:54 +00003114 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003115 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003116 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003117 goto out_free_skb;
3118 err = copy_to_user_policy_type(c->data.type, skb);
3119 if (err)
3120 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003121
Thomas Graf98250692007-08-22 12:47:26 -07003122 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003123
Michal Kubecek21ee5432014-06-03 10:26:06 +02003124 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003125
David S. Miller1d1e34d2012-06-27 21:57:03 -07003126out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003127 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003128 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003129}
3130
David S. Miller214e0052011-02-24 00:02:38 -05003131static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003132{
3133
3134 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003135 case XFRM_MSG_NEWPOLICY:
3136 case XFRM_MSG_UPDPOLICY:
3137 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003138 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003139 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003140 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003141 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003142 return xfrm_exp_policy_notify(xp, dir, c);
3143 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003144 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3145 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003146 }
3147
3148 return 0;
3149
3150}
3151
Thomas Graf7deb2262007-08-22 13:57:39 -07003152static inline size_t xfrm_report_msgsize(void)
3153{
3154 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3155}
3156
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003157static int build_report(struct sk_buff *skb, u8 proto,
3158 struct xfrm_selector *sel, xfrm_address_t *addr)
3159{
3160 struct xfrm_user_report *ur;
3161 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003162
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003163 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3164 if (nlh == NULL)
3165 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003166
Thomas Graf7b67c852007-08-22 13:53:52 -07003167 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003168 ur->proto = proto;
3169 memcpy(&ur->sel, sel, sizeof(ur->sel));
3170
David S. Miller1d1e34d2012-06-27 21:57:03 -07003171 if (addr) {
3172 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3173 if (err) {
3174 nlmsg_cancel(skb, nlh);
3175 return err;
3176 }
3177 }
Johannes Berg053c0952015-01-16 22:09:00 +01003178 nlmsg_end(skb, nlh);
3179 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003180}
3181
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003182static int xfrm_send_report(struct net *net, u8 proto,
3183 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003184{
3185 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003186
Thomas Graf7deb2262007-08-22 13:57:39 -07003187 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003188 if (skb == NULL)
3189 return -ENOMEM;
3190
3191 if (build_report(skb, proto, sel, addr) < 0)
3192 BUG();
3193
Michal Kubecek21ee5432014-06-03 10:26:06 +02003194 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003195}
3196
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003197static inline size_t xfrm_mapping_msgsize(void)
3198{
3199 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3200}
3201
3202static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3203 xfrm_address_t *new_saddr, __be16 new_sport)
3204{
3205 struct xfrm_user_mapping *um;
3206 struct nlmsghdr *nlh;
3207
3208 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3209 if (nlh == NULL)
3210 return -EMSGSIZE;
3211
3212 um = nlmsg_data(nlh);
3213
3214 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3215 um->id.spi = x->id.spi;
3216 um->id.family = x->props.family;
3217 um->id.proto = x->id.proto;
3218 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3219 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3220 um->new_sport = new_sport;
3221 um->old_sport = x->encap->encap_sport;
3222 um->reqid = x->props.reqid;
3223
Johannes Berg053c0952015-01-16 22:09:00 +01003224 nlmsg_end(skb, nlh);
3225 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003226}
3227
3228static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3229 __be16 sport)
3230{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003231 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003232 struct sk_buff *skb;
3233
3234 if (x->id.proto != IPPROTO_ESP)
3235 return -EINVAL;
3236
3237 if (!x->encap)
3238 return -EINVAL;
3239
3240 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3241 if (skb == NULL)
3242 return -ENOMEM;
3243
3244 if (build_mapping(skb, x, ipaddr, sport) < 0)
3245 BUG();
3246
Michal Kubecek21ee5432014-06-03 10:26:06 +02003247 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003248}
3249
Horia Geanta0f245582014-02-12 16:20:06 +02003250static bool xfrm_is_alive(const struct km_event *c)
3251{
3252 return (bool)xfrm_acquire_is_on(c->net);
3253}
3254
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255static struct xfrm_mgr netlink_mgr = {
3256 .id = "netlink",
3257 .notify = xfrm_send_state_notify,
3258 .acquire = xfrm_send_acquire,
3259 .compile_policy = xfrm_compile_policy,
3260 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003261 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003262 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003263 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003264 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265};
3266
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003267static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
Patrick McHardybe336902006-03-20 22:40:54 -08003269 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003270 struct netlink_kernel_cfg cfg = {
3271 .groups = XFRMNLGRP_MAX,
3272 .input = xfrm_netlink_rcv,
3273 };
Patrick McHardybe336902006-03-20 22:40:54 -08003274
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003275 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003276 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003278 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003279 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 return 0;
3281}
3282
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003283static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003284{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003285 struct net *net;
3286 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003287 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003288 synchronize_net();
3289 list_for_each_entry(net, net_exit_list, exit_list)
3290 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003291}
3292
3293static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003294 .init = xfrm_user_net_init,
3295 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003296};
3297
3298static int __init xfrm_user_init(void)
3299{
3300 int rv;
3301
3302 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3303
3304 rv = register_pernet_subsys(&xfrm_user_net_ops);
3305 if (rv < 0)
3306 return rv;
3307 rv = xfrm_register_km(&netlink_mgr);
3308 if (rv < 0)
3309 unregister_pernet_subsys(&xfrm_user_net_ops);
3310 return rv;
3311}
3312
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313static void __exit xfrm_user_exit(void)
3314{
3315 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003316 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317}
3318
3319module_init(xfrm_user_init);
3320module_exit(xfrm_user_exit);
3321MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003322MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003323