blob: 80f0ee2cb1637576ab871e67f8d5b87627087cad [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
Cong Wang88d08312019-03-22 16:26:19 -07001502 if (!xfrm_id_proto_valid(ut[i].id.proto))
Cong Wang85552882017-11-27 11:15:16 -08001503 return -EINVAL;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001504 }
1505
1506 return 0;
1507}
1508
Thomas Graf5424f322007-08-22 14:01:33 -07001509static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Thomas Graf5424f322007-08-22 14:01:33 -07001511 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 if (!rt) {
1514 pol->xfrm_nr = 0;
1515 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001516 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1517 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001518 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001520 err = validate_tmpl(nr, utmpl, pol->family);
1521 if (err)
1522 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Thomas Graf5424f322007-08-22 14:01:33 -07001524 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526 return 0;
1527}
1528
Thomas Graf5424f322007-08-22 14:01:33 -07001529static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001530{
Thomas Graf5424f322007-08-22 14:01:33 -07001531 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001532 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001533 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001534 int err;
1535
1536 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001537 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001538 type = upt->type;
1539 }
1540
1541 err = verify_policy_type(type);
1542 if (err)
1543 return err;
1544
1545 *tp = type;
1546 return 0;
1547}
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1550{
1551 xp->priority = p->priority;
1552 xp->index = p->index;
1553 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1554 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1555 xp->action = p->action;
1556 xp->flags = p->flags;
1557 xp->family = p->sel.family;
1558 /* XXX xp->share = p->share; */
1559}
1560
1561static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1562{
Mathias Krause7b789832012-09-19 11:33:40 +00001563 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1565 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1566 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1567 p->priority = xp->priority;
1568 p->index = xp->index;
1569 p->sel.family = xp->family;
1570 p->dir = dir;
1571 p->action = xp->action;
1572 p->flags = xp->flags;
1573 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1574}
1575
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001576static 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 -07001577{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001578 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 int err;
1580
1581 if (!xp) {
1582 *errp = -ENOMEM;
1583 return NULL;
1584 }
1585
1586 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001587
Thomas Graf35a7aa02007-08-22 14:00:40 -07001588 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001589 if (err)
1590 goto error;
1591
Thomas Graf35a7aa02007-08-22 14:00:40 -07001592 if (!(err = copy_from_user_tmpl(xp, attrs)))
1593 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001594 if (err)
1595 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001597 xfrm_mark_get(attrs, &xp->mark);
1598
Steffen Klasserta80f5602018-06-12 14:07:07 +02001599 if (attrs[XFRMA_IF_ID])
1600 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001603 error:
1604 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001605 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001606 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001607 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
Christoph Hellwig22e70052007-01-02 15:22:30 -08001610static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001611 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001613 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001614 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001616 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 int err;
1618 int excl;
1619
1620 err = verify_newpolicy_info(p);
1621 if (err)
1622 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001623 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001624 if (err)
1625 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001627 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (!xp)
1629 return err;
1630
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001631 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001632 * Aha! this is anti-netlink really i.e more pfkey derived
1633 * in netlink excl is a flag and you wouldnt need
1634 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1636 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001637 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001640 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 kfree(xp);
1642 return err;
1643 }
1644
Herbert Xuf60f6b82005-06-18 22:44:37 -07001645 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001646 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001647 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001648 km_policy_notify(xp, p->dir, &c);
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 xfrm_pol_put(xp);
1651
1652 return 0;
1653}
1654
1655static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1656{
1657 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1658 int i;
1659
1660 if (xp->xfrm_nr == 0)
1661 return 0;
1662
1663 for (i = 0; i < xp->xfrm_nr; i++) {
1664 struct xfrm_user_tmpl *up = &vec[i];
1665 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1666
Mathias Krause1f868402012-09-19 11:33:41 +00001667 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001669 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1671 up->reqid = kp->reqid;
1672 up->mode = kp->mode;
1673 up->share = kp->share;
1674 up->optional = kp->optional;
1675 up->aalgos = kp->aalgos;
1676 up->ealgos = kp->ealgos;
1677 up->calgos = kp->calgos;
1678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Thomas Grafc0144be2007-08-22 13:55:43 -07001680 return nla_put(skb, XFRMA_TMPL,
1681 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001682}
1683
Serge Hallyn0d681622006-07-24 23:30:44 -07001684static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1685{
1686 if (x->security) {
1687 return copy_sec_ctx(x->security, skb);
1688 }
1689 return 0;
1690}
1691
1692static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1693{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001694 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001695 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001696 return 0;
1697}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001698static inline size_t userpolicy_type_attrsize(void)
1699{
1700#ifdef CONFIG_XFRM_SUB_POLICY
1701 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1702#else
1703 return 0;
1704#endif
1705}
Serge Hallyn0d681622006-07-24 23:30:44 -07001706
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001707#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001708static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001709{
Eric Dumazet2038a9e2018-06-18 21:35:07 -07001710 struct xfrm_userpolicy_type upt;
1711
1712 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1713 memset(&upt, 0, sizeof(upt));
1714 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001715
Thomas Grafc0144be2007-08-22 13:55:43 -07001716 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001717}
1718
1719#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001720static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001721{
1722 return 0;
1723}
1724#endif
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1727{
1728 struct xfrm_dump_info *sp = ptr;
1729 struct xfrm_userpolicy_info *p;
1730 struct sk_buff *in_skb = sp->in_skb;
1731 struct sk_buff *skb = sp->out_skb;
1732 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001733 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Eric W. Biederman15e47302012-09-07 20:12:54 +00001735 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001736 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1737 if (nlh == NULL)
1738 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Thomas Graf7b67c852007-08-22 13:53:52 -07001740 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001742 err = copy_to_user_tmpl(xp, skb);
1743 if (!err)
1744 err = copy_to_user_sec_ctx(xp, skb);
1745 if (!err)
1746 err = copy_to_user_policy_type(xp->type, skb);
1747 if (!err)
1748 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001749 if (!err)
1750 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001751 if (err) {
1752 nlmsg_cancel(skb, nlh);
1753 return err;
1754 }
Thomas Graf98250692007-08-22 12:47:26 -07001755 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
Timo Teras4c563f72008-02-28 21:31:08 -08001759static int xfrm_dump_policy_done(struct netlink_callback *cb)
1760{
Herbert Xu543aabb2017-10-19 20:51:10 +08001761 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001762 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001763
Fan Du283bc9f2013-11-07 17:47:50 +08001764 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001765 return 0;
1766}
1767
Herbert Xu543aabb2017-10-19 20:51:10 +08001768static int xfrm_dump_policy_start(struct netlink_callback *cb)
1769{
1770 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1771
1772 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1773
1774 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1775 return 0;
1776}
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1779{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001780 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001781 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct xfrm_dump_info info;
1783
1784 info.in_skb = cb->skb;
1785 info.out_skb = skb;
1786 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1787 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001788
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001789 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 return skb->len;
1792}
1793
1794static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1795 struct xfrm_policy *xp,
1796 int dir, u32 seq)
1797{
1798 struct xfrm_dump_info info;
1799 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001800 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Thomas Graf7deb2262007-08-22 13:57:39 -07001802 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (!skb)
1804 return ERR_PTR(-ENOMEM);
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 info.in_skb = in_skb;
1807 info.out_skb = skb;
1808 info.nlmsg_seq = seq;
1809 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Mathias Krausec2546372012-09-14 09:58:32 +00001811 err = dump_one_policy(xp, dir, 0, &info);
1812 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001814 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816
1817 return skb;
1818}
1819
Christoph Hellwig22e70052007-01-02 15:22:30 -08001820static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001821 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001823 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 struct xfrm_policy *xp;
1825 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001826 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001828 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001830 struct xfrm_mark m;
1831 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02001832 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Thomas Graf7b67c852007-08-22 13:53:52 -07001834 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1836
Thomas Graf35a7aa02007-08-22 14:00:40 -07001837 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001838 if (err)
1839 return err;
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 err = verify_policy_dir(p->dir);
1842 if (err)
1843 return err;
1844
Steffen Klasserta80f5602018-06-12 14:07:07 +02001845 if (attrs[XFRMA_IF_ID])
1846 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02001849 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001850 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001851 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001852 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001853
Thomas Graf35a7aa02007-08-22 14:00:40 -07001854 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001855 if (err)
1856 return err;
1857
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001858 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001859 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001860 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001861
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001862 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001863 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001864 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001865 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02001866 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001867 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001868 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (xp == NULL)
1871 return -ENOENT;
1872
1873 if (!delete) {
1874 struct sk_buff *resp_skb;
1875
1876 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1877 if (IS_ERR(resp_skb)) {
1878 err = PTR_ERR(resp_skb);
1879 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001880 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001881 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001883 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001884 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001885
1886 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001887 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001888
Herbert Xue7443892005-06-18 22:44:18 -07001889 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001890 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001891 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001892 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001893 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001896out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001897 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001898 if (delete && err == 0)
1899 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return err;
1901}
1902
Christoph Hellwig22e70052007-01-02 15:22:30 -08001903static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001904 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001906 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001907 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001908 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001909 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Tetsuo Handa2e710292014-04-22 21:48:30 +09001911 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001912 if (err) {
1913 if (err == -ESRCH) /* empty table */
1914 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001915 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001916 }
Herbert Xubf088672005-06-18 22:44:00 -07001917 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001918 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001919 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001920 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001921 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001922 km_state_notify(NULL, &c);
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 0;
1925}
1926
Steffen Klassertd8647b72011-03-08 00:10:27 +00001927static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001928{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001929 size_t replay_size = x->replay_esn ?
1930 xfrm_replay_state_esn_len(x->replay_esn) :
1931 sizeof(struct xfrm_replay_state);
1932
Thomas Graf7deb2262007-08-22 13:57:39 -07001933 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001934 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001935 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001936 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001937 + nla_total_size(4) /* XFRM_AE_RTHR */
1938 + nla_total_size(4); /* XFRM_AE_ETHR */
1939}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001940
David S. Miller214e0052011-02-24 00:02:38 -05001941static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001942{
1943 struct xfrm_aevent_id *id;
1944 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001945 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001946
Eric W. Biederman15e47302012-09-07 20:12:54 +00001947 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001948 if (nlh == NULL)
1949 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001950
Thomas Graf7b67c852007-08-22 13:53:52 -07001951 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001952 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001953 id->sa_id.spi = x->id.spi;
1954 id->sa_id.family = x->props.family;
1955 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001956 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001957 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001958 id->flags = c->data.aevent;
1959
David S. Millerd0fde792012-03-29 04:02:26 -04001960 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001961 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1962 xfrm_replay_state_esn_len(x->replay_esn),
1963 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001964 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001965 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1966 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001967 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001968 if (err)
1969 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001970 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1971 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001972 if (err)
1973 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001974
David S. Miller1d1e34d2012-06-27 21:57:03 -07001975 if (id->flags & XFRM_AE_RTHR) {
1976 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1977 if (err)
1978 goto out_cancel;
1979 }
1980 if (id->flags & XFRM_AE_ETHR) {
1981 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1982 x->replay_maxage * 10 / HZ);
1983 if (err)
1984 goto out_cancel;
1985 }
1986 err = xfrm_mark_put(skb, &x->mark);
1987 if (err)
1988 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001989
Steffen Klasserta80f5602018-06-12 14:07:07 +02001990 err = xfrm_if_id_put(skb, x->if_id);
1991 if (err)
1992 goto out_cancel;
1993
Johannes Berg053c0952015-01-16 22:09:00 +01001994 nlmsg_end(skb, nlh);
1995 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001996
David S. Miller1d1e34d2012-06-27 21:57:03 -07001997out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001998 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001999 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002000}
2001
Christoph Hellwig22e70052007-01-02 15:22:30 -08002002static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002003 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002004{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002005 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002006 struct xfrm_state *x;
2007 struct sk_buff *r_skb;
2008 int err;
2009 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002010 u32 mark;
2011 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002012 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002013 struct xfrm_usersa_id *id = &p->sa_id;
2014
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002015 mark = xfrm_mark_get(attrs, &m);
2016
2017 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002018 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002019 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002020
2021 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2022 if (r_skb == NULL) {
2023 xfrm_state_put(x);
2024 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002025 }
2026
2027 /*
2028 * XXX: is this lock really needed - none of the other
2029 * gets lock (the concern is things getting updated
2030 * while we are still reading) - jhs
2031 */
2032 spin_lock_bh(&x->lock);
2033 c.data.aevent = p->flags;
2034 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002035 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002036
2037 if (build_aevent(r_skb, x, &c) < 0)
2038 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00002039 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002040 spin_unlock_bh(&x->lock);
2041 xfrm_state_put(x);
2042 return err;
2043}
2044
Christoph Hellwig22e70052007-01-02 15:22:30 -08002045static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002046 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002047{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002048 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002049 struct xfrm_state *x;
2050 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002051 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002052 u32 mark = 0;
2053 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002054 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002055 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002056 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002057 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002058 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2059 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002060
Michael Rossberg4e077232015-09-29 11:25:08 +02002061 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002062 return err;
2063
2064 /* pedantic mode - thou shalt sayeth replaceth */
2065 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2066 return err;
2067
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002068 mark = xfrm_mark_get(attrs, &m);
2069
2070 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 -08002071 if (x == NULL)
2072 return -ESRCH;
2073
2074 if (x->km.state != XFRM_STATE_VALID)
2075 goto out;
2076
Steffen Klassert4479ff72013-09-09 09:39:01 +02002077 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002078 if (err)
2079 goto out;
2080
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002081 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002082 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002083 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002084
2085 c.event = nlh->nlmsg_type;
2086 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002087 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002088 c.data.aevent = XFRM_AE_CU;
2089 km_state_notify(x, &c);
2090 err = 0;
2091out:
2092 xfrm_state_put(x);
2093 return err;
2094}
2095
Christoph Hellwig22e70052007-01-02 15:22:30 -08002096static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002097 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002099 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002100 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002101 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002102 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002103
Thomas Graf35a7aa02007-08-22 14:00:40 -07002104 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002105 if (err)
2106 return err;
2107
Tetsuo Handa2e710292014-04-22 21:48:30 +09002108 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002109 if (err) {
2110 if (err == -ESRCH) /* empty table */
2111 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002112 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002113 }
2114
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002115 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002116 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002117 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002118 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002119 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002120 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return 0;
2122}
2123
Christoph Hellwig22e70052007-01-02 15:22:30 -08002124static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002125 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002126{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002127 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002128 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002129 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002130 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002131 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002132 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002133 struct xfrm_mark m;
2134 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002135 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002136
Thomas Graf35a7aa02007-08-22 14:00:40 -07002137 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002138 if (err)
2139 return err;
2140
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002141 err = verify_policy_dir(p->dir);
2142 if (err)
2143 return err;
2144
Steffen Klasserta80f5602018-06-12 14:07:07 +02002145 if (attrs[XFRMA_IF_ID])
2146 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2147
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002148 if (p->index)
Steffen Klasserta80f5602018-06-12 14:07:07 +02002149 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002150 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002151 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002152 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002153
Thomas Graf35a7aa02007-08-22 14:00:40 -07002154 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002155 if (err)
2156 return err;
2157
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002158 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002159 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002160 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002161
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002162 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002163 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002164 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002165 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002166 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002167 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002168 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002169 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002170 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002171 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002172
Timo Teräsea2dea92010-03-31 00:17:05 +00002173 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002174 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002175
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 err = 0;
2177 if (up->hard) {
2178 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002179 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002180 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002181 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002182
2183out:
2184 xfrm_pol_put(xp);
2185 return err;
2186}
2187
Christoph Hellwig22e70052007-01-02 15:22:30 -08002188static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002189 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002190{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002191 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002192 struct xfrm_state *x;
2193 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002194 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002195 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002196 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002197 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002198
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002199 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 -08002200
David S. Miller3a765aa2007-02-26 14:52:21 -08002201 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002202 if (x == NULL)
2203 return err;
2204
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002205 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002206 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002207 if (x->km.state != XFRM_STATE_VALID)
2208 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002209 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002210
Joy Latten161a09e2006-11-27 13:11:54 -06002211 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002212 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002213 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002214 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002215 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002216out:
2217 spin_unlock_bh(&x->lock);
2218 xfrm_state_put(x);
2219 return err;
2220}
2221
Christoph Hellwig22e70052007-01-02 15:22:30 -08002222static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002223 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002224{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002225 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002226 struct xfrm_policy *xp;
2227 struct xfrm_user_tmpl *ut;
2228 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002229 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002230 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002231
Thomas Graf7b67c852007-08-22 13:53:52 -07002232 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002233 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002234 int err = -ENOMEM;
2235
2236 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002237 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002238
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002239 xfrm_mark_get(attrs, &mark);
2240
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002241 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002242 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002243 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002244
2245 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002246 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002247 if (!xp)
2248 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002249
2250 memcpy(&x->id, &ua->id, sizeof(ua->id));
2251 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2252 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002253 xp->mark.m = x->mark.m = mark.m;
2254 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002255 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002256 /* extract the templates and for each call km_key */
2257 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2258 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2259 memcpy(&x->id, &t->id, sizeof(x->id));
2260 x->props.mode = t->mode;
2261 x->props.reqid = t->reqid;
2262 x->props.family = ut->family;
2263 t->aalgos = ua->aalgos;
2264 t->ealgos = ua->ealgos;
2265 t->calgos = ua->calgos;
2266 err = km_query(x, t, xp);
2267
2268 }
2269
2270 kfree(x);
2271 kfree(xp);
2272
2273 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002274
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002275free_state:
2276 kfree(x);
2277nomem:
2278 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002279}
2280
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002281#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002282static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002283 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002284 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002285{
Thomas Graf5424f322007-08-22 14:01:33 -07002286 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287 struct xfrm_user_migrate *um;
2288 int i, num_migrate;
2289
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002290 if (k != NULL) {
2291 struct xfrm_user_kmaddress *uk;
2292
2293 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2294 memcpy(&k->local, &uk->local, sizeof(k->local));
2295 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2296 k->family = uk->family;
2297 k->reserved = uk->reserved;
2298 }
2299
Thomas Graf5424f322007-08-22 14:01:33 -07002300 um = nla_data(rt);
2301 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002302
2303 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2304 return -EINVAL;
2305
2306 for (i = 0; i < num_migrate; i++, um++, ma++) {
2307 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2308 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2309 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2310 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2311
2312 ma->proto = um->proto;
2313 ma->mode = um->mode;
2314 ma->reqid = um->reqid;
2315
2316 ma->old_family = um->old_family;
2317 ma->new_family = um->new_family;
2318 }
2319
2320 *num = i;
2321 return 0;
2322}
2323
2324static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002325 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002326{
Thomas Graf7b67c852007-08-22 13:53:52 -07002327 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002329 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002330 u8 type;
2331 int err;
2332 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002333 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002334
Thomas Graf35a7aa02007-08-22 14:00:40 -07002335 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002336 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002337
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002338 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2339
Thomas Graf5424f322007-08-22 14:01:33 -07002340 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002341 if (err)
2342 return err;
2343
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002344 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002345 if (err)
2346 return err;
2347
2348 if (!n)
2349 return 0;
2350
Fan Du8d549c42013-11-07 17:47:49 +08002351 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002352
2353 return 0;
2354}
2355#else
2356static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002357 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002358{
2359 return -ENOPROTOOPT;
2360}
2361#endif
2362
2363#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002364static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002365{
2366 struct xfrm_user_migrate um;
2367
2368 memset(&um, 0, sizeof(um));
2369 um.proto = m->proto;
2370 um.mode = m->mode;
2371 um.reqid = m->reqid;
2372 um.old_family = m->old_family;
2373 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2374 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2375 um.new_family = m->new_family;
2376 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2377 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2378
Thomas Grafc0144be2007-08-22 13:55:43 -07002379 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002380}
2381
David S. Miller183cad12011-02-24 00:28:01 -05002382static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002383{
2384 struct xfrm_user_kmaddress uk;
2385
2386 memset(&uk, 0, sizeof(uk));
2387 uk.family = k->family;
2388 uk.reserved = k->reserved;
2389 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002390 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002391
2392 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2393}
2394
2395static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002396{
2397 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002398 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2399 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2400 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002401}
2402
David S. Miller183cad12011-02-24 00:28:01 -05002403static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2404 int num_migrate, const struct xfrm_kmaddress *k,
2405 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002406{
David S. Miller183cad12011-02-24 00:28:01 -05002407 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002408 struct xfrm_userpolicy_id *pol_id;
2409 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002410 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002411
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002412 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2413 if (nlh == NULL)
2414 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002415
Thomas Graf7b67c852007-08-22 13:53:52 -07002416 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002417 /* copy data from selector, dir, and type to the pol_id */
2418 memset(pol_id, 0, sizeof(*pol_id));
2419 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2420 pol_id->dir = dir;
2421
David S. Miller1d1e34d2012-06-27 21:57:03 -07002422 if (k != NULL) {
2423 err = copy_to_user_kmaddress(k, skb);
2424 if (err)
2425 goto out_cancel;
2426 }
2427 err = copy_to_user_policy_type(type, skb);
2428 if (err)
2429 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002430 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002431 err = copy_to_user_migrate(mp, skb);
2432 if (err)
2433 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002434 }
2435
Johannes Berg053c0952015-01-16 22:09:00 +01002436 nlmsg_end(skb, nlh);
2437 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002438
2439out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002440 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002441 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002442}
2443
David S. Miller183cad12011-02-24 00:28:01 -05002444static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2445 const struct xfrm_migrate *m, int num_migrate,
2446 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002447{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002448 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002449 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002450
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002451 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002452 if (skb == NULL)
2453 return -ENOMEM;
2454
2455 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002456 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002457 BUG();
2458
Michal Kubecek21ee5432014-06-03 10:26:06 +02002459 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002460}
2461#else
David S. Miller183cad12011-02-24 00:28:01 -05002462static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2463 const struct xfrm_migrate *m, int num_migrate,
2464 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002465{
2466 return -ENOPROTOOPT;
2467}
2468#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002469
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002470#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002471
2472static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002473 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002474 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2475 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2476 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2477 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2478 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2479 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002480 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002481 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002482 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002483 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002484 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002485 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002486 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002487 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2488 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002489 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002490 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002491 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002492 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002493 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494};
2495
Thomas Graf492b5582005-05-03 14:26:40 -07002496#undef XMSGSIZE
2497
Thomas Grafcf5cb792007-08-22 13:59:04 -07002498static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002499 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2500 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2501 [XFRMA_LASTUSED] = { .type = NLA_U64},
2502 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002503 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002504 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2505 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2506 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2507 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2508 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2509 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2510 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2511 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2512 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2513 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2514 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2515 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2516 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2517 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002518 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002519 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002520 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002521 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002522 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002523 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002524 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassert78f10c52018-06-12 12:44:26 +02002525 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2526 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klasserta80f5602018-06-12 14:07:07 +02002527 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002528};
2529
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002530static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2531 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2532 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2533};
2534
Mathias Krause05600a72013-02-24 14:10:27 +01002535static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002536 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002537 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002539 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002540 const struct nla_policy *nla_pol;
2541 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002542} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2543 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2544 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2545 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002546 .dump = xfrm_dump_sa,
2547 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002548 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2549 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2550 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002551 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002552 .dump = xfrm_dump_policy,
2553 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002554 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002555 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002556 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002557 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2558 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002559 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002560 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2561 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002562 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2563 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002564 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002565 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002566 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2567 .nla_pol = xfrma_spd_policy,
2568 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002569 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570};
2571
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002572static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002574 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002575 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002576 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002577 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002581 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
2583 type -= XFRM_MSG_BASE;
2584 link = &xfrm_dispatch[type];
2585
2586 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002587 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002588 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
Thomas Graf492b5582005-05-03 14:26:40 -07002590 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2591 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002592 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002594 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002596 {
2597 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002598 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002599 .dump = link->dump,
2600 .done = link->done,
2601 };
2602 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 }
2605
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002606 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2607 link->nla_max ? : XFRMA_MAX,
2608 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002609 if (err < 0)
2610 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002613 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Thomas Graf5424f322007-08-22 14:01:33 -07002615 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002618static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
Fan Du283bc9f2013-11-07 17:47:50 +08002620 struct net *net = sock_net(skb->sk);
2621
2622 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002623 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002624 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
Thomas Graf7deb2262007-08-22 13:57:39 -07002627static inline size_t xfrm_expire_msgsize(void)
2628{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002629 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2630 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002631}
2632
David S. Miller214e0052011-02-24 00:02:38 -05002633static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
2635 struct xfrm_user_expire *ue;
2636 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002637 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Eric W. Biederman15e47302012-09-07 20:12:54 +00002639 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002640 if (nlh == NULL)
2641 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
Thomas Graf7b67c852007-08-22 13:53:52 -07002643 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002645 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
David S. Miller1d1e34d2012-06-27 21:57:03 -07002647 err = xfrm_mark_put(skb, &x->mark);
2648 if (err)
2649 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002650
Steffen Klasserta80f5602018-06-12 14:07:07 +02002651 err = xfrm_if_id_put(skb, x->if_id);
2652 if (err)
2653 return err;
2654
Johannes Berg053c0952015-01-16 22:09:00 +01002655 nlmsg_end(skb, nlh);
2656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657}
2658
David S. Miller214e0052011-02-24 00:02:38 -05002659static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002661 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 struct sk_buff *skb;
2663
Thomas Graf7deb2262007-08-22 13:57:39 -07002664 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 if (skb == NULL)
2666 return -ENOMEM;
2667
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002668 if (build_expire(skb, x, c) < 0) {
2669 kfree_skb(skb);
2670 return -EMSGSIZE;
2671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Michal Kubecek21ee5432014-06-03 10:26:06 +02002673 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
David S. Miller214e0052011-02-24 00:02:38 -05002676static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002677{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002678 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002679 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002680
Steffen Klassertd8647b72011-03-08 00:10:27 +00002681 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002682 if (skb == NULL)
2683 return -ENOMEM;
2684
2685 if (build_aevent(skb, x, c) < 0)
2686 BUG();
2687
Michal Kubecek21ee5432014-06-03 10:26:06 +02002688 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002689}
2690
David S. Miller214e0052011-02-24 00:02:38 -05002691static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002693 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002694 struct xfrm_usersa_flush *p;
2695 struct nlmsghdr *nlh;
2696 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002697 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002698
Thomas Graf7deb2262007-08-22 13:57:39 -07002699 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002700 if (skb == NULL)
2701 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002702
Eric W. Biederman15e47302012-09-07 20:12:54 +00002703 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002704 if (nlh == NULL) {
2705 kfree_skb(skb);
2706 return -EMSGSIZE;
2707 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002708
Thomas Graf7b67c852007-08-22 13:53:52 -07002709 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002710 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002711
Thomas Graf98250692007-08-22 12:47:26 -07002712 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002713
Michal Kubecek21ee5432014-06-03 10:26:06 +02002714 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002715}
2716
Thomas Graf7deb2262007-08-22 13:57:39 -07002717static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002718{
Thomas Graf7deb2262007-08-22 13:57:39 -07002719 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002720 if (x->aead)
2721 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002722 if (x->aalg) {
2723 l += nla_total_size(sizeof(struct xfrm_algo) +
2724 (x->aalg->alg_key_len + 7) / 8);
2725 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2726 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002727 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002728 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002729 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002730 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002731 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002732 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002733 if (x->tfcpad)
2734 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002735 if (x->replay_esn)
2736 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002737 else
2738 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002739 if (x->security)
2740 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2741 x->security->ctx_len);
2742 if (x->coaddr)
2743 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002744 if (x->props.extra_flags)
2745 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassert78f10c52018-06-12 12:44:26 +02002746 if (x->props.smark.v | x->props.smark.m) {
2747 l += nla_total_size(sizeof(x->props.smark.v));
2748 l += nla_total_size(sizeof(x->props.smark.m));
2749 }
Steffen Klasserta80f5602018-06-12 14:07:07 +02002750 if (x->if_id)
2751 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002752
Herbert Xud26f3982007-11-13 21:47:08 -08002753 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002754 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002755
2756 return l;
2757}
2758
David S. Miller214e0052011-02-24 00:02:38 -05002759static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002760{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002761 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002763 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764 struct nlmsghdr *nlh;
2765 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002767 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002768
2769 headlen = sizeof(*p);
2770 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002771 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002772 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002773 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002774 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002775 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002776
Thomas Graf7deb2262007-08-22 13:57:39 -07002777 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002778 if (skb == NULL)
2779 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002780
Eric W. Biederman15e47302012-09-07 20:12:54 +00002781 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002782 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002783 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002784 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002785
Thomas Graf7b67c852007-08-22 13:53:52 -07002786 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002787 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002788 struct nlattr *attr;
2789
Thomas Graf7b67c852007-08-22 13:53:52 -07002790 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002791 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2792 id->spi = x->id.spi;
2793 id->family = x->props.family;
2794 id->proto = x->id.proto;
2795
Thomas Grafc0144be2007-08-22 13:55:43 -07002796 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002797 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002798 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002799 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002800
2801 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002802 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002803 err = copy_to_user_state_extra(x, p, skb);
2804 if (err)
2805 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806
Thomas Graf98250692007-08-22 12:47:26 -07002807 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808
Michal Kubecek21ee5432014-06-03 10:26:06 +02002809 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002810
David S. Miller1d1e34d2012-06-27 21:57:03 -07002811out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002812 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002813 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002814}
2815
David S. Miller214e0052011-02-24 00:02:38 -05002816static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817{
2818
2819 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002820 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002821 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002822 case XFRM_MSG_NEWAE:
2823 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002824 case XFRM_MSG_DELSA:
2825 case XFRM_MSG_UPDSA:
2826 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002828 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002829 return xfrm_notify_sa_flush(c);
2830 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002831 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2832 c->event);
2833 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002834 }
2835
2836 return 0;
2837
2838}
2839
Thomas Graf7deb2262007-08-22 13:57:39 -07002840static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2841 struct xfrm_policy *xp)
2842{
2843 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2844 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002845 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002846 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2847 + userpolicy_type_attrsize();
2848}
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002851 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002853 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 struct xfrm_user_acquire *ua;
2855 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002856 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002858 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2859 if (nlh == NULL)
2860 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Thomas Graf7b67c852007-08-22 13:53:52 -07002862 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 memcpy(&ua->id, &x->id, sizeof(ua->id));
2864 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2865 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002866 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 ua->aalgos = xt->aalgos;
2868 ua->ealgos = xt->ealgos;
2869 ua->calgos = xt->calgos;
2870 ua->seq = x->km.seq = seq;
2871
David S. Miller1d1e34d2012-06-27 21:57:03 -07002872 err = copy_to_user_tmpl(xp, skb);
2873 if (!err)
2874 err = copy_to_user_state_sec_ctx(x, skb);
2875 if (!err)
2876 err = copy_to_user_policy_type(xp->type, skb);
2877 if (!err)
2878 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002879 if (!err)
2880 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002881 if (err) {
2882 nlmsg_cancel(skb, nlh);
2883 return err;
2884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Johannes Berg053c0952015-01-16 22:09:00 +01002886 nlmsg_end(skb, nlh);
2887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
2890static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002891 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002893 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Thomas Graf7deb2262007-08-22 13:57:39 -07002896 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 if (skb == NULL)
2898 return -ENOMEM;
2899
Fan Du65e07362012-08-15 10:13:47 +08002900 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 BUG();
2902
Michal Kubecek21ee5432014-06-03 10:26:06 +02002903 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904}
2905
2906/* User gives us xfrm_user_policy_info followed by an array of 0
2907 * or more templates.
2908 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002909static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 u8 *data, int len, int *dir)
2911{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002912 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2914 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2915 struct xfrm_policy *xp;
2916 int nr;
2917
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002918 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 case AF_INET:
2920 if (opt != IP_XFRM_POLICY) {
2921 *dir = -EOPNOTSUPP;
2922 return NULL;
2923 }
2924 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002925#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 case AF_INET6:
2927 if (opt != IPV6_XFRM_POLICY) {
2928 *dir = -EOPNOTSUPP;
2929 return NULL;
2930 }
2931 break;
2932#endif
2933 default:
2934 *dir = -EINVAL;
2935 return NULL;
2936 }
2937
2938 *dir = -EINVAL;
2939
2940 if (len < sizeof(*p) ||
2941 verify_newpolicy_info(p))
2942 return NULL;
2943
2944 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002945 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return NULL;
2947
Herbert Xua4f1bac2005-07-26 15:43:17 -07002948 if (p->dir > XFRM_POLICY_OUT)
2949 return NULL;
2950
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002951 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (xp == NULL) {
2953 *dir = -ENOBUFS;
2954 return NULL;
2955 }
2956
2957 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002958 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 copy_templates(xp, ut, nr);
2960
2961 *dir = p->dir;
2962
2963 return xp;
2964}
2965
Thomas Graf7deb2262007-08-22 13:57:39 -07002966static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2967{
2968 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2969 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2970 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002971 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002972 + userpolicy_type_attrsize();
2973}
2974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002976 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
2978 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002979 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002980 struct nlmsghdr *nlh;
2981 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Eric W. Biederman15e47302012-09-07 20:12:54 +00002983 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002984 if (nlh == NULL)
2985 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Thomas Graf7b67c852007-08-22 13:53:52 -07002987 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002989 err = copy_to_user_tmpl(xp, skb);
2990 if (!err)
2991 err = copy_to_user_sec_ctx(xp, skb);
2992 if (!err)
2993 err = copy_to_user_policy_type(xp->type, skb);
2994 if (!err)
2995 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02002996 if (!err)
2997 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002998 if (err) {
2999 nlmsg_cancel(skb, nlh);
3000 return err;
3001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 upe->hard = !!hard;
3003
Johannes Berg053c0952015-01-16 22:09:00 +01003004 nlmsg_end(skb, nlh);
3005 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
David S. Miller214e0052011-02-24 00:02:38 -05003008static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003010 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Thomas Graf7deb2262007-08-22 13:57:39 -07003013 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 if (skb == NULL)
3015 return -ENOMEM;
3016
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003017 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 BUG();
3019
Michal Kubecek21ee5432014-06-03 10:26:06 +02003020 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
3022
David S. Miller214e0052011-02-24 00:02:38 -05003023static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003024{
David S. Miller1d1e34d2012-06-27 21:57:03 -07003025 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003026 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003027 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003028 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003029 struct nlmsghdr *nlh;
3030 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003031 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003032
3033 headlen = sizeof(*p);
3034 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003035 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003036 headlen = sizeof(*id);
3037 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003038 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003039 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003040 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003041
Thomas Graf7deb2262007-08-22 13:57:39 -07003042 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003043 if (skb == NULL)
3044 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003045
Eric W. Biederman15e47302012-09-07 20:12:54 +00003046 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003047 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003048 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003049 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003050
Thomas Graf7b67c852007-08-22 13:53:52 -07003051 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003052 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003053 struct nlattr *attr;
3054
Thomas Graf7b67c852007-08-22 13:53:52 -07003055 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003056 memset(id, 0, sizeof(*id));
3057 id->dir = dir;
3058 if (c->data.byid)
3059 id->index = xp->index;
3060 else
3061 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3062
Thomas Grafc0144be2007-08-22 13:55:43 -07003063 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003064 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003065 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003066 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003067
3068 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003069 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003070
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003071 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003072 err = copy_to_user_tmpl(xp, skb);
3073 if (!err)
3074 err = copy_to_user_policy_type(xp->type, skb);
3075 if (!err)
3076 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klasserta80f5602018-06-12 14:07:07 +02003077 if (!err)
3078 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003079 if (err)
3080 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003081
Thomas Graf98250692007-08-22 12:47:26 -07003082 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003083
Michal Kubecek21ee5432014-06-03 10:26:06 +02003084 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003085
David S. Miller1d1e34d2012-06-27 21:57:03 -07003086out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003087 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003088 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003089}
3090
David S. Miller214e0052011-02-24 00:02:38 -05003091static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003092{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003093 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003094 struct nlmsghdr *nlh;
3095 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003096 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003097
Thomas Graf7deb2262007-08-22 13:57:39 -07003098 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003099 if (skb == NULL)
3100 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003101
Eric W. Biederman15e47302012-09-07 20:12:54 +00003102 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003103 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003104 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003105 goto out_free_skb;
3106 err = copy_to_user_policy_type(c->data.type, skb);
3107 if (err)
3108 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003109
Thomas Graf98250692007-08-22 12:47:26 -07003110 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003111
Michal Kubecek21ee5432014-06-03 10:26:06 +02003112 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003113
David S. Miller1d1e34d2012-06-27 21:57:03 -07003114out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003115 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003116 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003117}
3118
David S. Miller214e0052011-02-24 00:02:38 -05003119static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003120{
3121
3122 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003123 case XFRM_MSG_NEWPOLICY:
3124 case XFRM_MSG_UPDPOLICY:
3125 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003126 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003127 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003128 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003129 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003130 return xfrm_exp_policy_notify(xp, dir, c);
3131 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003132 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3133 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003134 }
3135
3136 return 0;
3137
3138}
3139
Thomas Graf7deb2262007-08-22 13:57:39 -07003140static inline size_t xfrm_report_msgsize(void)
3141{
3142 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3143}
3144
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003145static int build_report(struct sk_buff *skb, u8 proto,
3146 struct xfrm_selector *sel, xfrm_address_t *addr)
3147{
3148 struct xfrm_user_report *ur;
3149 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003150
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003151 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3152 if (nlh == NULL)
3153 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003154
Thomas Graf7b67c852007-08-22 13:53:52 -07003155 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003156 ur->proto = proto;
3157 memcpy(&ur->sel, sel, sizeof(ur->sel));
3158
David S. Miller1d1e34d2012-06-27 21:57:03 -07003159 if (addr) {
3160 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3161 if (err) {
3162 nlmsg_cancel(skb, nlh);
3163 return err;
3164 }
3165 }
Johannes Berg053c0952015-01-16 22:09:00 +01003166 nlmsg_end(skb, nlh);
3167 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003168}
3169
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003170static int xfrm_send_report(struct net *net, u8 proto,
3171 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003172{
3173 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003174
Thomas Graf7deb2262007-08-22 13:57:39 -07003175 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003176 if (skb == NULL)
3177 return -ENOMEM;
3178
3179 if (build_report(skb, proto, sel, addr) < 0)
3180 BUG();
3181
Michal Kubecek21ee5432014-06-03 10:26:06 +02003182 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003183}
3184
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003185static inline size_t xfrm_mapping_msgsize(void)
3186{
3187 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3188}
3189
3190static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3191 xfrm_address_t *new_saddr, __be16 new_sport)
3192{
3193 struct xfrm_user_mapping *um;
3194 struct nlmsghdr *nlh;
3195
3196 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3197 if (nlh == NULL)
3198 return -EMSGSIZE;
3199
3200 um = nlmsg_data(nlh);
3201
3202 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3203 um->id.spi = x->id.spi;
3204 um->id.family = x->props.family;
3205 um->id.proto = x->id.proto;
3206 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3207 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3208 um->new_sport = new_sport;
3209 um->old_sport = x->encap->encap_sport;
3210 um->reqid = x->props.reqid;
3211
Johannes Berg053c0952015-01-16 22:09:00 +01003212 nlmsg_end(skb, nlh);
3213 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003214}
3215
3216static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3217 __be16 sport)
3218{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003219 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003220 struct sk_buff *skb;
3221
3222 if (x->id.proto != IPPROTO_ESP)
3223 return -EINVAL;
3224
3225 if (!x->encap)
3226 return -EINVAL;
3227
3228 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3229 if (skb == NULL)
3230 return -ENOMEM;
3231
3232 if (build_mapping(skb, x, ipaddr, sport) < 0)
3233 BUG();
3234
Michal Kubecek21ee5432014-06-03 10:26:06 +02003235 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003236}
3237
Horia Geanta0f245582014-02-12 16:20:06 +02003238static bool xfrm_is_alive(const struct km_event *c)
3239{
3240 return (bool)xfrm_acquire_is_on(c->net);
3241}
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243static struct xfrm_mgr netlink_mgr = {
3244 .id = "netlink",
3245 .notify = xfrm_send_state_notify,
3246 .acquire = xfrm_send_acquire,
3247 .compile_policy = xfrm_compile_policy,
3248 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003249 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003250 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003251 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003252 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253};
3254
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003255static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256{
Patrick McHardybe336902006-03-20 22:40:54 -08003257 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003258 struct netlink_kernel_cfg cfg = {
3259 .groups = XFRMNLGRP_MAX,
3260 .input = xfrm_netlink_rcv,
3261 };
Patrick McHardybe336902006-03-20 22:40:54 -08003262
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003263 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003264 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003266 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003267 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 return 0;
3269}
3270
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003271static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003272{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003273 struct net *net;
3274 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003275 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003276 synchronize_net();
3277 list_for_each_entry(net, net_exit_list, exit_list)
3278 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003279}
3280
3281static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003282 .init = xfrm_user_net_init,
3283 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003284};
3285
3286static int __init xfrm_user_init(void)
3287{
3288 int rv;
3289
3290 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3291
3292 rv = register_pernet_subsys(&xfrm_user_net_ops);
3293 if (rv < 0)
3294 return rv;
3295 rv = xfrm_register_km(&netlink_mgr);
3296 if (rv < 0)
3297 unregister_pernet_subsys(&xfrm_user_net_ops);
3298 return rv;
3299}
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301static void __exit xfrm_user_exit(void)
3302{
3303 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003304 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
3307module_init(xfrm_user_init);
3308module_exit(xfrm_user_exit);
3309MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003310MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003311