]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - net/xfrm/xfrm_user.c
[IPSEC]: Move common code into xfrm_alloc_spi
[mirror_ubuntu-focal-kernel.git] / net / xfrm / xfrm_user.c
CommitLineData
1da177e4
LT
1/* 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
df71837d 10 *
1da177e4
LT
11 */
12
9409f38a 13#include <linux/crypto.h>
1da177e4
LT
14#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>
1da177e4
LT
22#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>
88fc2c84 28#include <net/netlink.h>
1da177e4 29#include <asm/uaccess.h>
e23c7194
MN
30#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
31#include <linux/in6.h>
32#endif
1da177e4 33
c26445ac
TG
34static inline int alg_len(struct xfrm_algo *alg)
35{
36 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8);
37}
38
5424f32e 39static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
1da177e4 40{
5424f32e 41 struct nlattr *rt = attrs[type];
1da177e4
LT
42 struct xfrm_algo *algp;
43
44 if (!rt)
45 return 0;
46
5424f32e
TG
47 algp = nla_data(rt);
48 if (nla_len(rt) < alg_len(algp))
31c26852
HX
49 return -EINVAL;
50
1da177e4
LT
51 switch (type) {
52 case XFRMA_ALG_AUTH:
53 if (!algp->alg_key_len &&
54 strcmp(algp->alg_name, "digest_null") != 0)
55 return -EINVAL;
56 break;
57
58 case XFRMA_ALG_CRYPT:
59 if (!algp->alg_key_len &&
60 strcmp(algp->alg_name, "cipher_null") != 0)
61 return -EINVAL;
62 break;
63
64 case XFRMA_ALG_COMP:
65 /* Zero length keys are legal. */
66 break;
67
68 default:
69 return -EINVAL;
3ff50b79 70 }
1da177e4
LT
71
72 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
73 return 0;
74}
75
5424f32e 76static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
eb2971b6
MN
77 xfrm_address_t **addrp)
78{
5424f32e 79 struct nlattr *rt = attrs[type];
eb2971b6 80
cf5cb79f 81 if (rt && addrp)
5424f32e 82 *addrp = nla_data(rt);
eb2971b6 83}
df71837d 84
5424f32e 85static inline int verify_sec_ctx_len(struct nlattr **attrs)
df71837d 86{
5424f32e 87 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
df71837d 88 struct xfrm_user_sec_ctx *uctx;
df71837d
TJ
89
90 if (!rt)
91 return 0;
92
5424f32e 93 uctx = nla_data(rt);
cf5cb79f 94 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
df71837d
TJ
95 return -EINVAL;
96
97 return 0;
98}
99
100
1da177e4 101static int verify_newsa_info(struct xfrm_usersa_info *p,
5424f32e 102 struct nlattr **attrs)
1da177e4
LT
103{
104 int err;
105
106 err = -EINVAL;
107 switch (p->family) {
108 case AF_INET:
109 break;
110
111 case AF_INET6:
112#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
113 break;
114#else
115 err = -EAFNOSUPPORT;
116 goto out;
117#endif
118
119 default:
120 goto out;
3ff50b79 121 }
1da177e4
LT
122
123 err = -EINVAL;
124 switch (p->id.proto) {
125 case IPPROTO_AH:
35a7aa08
TG
126 if (!attrs[XFRMA_ALG_AUTH] ||
127 attrs[XFRMA_ALG_CRYPT] ||
128 attrs[XFRMA_ALG_COMP])
1da177e4
LT
129 goto out;
130 break;
131
132 case IPPROTO_ESP:
35a7aa08
TG
133 if ((!attrs[XFRMA_ALG_AUTH] &&
134 !attrs[XFRMA_ALG_CRYPT]) ||
135 attrs[XFRMA_ALG_COMP])
1da177e4
LT
136 goto out;
137 break;
138
139 case IPPROTO_COMP:
35a7aa08
TG
140 if (!attrs[XFRMA_ALG_COMP] ||
141 attrs[XFRMA_ALG_AUTH] ||
142 attrs[XFRMA_ALG_CRYPT])
1da177e4
LT
143 goto out;
144 break;
145
e23c7194
MN
146#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
147 case IPPROTO_DSTOPTS:
148 case IPPROTO_ROUTING:
35a7aa08
TG
149 if (attrs[XFRMA_ALG_COMP] ||
150 attrs[XFRMA_ALG_AUTH] ||
151 attrs[XFRMA_ALG_CRYPT] ||
152 attrs[XFRMA_ENCAP] ||
153 attrs[XFRMA_SEC_CTX] ||
154 !attrs[XFRMA_COADDR])
e23c7194
MN
155 goto out;
156 break;
157#endif
158
1da177e4
LT
159 default:
160 goto out;
3ff50b79 161 }
1da177e4 162
35a7aa08 163 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
1da177e4 164 goto out;
35a7aa08 165 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
1da177e4 166 goto out;
35a7aa08 167 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
1da177e4 168 goto out;
35a7aa08 169 if ((err = verify_sec_ctx_len(attrs)))
df71837d 170 goto out;
1da177e4
LT
171
172 err = -EINVAL;
173 switch (p->mode) {
7e49e6de
MN
174 case XFRM_MODE_TRANSPORT:
175 case XFRM_MODE_TUNNEL:
060f02a3 176 case XFRM_MODE_ROUTEOPTIMIZATION:
0a69452c 177 case XFRM_MODE_BEET:
1da177e4
LT
178 break;
179
180 default:
181 goto out;
3ff50b79 182 }
1da177e4
LT
183
184 err = 0;
185
186out:
187 return err;
188}
189
190static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
191 struct xfrm_algo_desc *(*get_byname)(char *, int),
5424f32e 192 struct nlattr *rta)
1da177e4 193{
1da177e4
LT
194 struct xfrm_algo *p, *ualg;
195 struct xfrm_algo_desc *algo;
196
197 if (!rta)
198 return 0;
199
5424f32e 200 ualg = nla_data(rta);
1da177e4
LT
201
202 algo = get_byname(ualg->alg_name, 1);
203 if (!algo)
204 return -ENOSYS;
205 *props = algo->desc.sadb_alg_id;
206
c26445ac 207 p = kmemdup(ualg, alg_len(ualg), GFP_KERNEL);
1da177e4
LT
208 if (!p)
209 return -ENOMEM;
210
04ff1260 211 strcpy(p->alg_name, algo->name);
1da177e4
LT
212 *algpp = p;
213 return 0;
214}
215
661697f7 216static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
df71837d 217{
df71837d
TJ
218 int len = 0;
219
220 if (xfrm_ctx) {
221 len += sizeof(struct xfrm_user_sec_ctx);
222 len += xfrm_ctx->ctx_len;
223 }
224 return len;
225}
226
1da177e4
LT
227static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
228{
229 memcpy(&x->id, &p->id, sizeof(x->id));
230 memcpy(&x->sel, &p->sel, sizeof(x->sel));
231 memcpy(&x->lft, &p->lft, sizeof(x->lft));
232 x->props.mode = p->mode;
233 x->props.replay_window = p->replay_window;
234 x->props.reqid = p->reqid;
235 x->props.family = p->family;
54489c14 236 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
1da177e4 237 x->props.flags = p->flags;
196b0036
HX
238
239 /*
240 * Set inner address family if the KM left it as zero.
241 * See comment in validate_tmpl.
242 */
243 if (!x->sel.family)
244 x->sel.family = p->family;
1da177e4
LT
245}
246
d51d081d
JHS
247/*
248 * someday when pfkey also has support, we could have the code
249 * somehow made shareable and move it to xfrm_state.c - JHS
250 *
251*/
5424f32e 252static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs)
d51d081d 253{
5424f32e
TG
254 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
255 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
256 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
257 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
d51d081d
JHS
258
259 if (rp) {
260 struct xfrm_replay_state *replay;
5424f32e 261 replay = nla_data(rp);
d51d081d
JHS
262 memcpy(&x->replay, replay, sizeof(*replay));
263 memcpy(&x->preplay, replay, sizeof(*replay));
264 }
265
266 if (lt) {
267 struct xfrm_lifetime_cur *ltime;
5424f32e 268 ltime = nla_data(lt);
d51d081d
JHS
269 x->curlft.bytes = ltime->bytes;
270 x->curlft.packets = ltime->packets;
271 x->curlft.add_time = ltime->add_time;
272 x->curlft.use_time = ltime->use_time;
273 }
274
cf5cb79f 275 if (et)
5424f32e 276 x->replay_maxage = nla_get_u32(et);
d51d081d 277
cf5cb79f 278 if (rt)
5424f32e 279 x->replay_maxdiff = nla_get_u32(rt);
d51d081d
JHS
280}
281
1da177e4 282static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p,
5424f32e 283 struct nlattr **attrs,
1da177e4
LT
284 int *errp)
285{
286 struct xfrm_state *x = xfrm_state_alloc();
287 int err = -ENOMEM;
288
289 if (!x)
290 goto error_no_put;
291
292 copy_from_user_state(x, p);
293
294 if ((err = attach_one_algo(&x->aalg, &x->props.aalgo,
295 xfrm_aalg_get_byname,
35a7aa08 296 attrs[XFRMA_ALG_AUTH])))
1da177e4
LT
297 goto error;
298 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
299 xfrm_ealg_get_byname,
35a7aa08 300 attrs[XFRMA_ALG_CRYPT])))
1da177e4
LT
301 goto error;
302 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
303 xfrm_calg_get_byname,
35a7aa08 304 attrs[XFRMA_ALG_COMP])))
1da177e4 305 goto error;
fd21150a
TG
306
307 if (attrs[XFRMA_ENCAP]) {
308 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
309 sizeof(*x->encap), GFP_KERNEL);
310 if (x->encap == NULL)
311 goto error;
312 }
313
314 if (attrs[XFRMA_COADDR]) {
315 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
316 sizeof(*x->coaddr), GFP_KERNEL);
317 if (x->coaddr == NULL)
318 goto error;
319 }
320
72cb6962 321 err = xfrm_init_state(x);
1da177e4
LT
322 if (err)
323 goto error;
324
fd21150a
TG
325 if (attrs[XFRMA_SEC_CTX] &&
326 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
df71837d
TJ
327 goto error;
328
1da177e4 329 x->km.seq = p->seq;
d51d081d
JHS
330 x->replay_maxdiff = sysctl_xfrm_aevent_rseqth;
331 /* sysctl_xfrm_aevent_etime is in 100ms units */
332 x->replay_maxage = (sysctl_xfrm_aevent_etime*HZ)/XFRM_AE_ETH_M;
333 x->preplay.bitmap = 0;
334 x->preplay.seq = x->replay.seq+x->replay_maxdiff;
335 x->preplay.oseq = x->replay.oseq +x->replay_maxdiff;
336
337 /* override default values from above */
338
5424f32e 339 xfrm_update_ae_params(x, attrs);
1da177e4
LT
340
341 return x;
342
343error:
344 x->km.state = XFRM_STATE_DEAD;
345 xfrm_state_put(x);
346error_no_put:
347 *errp = err;
348 return NULL;
349}
350
22e70050 351static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 352 struct nlattr **attrs)
1da177e4 353{
7b67c857 354 struct xfrm_usersa_info *p = nlmsg_data(nlh);
1da177e4
LT
355 struct xfrm_state *x;
356 int err;
26b15dad 357 struct km_event c;
1da177e4 358
35a7aa08 359 err = verify_newsa_info(p, attrs);
1da177e4
LT
360 if (err)
361 return err;
362
35a7aa08 363 x = xfrm_state_construct(p, attrs, &err);
1da177e4
LT
364 if (!x)
365 return err;
366
26b15dad 367 xfrm_state_hold(x);
1da177e4
LT
368 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
369 err = xfrm_state_add(x);
370 else
371 err = xfrm_state_update(x);
372
ab5f5e8b
JL
373 xfrm_audit_state_add(x, err ? 0 : 1, NETLINK_CB(skb).loginuid,
374 NETLINK_CB(skb).sid);
161a09e7 375
1da177e4
LT
376 if (err < 0) {
377 x->km.state = XFRM_STATE_DEAD;
21380b81 378 __xfrm_state_put(x);
7d6dfe1f 379 goto out;
1da177e4
LT
380 }
381
26b15dad
JHS
382 c.seq = nlh->nlmsg_seq;
383 c.pid = nlh->nlmsg_pid;
f60f6b8f 384 c.event = nlh->nlmsg_type;
26b15dad
JHS
385
386 km_state_notify(x, &c);
7d6dfe1f 387out:
26b15dad 388 xfrm_state_put(x);
1da177e4
LT
389 return err;
390}
391
eb2971b6 392static struct xfrm_state *xfrm_user_state_lookup(struct xfrm_usersa_id *p,
5424f32e 393 struct nlattr **attrs,
eb2971b6
MN
394 int *errp)
395{
396 struct xfrm_state *x = NULL;
397 int err;
398
399 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
400 err = -ESRCH;
401 x = xfrm_state_lookup(&p->daddr, p->spi, p->proto, p->family);
402 } else {
403 xfrm_address_t *saddr = NULL;
404
35a7aa08 405 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
eb2971b6
MN
406 if (!saddr) {
407 err = -EINVAL;
408 goto out;
409 }
410
9abbffee 411 err = -ESRCH;
eb2971b6
MN
412 x = xfrm_state_lookup_byaddr(&p->daddr, saddr, p->proto,
413 p->family);
414 }
415
416 out:
417 if (!x && errp)
418 *errp = err;
419 return x;
420}
421
22e70050 422static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 423 struct nlattr **attrs)
1da177e4
LT
424{
425 struct xfrm_state *x;
eb2971b6 426 int err = -ESRCH;
26b15dad 427 struct km_event c;
7b67c857 428 struct xfrm_usersa_id *p = nlmsg_data(nlh);
1da177e4 429
35a7aa08 430 x = xfrm_user_state_lookup(p, attrs, &err);
1da177e4 431 if (x == NULL)
eb2971b6 432 return err;
1da177e4 433
6f68dc37 434 if ((err = security_xfrm_state_delete(x)) != 0)
c8c05a8e
CZ
435 goto out;
436
1da177e4 437 if (xfrm_state_kern(x)) {
c8c05a8e
CZ
438 err = -EPERM;
439 goto out;
1da177e4
LT
440 }
441
26b15dad 442 err = xfrm_state_delete(x);
161a09e7 443
c8c05a8e
CZ
444 if (err < 0)
445 goto out;
26b15dad
JHS
446
447 c.seq = nlh->nlmsg_seq;
448 c.pid = nlh->nlmsg_pid;
f60f6b8f 449 c.event = nlh->nlmsg_type;
26b15dad 450 km_state_notify(x, &c);
1da177e4 451
c8c05a8e 452out:
ab5f5e8b
JL
453 xfrm_audit_state_delete(x, err ? 0 : 1, NETLINK_CB(skb).loginuid,
454 NETLINK_CB(skb).sid);
c8c05a8e 455 xfrm_state_put(x);
26b15dad 456 return err;
1da177e4
LT
457}
458
459static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
460{
461 memcpy(&p->id, &x->id, sizeof(p->id));
462 memcpy(&p->sel, &x->sel, sizeof(p->sel));
463 memcpy(&p->lft, &x->lft, sizeof(p->lft));
464 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
465 memcpy(&p->stats, &x->stats, sizeof(p->stats));
54489c14 466 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
1da177e4
LT
467 p->mode = x->props.mode;
468 p->replay_window = x->props.replay_window;
469 p->reqid = x->props.reqid;
470 p->family = x->props.family;
471 p->flags = x->props.flags;
472 p->seq = x->km.seq;
473}
474
475struct xfrm_dump_info {
476 struct sk_buff *in_skb;
477 struct sk_buff *out_skb;
478 u32 nlmsg_seq;
479 u16 nlmsg_flags;
480 int start_idx;
481 int this_idx;
482};
483
c0144bea
TG
484static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
485{
486 int ctx_size = sizeof(struct xfrm_sec_ctx) + s->ctx_len;
487 struct xfrm_user_sec_ctx *uctx;
488 struct nlattr *attr;
489
490 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
491 if (attr == NULL)
492 return -EMSGSIZE;
493
494 uctx = nla_data(attr);
495 uctx->exttype = XFRMA_SEC_CTX;
496 uctx->len = ctx_size;
497 uctx->ctx_doi = s->ctx_doi;
498 uctx->ctx_alg = s->ctx_alg;
499 uctx->ctx_len = s->ctx_len;
500 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
501
502 return 0;
503}
504
1da177e4
LT
505static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
506{
507 struct xfrm_dump_info *sp = ptr;
508 struct sk_buff *in_skb = sp->in_skb;
509 struct sk_buff *skb = sp->out_skb;
510 struct xfrm_usersa_info *p;
511 struct nlmsghdr *nlh;
1da177e4
LT
512
513 if (sp->this_idx < sp->start_idx)
514 goto out;
515
79b8b7f4
TG
516 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
517 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
518 if (nlh == NULL)
519 return -EMSGSIZE;
1da177e4 520
7b67c857 521 p = nlmsg_data(nlh);
1da177e4
LT
522 copy_to_user_state(x, p);
523
524 if (x->aalg)
c26445ac 525 NLA_PUT(skb, XFRMA_ALG_AUTH, alg_len(x->aalg), x->aalg);
1da177e4 526 if (x->ealg)
c26445ac 527 NLA_PUT(skb, XFRMA_ALG_CRYPT, alg_len(x->ealg), x->ealg);
1da177e4 528 if (x->calg)
c0144bea 529 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
1da177e4
LT
530
531 if (x->encap)
c0144bea 532 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
1da177e4 533
c0144bea
TG
534 if (x->security && copy_sec_ctx(x->security, skb) < 0)
535 goto nla_put_failure;
060f02a3
NT
536
537 if (x->coaddr)
c0144bea 538 NLA_PUT(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
060f02a3 539
9afaca05 540 if (x->lastused)
c0144bea 541 NLA_PUT_U64(skb, XFRMA_LASTUSED, x->lastused);
9afaca05 542
9825069d 543 nlmsg_end(skb, nlh);
1da177e4
LT
544out:
545 sp->this_idx++;
546 return 0;
547
c0144bea 548nla_put_failure:
9825069d
TG
549 nlmsg_cancel(skb, nlh);
550 return -EMSGSIZE;
1da177e4
LT
551}
552
553static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
554{
555 struct xfrm_dump_info info;
556
557 info.in_skb = cb->skb;
558 info.out_skb = skb;
559 info.nlmsg_seq = cb->nlh->nlmsg_seq;
560 info.nlmsg_flags = NLM_F_MULTI;
561 info.this_idx = 0;
562 info.start_idx = cb->args[0];
dc00a525 563 (void) xfrm_state_walk(0, dump_one_state, &info);
1da177e4
LT
564 cb->args[0] = info.this_idx;
565
566 return skb->len;
567}
568
569static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
570 struct xfrm_state *x, u32 seq)
571{
572 struct xfrm_dump_info info;
573 struct sk_buff *skb;
574
7deb2264 575 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1da177e4
LT
576 if (!skb)
577 return ERR_PTR(-ENOMEM);
578
1da177e4
LT
579 info.in_skb = in_skb;
580 info.out_skb = skb;
581 info.nlmsg_seq = seq;
582 info.nlmsg_flags = 0;
583 info.this_idx = info.start_idx = 0;
584
585 if (dump_one_state(x, 0, &info)) {
586 kfree_skb(skb);
587 return NULL;
588 }
589
590 return skb;
591}
592
7deb2264
TG
593static inline size_t xfrm_spdinfo_msgsize(void)
594{
595 return NLMSG_ALIGN(4)
596 + nla_total_size(sizeof(struct xfrmu_spdinfo))
597 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
598}
599
ecfd6b18
JHS
600static int build_spdinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
601{
5a6d3416
JHS
602 struct xfrmk_spdinfo si;
603 struct xfrmu_spdinfo spc;
604 struct xfrmu_spdhinfo sph;
ecfd6b18
JHS
605 struct nlmsghdr *nlh;
606 u32 *f;
607
608 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
609 if (nlh == NULL) /* shouldnt really happen ... */
610 return -EMSGSIZE;
611
612 f = nlmsg_data(nlh);
613 *f = flags;
614 xfrm_spd_getinfo(&si);
5a6d3416
JHS
615 spc.incnt = si.incnt;
616 spc.outcnt = si.outcnt;
617 spc.fwdcnt = si.fwdcnt;
618 spc.inscnt = si.inscnt;
619 spc.outscnt = si.outscnt;
620 spc.fwdscnt = si.fwdscnt;
621 sph.spdhcnt = si.spdhcnt;
622 sph.spdhmcnt = si.spdhmcnt;
623
624 NLA_PUT(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
625 NLA_PUT(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
ecfd6b18
JHS
626
627 return nlmsg_end(skb, nlh);
628
629nla_put_failure:
630 nlmsg_cancel(skb, nlh);
631 return -EMSGSIZE;
632}
633
634static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 635 struct nlattr **attrs)
ecfd6b18
JHS
636{
637 struct sk_buff *r_skb;
7b67c857 638 u32 *flags = nlmsg_data(nlh);
ecfd6b18
JHS
639 u32 spid = NETLINK_CB(skb).pid;
640 u32 seq = nlh->nlmsg_seq;
ecfd6b18 641
7deb2264 642 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
ecfd6b18
JHS
643 if (r_skb == NULL)
644 return -ENOMEM;
645
646 if (build_spdinfo(r_skb, spid, seq, *flags) < 0)
647 BUG();
648
649 return nlmsg_unicast(xfrm_nl, r_skb, spid);
650}
651
7deb2264
TG
652static inline size_t xfrm_sadinfo_msgsize(void)
653{
654 return NLMSG_ALIGN(4)
655 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
656 + nla_total_size(4); /* XFRMA_SAD_CNT */
657}
658
28d8909b
JHS
659static int build_sadinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
660{
af11e316
JHS
661 struct xfrmk_sadinfo si;
662 struct xfrmu_sadhinfo sh;
28d8909b
JHS
663 struct nlmsghdr *nlh;
664 u32 *f;
665
666 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
667 if (nlh == NULL) /* shouldnt really happen ... */
668 return -EMSGSIZE;
669
670 f = nlmsg_data(nlh);
671 *f = flags;
672 xfrm_sad_getinfo(&si);
673
af11e316
JHS
674 sh.sadhmcnt = si.sadhmcnt;
675 sh.sadhcnt = si.sadhcnt;
676
677 NLA_PUT_U32(skb, XFRMA_SAD_CNT, si.sadcnt);
678 NLA_PUT(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
28d8909b
JHS
679
680 return nlmsg_end(skb, nlh);
681
682nla_put_failure:
683 nlmsg_cancel(skb, nlh);
684 return -EMSGSIZE;
685}
686
687static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 688 struct nlattr **attrs)
28d8909b
JHS
689{
690 struct sk_buff *r_skb;
7b67c857 691 u32 *flags = nlmsg_data(nlh);
28d8909b
JHS
692 u32 spid = NETLINK_CB(skb).pid;
693 u32 seq = nlh->nlmsg_seq;
28d8909b 694
7deb2264 695 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
28d8909b
JHS
696 if (r_skb == NULL)
697 return -ENOMEM;
698
699 if (build_sadinfo(r_skb, spid, seq, *flags) < 0)
700 BUG();
701
702 return nlmsg_unicast(xfrm_nl, r_skb, spid);
703}
704
22e70050 705static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 706 struct nlattr **attrs)
1da177e4 707{
7b67c857 708 struct xfrm_usersa_id *p = nlmsg_data(nlh);
1da177e4
LT
709 struct xfrm_state *x;
710 struct sk_buff *resp_skb;
eb2971b6 711 int err = -ESRCH;
1da177e4 712
35a7aa08 713 x = xfrm_user_state_lookup(p, attrs, &err);
1da177e4
LT
714 if (x == NULL)
715 goto out_noput;
716
717 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
718 if (IS_ERR(resp_skb)) {
719 err = PTR_ERR(resp_skb);
720 } else {
082a1ad5 721 err = nlmsg_unicast(xfrm_nl, resp_skb, NETLINK_CB(skb).pid);
1da177e4
LT
722 }
723 xfrm_state_put(x);
724out_noput:
725 return err;
726}
727
728static int verify_userspi_info(struct xfrm_userspi_info *p)
729{
730 switch (p->info.id.proto) {
731 case IPPROTO_AH:
732 case IPPROTO_ESP:
733 break;
734
735 case IPPROTO_COMP:
736 /* IPCOMP spi is 16-bits. */
737 if (p->max >= 0x10000)
738 return -EINVAL;
739 break;
740
741 default:
742 return -EINVAL;
3ff50b79 743 }
1da177e4
LT
744
745 if (p->min > p->max)
746 return -EINVAL;
747
748 return 0;
749}
750
22e70050 751static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 752 struct nlattr **attrs)
1da177e4
LT
753{
754 struct xfrm_state *x;
755 struct xfrm_userspi_info *p;
756 struct sk_buff *resp_skb;
757 xfrm_address_t *daddr;
758 int family;
759 int err;
760
7b67c857 761 p = nlmsg_data(nlh);
1da177e4
LT
762 err = verify_userspi_info(p);
763 if (err)
764 goto out_noput;
765
766 family = p->info.family;
767 daddr = &p->info.id.daddr;
768
769 x = NULL;
770 if (p->info.seq) {
771 x = xfrm_find_acq_byseq(p->info.seq);
772 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
773 xfrm_state_put(x);
774 x = NULL;
775 }
776 }
777
778 if (!x)
779 x = xfrm_find_acq(p->info.mode, p->info.reqid,
780 p->info.id.proto, daddr,
781 &p->info.saddr, 1,
782 family);
783 err = -ENOENT;
784 if (x == NULL)
785 goto out_noput;
786
658b219e
HX
787 err = xfrm_alloc_spi(x, p->min, p->max);
788 if (err)
789 goto out;
1da177e4 790
658b219e 791 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1da177e4
LT
792 if (IS_ERR(resp_skb)) {
793 err = PTR_ERR(resp_skb);
794 goto out;
795 }
796
082a1ad5 797 err = nlmsg_unicast(xfrm_nl, resp_skb, NETLINK_CB(skb).pid);
1da177e4
LT
798
799out:
800 xfrm_state_put(x);
801out_noput:
802 return err;
803}
804
b798a9ed 805static int verify_policy_dir(u8 dir)
1da177e4
LT
806{
807 switch (dir) {
808 case XFRM_POLICY_IN:
809 case XFRM_POLICY_OUT:
810 case XFRM_POLICY_FWD:
811 break;
812
813 default:
814 return -EINVAL;
3ff50b79 815 }
1da177e4
LT
816
817 return 0;
818}
819
b798a9ed 820static int verify_policy_type(u8 type)
f7b6983f
MN
821{
822 switch (type) {
823 case XFRM_POLICY_TYPE_MAIN:
824#ifdef CONFIG_XFRM_SUB_POLICY
825 case XFRM_POLICY_TYPE_SUB:
826#endif
827 break;
828
829 default:
830 return -EINVAL;
3ff50b79 831 }
f7b6983f
MN
832
833 return 0;
834}
835
1da177e4
LT
836static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
837{
838 switch (p->share) {
839 case XFRM_SHARE_ANY:
840 case XFRM_SHARE_SESSION:
841 case XFRM_SHARE_USER:
842 case XFRM_SHARE_UNIQUE:
843 break;
844
845 default:
846 return -EINVAL;
3ff50b79 847 }
1da177e4
LT
848
849 switch (p->action) {
850 case XFRM_POLICY_ALLOW:
851 case XFRM_POLICY_BLOCK:
852 break;
853
854 default:
855 return -EINVAL;
3ff50b79 856 }
1da177e4
LT
857
858 switch (p->sel.family) {
859 case AF_INET:
860 break;
861
862 case AF_INET6:
863#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
864 break;
865#else
866 return -EAFNOSUPPORT;
867#endif
868
869 default:
870 return -EINVAL;
3ff50b79 871 }
1da177e4
LT
872
873 return verify_policy_dir(p->dir);
874}
875
5424f32e 876static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
df71837d 877{
5424f32e 878 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
df71837d
TJ
879 struct xfrm_user_sec_ctx *uctx;
880
881 if (!rt)
882 return 0;
883
5424f32e 884 uctx = nla_data(rt);
df71837d
TJ
885 return security_xfrm_policy_alloc(pol, uctx);
886}
887
1da177e4
LT
888static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
889 int nr)
890{
891 int i;
892
893 xp->xfrm_nr = nr;
894 for (i = 0; i < nr; i++, ut++) {
895 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
896
897 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
898 memcpy(&t->saddr, &ut->saddr,
899 sizeof(xfrm_address_t));
900 t->reqid = ut->reqid;
901 t->mode = ut->mode;
902 t->share = ut->share;
903 t->optional = ut->optional;
904 t->aalgos = ut->aalgos;
905 t->ealgos = ut->ealgos;
906 t->calgos = ut->calgos;
8511d01d 907 t->encap_family = ut->family;
1da177e4
LT
908 }
909}
910
b4ad86bf
DM
911static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
912{
913 int i;
914
915 if (nr > XFRM_MAX_DEPTH)
916 return -EINVAL;
917
918 for (i = 0; i < nr; i++) {
919 /* We never validated the ut->family value, so many
920 * applications simply leave it at zero. The check was
921 * never made and ut->family was ignored because all
922 * templates could be assumed to have the same family as
923 * the policy itself. Now that we will have ipv4-in-ipv6
924 * and ipv6-in-ipv4 tunnels, this is no longer true.
925 */
926 if (!ut[i].family)
927 ut[i].family = family;
928
929 switch (ut[i].family) {
930 case AF_INET:
931 break;
932#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
933 case AF_INET6:
934 break;
935#endif
936 default:
937 return -EINVAL;
3ff50b79 938 }
b4ad86bf
DM
939 }
940
941 return 0;
942}
943
5424f32e 944static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
1da177e4 945{
5424f32e 946 struct nlattr *rt = attrs[XFRMA_TMPL];
1da177e4
LT
947
948 if (!rt) {
949 pol->xfrm_nr = 0;
950 } else {
5424f32e
TG
951 struct xfrm_user_tmpl *utmpl = nla_data(rt);
952 int nr = nla_len(rt) / sizeof(*utmpl);
b4ad86bf 953 int err;
1da177e4 954
b4ad86bf
DM
955 err = validate_tmpl(nr, utmpl, pol->family);
956 if (err)
957 return err;
1da177e4 958
5424f32e 959 copy_templates(pol, utmpl, nr);
1da177e4
LT
960 }
961 return 0;
962}
963
5424f32e 964static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
f7b6983f 965{
5424f32e 966 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
f7b6983f 967 struct xfrm_userpolicy_type *upt;
b798a9ed 968 u8 type = XFRM_POLICY_TYPE_MAIN;
f7b6983f
MN
969 int err;
970
971 if (rt) {
5424f32e 972 upt = nla_data(rt);
f7b6983f
MN
973 type = upt->type;
974 }
975
976 err = verify_policy_type(type);
977 if (err)
978 return err;
979
980 *tp = type;
981 return 0;
982}
983
1da177e4
LT
984static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
985{
986 xp->priority = p->priority;
987 xp->index = p->index;
988 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
989 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
990 xp->action = p->action;
991 xp->flags = p->flags;
992 xp->family = p->sel.family;
993 /* XXX xp->share = p->share; */
994}
995
996static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
997{
998 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
999 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1000 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1001 p->priority = xp->priority;
1002 p->index = xp->index;
1003 p->sel.family = xp->family;
1004 p->dir = dir;
1005 p->action = xp->action;
1006 p->flags = xp->flags;
1007 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1008}
1009
5424f32e 1010static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
1da177e4
LT
1011{
1012 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL);
1013 int err;
1014
1015 if (!xp) {
1016 *errp = -ENOMEM;
1017 return NULL;
1018 }
1019
1020 copy_from_user_policy(xp, p);
df71837d 1021
35a7aa08 1022 err = copy_from_user_policy_type(&xp->type, attrs);
f7b6983f
MN
1023 if (err)
1024 goto error;
1025
35a7aa08
TG
1026 if (!(err = copy_from_user_tmpl(xp, attrs)))
1027 err = copy_from_user_sec_ctx(xp, attrs);
f7b6983f
MN
1028 if (err)
1029 goto error;
1da177e4
LT
1030
1031 return xp;
f7b6983f
MN
1032 error:
1033 *errp = err;
1034 kfree(xp);
1035 return NULL;
1da177e4
LT
1036}
1037
22e70050 1038static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1039 struct nlattr **attrs)
1da177e4 1040{
7b67c857 1041 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
1da177e4 1042 struct xfrm_policy *xp;
26b15dad 1043 struct km_event c;
1da177e4
LT
1044 int err;
1045 int excl;
1046
1047 err = verify_newpolicy_info(p);
df71837d
TJ
1048 if (err)
1049 return err;
35a7aa08 1050 err = verify_sec_ctx_len(attrs);
1da177e4
LT
1051 if (err)
1052 return err;
1053
35a7aa08 1054 xp = xfrm_policy_construct(p, attrs, &err);
1da177e4
LT
1055 if (!xp)
1056 return err;
1057
26b15dad
JHS
1058 /* shouldnt excl be based on nlh flags??
1059 * Aha! this is anti-netlink really i.e more pfkey derived
1060 * in netlink excl is a flag and you wouldnt need
1061 * a type XFRM_MSG_UPDPOLICY - JHS */
1da177e4
LT
1062 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1063 err = xfrm_policy_insert(p->dir, xp, excl);
ab5f5e8b
JL
1064 xfrm_audit_policy_add(xp, err ? 0 : 1, NETLINK_CB(skb).loginuid,
1065 NETLINK_CB(skb).sid);
161a09e7 1066
1da177e4 1067 if (err) {
5f8ac64b 1068 security_xfrm_policy_free(xp);
1da177e4
LT
1069 kfree(xp);
1070 return err;
1071 }
1072
f60f6b8f 1073 c.event = nlh->nlmsg_type;
26b15dad
JHS
1074 c.seq = nlh->nlmsg_seq;
1075 c.pid = nlh->nlmsg_pid;
1076 km_policy_notify(xp, p->dir, &c);
1077
1da177e4
LT
1078 xfrm_pol_put(xp);
1079
1080 return 0;
1081}
1082
1083static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1084{
1085 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1086 int i;
1087
1088 if (xp->xfrm_nr == 0)
1089 return 0;
1090
1091 for (i = 0; i < xp->xfrm_nr; i++) {
1092 struct xfrm_user_tmpl *up = &vec[i];
1093 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1094
1095 memcpy(&up->id, &kp->id, sizeof(up->id));
8511d01d 1096 up->family = kp->encap_family;
1da177e4
LT
1097 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1098 up->reqid = kp->reqid;
1099 up->mode = kp->mode;
1100 up->share = kp->share;
1101 up->optional = kp->optional;
1102 up->aalgos = kp->aalgos;
1103 up->ealgos = kp->ealgos;
1104 up->calgos = kp->calgos;
1105 }
df71837d 1106
c0144bea
TG
1107 return nla_put(skb, XFRMA_TMPL,
1108 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
0d681623
SH
1109}
1110
1111static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1112{
1113 if (x->security) {
1114 return copy_sec_ctx(x->security, skb);
df71837d
TJ
1115 }
1116 return 0;
0d681623 1117}
df71837d 1118
0d681623
SH
1119static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1120{
1121 if (xp->security) {
1122 return copy_sec_ctx(xp->security, skb);
1123 }
1124 return 0;
df71837d 1125}
cfbfd45a
TG
1126static inline size_t userpolicy_type_attrsize(void)
1127{
1128#ifdef CONFIG_XFRM_SUB_POLICY
1129 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1130#else
1131 return 0;
1132#endif
1133}
df71837d 1134
f7b6983f 1135#ifdef CONFIG_XFRM_SUB_POLICY
b798a9ed 1136static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
f7b6983f 1137{
c0144bea
TG
1138 struct xfrm_userpolicy_type upt = {
1139 .type = type,
1140 };
f7b6983f 1141
c0144bea 1142 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
f7b6983f
MN
1143}
1144
1145#else
b798a9ed 1146static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
f7b6983f
MN
1147{
1148 return 0;
1149}
1150#endif
1151
1da177e4
LT
1152static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1153{
1154 struct xfrm_dump_info *sp = ptr;
1155 struct xfrm_userpolicy_info *p;
1156 struct sk_buff *in_skb = sp->in_skb;
1157 struct sk_buff *skb = sp->out_skb;
1158 struct nlmsghdr *nlh;
1da177e4
LT
1159
1160 if (sp->this_idx < sp->start_idx)
1161 goto out;
1162
79b8b7f4
TG
1163 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1164 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1165 if (nlh == NULL)
1166 return -EMSGSIZE;
1da177e4 1167
7b67c857 1168 p = nlmsg_data(nlh);
1da177e4
LT
1169 copy_to_user_policy(xp, p, dir);
1170 if (copy_to_user_tmpl(xp, skb) < 0)
1171 goto nlmsg_failure;
df71837d
TJ
1172 if (copy_to_user_sec_ctx(xp, skb))
1173 goto nlmsg_failure;
1459bb36 1174 if (copy_to_user_policy_type(xp->type, skb) < 0)
f7b6983f 1175 goto nlmsg_failure;
1da177e4 1176
9825069d 1177 nlmsg_end(skb, nlh);
1da177e4
LT
1178out:
1179 sp->this_idx++;
1180 return 0;
1181
1182nlmsg_failure:
9825069d
TG
1183 nlmsg_cancel(skb, nlh);
1184 return -EMSGSIZE;
1da177e4
LT
1185}
1186
1187static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1188{
1189 struct xfrm_dump_info info;
1190
1191 info.in_skb = cb->skb;
1192 info.out_skb = skb;
1193 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1194 info.nlmsg_flags = NLM_F_MULTI;
1195 info.this_idx = 0;
1196 info.start_idx = cb->args[0];
f7b6983f
MN
1197 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_MAIN, dump_one_policy, &info);
1198#ifdef CONFIG_XFRM_SUB_POLICY
1199 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_SUB, dump_one_policy, &info);
1200#endif
1da177e4
LT
1201 cb->args[0] = info.this_idx;
1202
1203 return skb->len;
1204}
1205
1206static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1207 struct xfrm_policy *xp,
1208 int dir, u32 seq)
1209{
1210 struct xfrm_dump_info info;
1211 struct sk_buff *skb;
1212
7deb2264 1213 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1da177e4
LT
1214 if (!skb)
1215 return ERR_PTR(-ENOMEM);
1216
1da177e4
LT
1217 info.in_skb = in_skb;
1218 info.out_skb = skb;
1219 info.nlmsg_seq = seq;
1220 info.nlmsg_flags = 0;
1221 info.this_idx = info.start_idx = 0;
1222
1223 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1224 kfree_skb(skb);
1225 return NULL;
1226 }
1227
1228 return skb;
1229}
1230
22e70050 1231static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1232 struct nlattr **attrs)
1da177e4
LT
1233{
1234 struct xfrm_policy *xp;
1235 struct xfrm_userpolicy_id *p;
b798a9ed 1236 u8 type = XFRM_POLICY_TYPE_MAIN;
1da177e4 1237 int err;
26b15dad 1238 struct km_event c;
1da177e4
LT
1239 int delete;
1240
7b67c857 1241 p = nlmsg_data(nlh);
1da177e4
LT
1242 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1243
35a7aa08 1244 err = copy_from_user_policy_type(&type, attrs);
f7b6983f
MN
1245 if (err)
1246 return err;
1247
1da177e4
LT
1248 err = verify_policy_dir(p->dir);
1249 if (err)
1250 return err;
1251
1252 if (p->index)
ef41aaa0 1253 xp = xfrm_policy_byid(type, p->dir, p->index, delete, &err);
df71837d 1254 else {
5424f32e 1255 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
df71837d
TJ
1256 struct xfrm_policy tmp;
1257
35a7aa08 1258 err = verify_sec_ctx_len(attrs);
df71837d
TJ
1259 if (err)
1260 return err;
1261
1262 memset(&tmp, 0, sizeof(struct xfrm_policy));
1263 if (rt) {
5424f32e 1264 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
df71837d
TJ
1265
1266 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1267 return err;
1268 }
ef41aaa0
EP
1269 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1270 delete, &err);
df71837d
TJ
1271 security_xfrm_policy_free(&tmp);
1272 }
1da177e4
LT
1273 if (xp == NULL)
1274 return -ENOENT;
1275
1276 if (!delete) {
1277 struct sk_buff *resp_skb;
1278
1279 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1280 if (IS_ERR(resp_skb)) {
1281 err = PTR_ERR(resp_skb);
1282 } else {
082a1ad5
TG
1283 err = nlmsg_unicast(xfrm_nl, resp_skb,
1284 NETLINK_CB(skb).pid);
1da177e4 1285 }
26b15dad 1286 } else {
ab5f5e8b
JL
1287 xfrm_audit_policy_delete(xp, err ? 0 : 1,
1288 NETLINK_CB(skb).loginuid,
1289 NETLINK_CB(skb).sid);
13fcfbb0
DM
1290
1291 if (err != 0)
c8c05a8e 1292 goto out;
13fcfbb0 1293
e7443892 1294 c.data.byid = p->index;
f60f6b8f 1295 c.event = nlh->nlmsg_type;
26b15dad
JHS
1296 c.seq = nlh->nlmsg_seq;
1297 c.pid = nlh->nlmsg_pid;
1298 km_policy_notify(xp, p->dir, &c);
1da177e4
LT
1299 }
1300
c8c05a8e 1301out:
ef41aaa0 1302 xfrm_pol_put(xp);
1da177e4
LT
1303 return err;
1304}
1305
22e70050 1306static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1307 struct nlattr **attrs)
1da177e4 1308{
26b15dad 1309 struct km_event c;
7b67c857 1310 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
161a09e7 1311 struct xfrm_audit audit_info;
4aa2e62c 1312 int err;
1da177e4 1313
161a09e7
JL
1314 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1315 audit_info.secid = NETLINK_CB(skb).sid;
4aa2e62c
JL
1316 err = xfrm_state_flush(p->proto, &audit_info);
1317 if (err)
1318 return err;
bf08867f 1319 c.data.proto = p->proto;
f60f6b8f 1320 c.event = nlh->nlmsg_type;
26b15dad
JHS
1321 c.seq = nlh->nlmsg_seq;
1322 c.pid = nlh->nlmsg_pid;
1323 km_state_notify(NULL, &c);
1324
1da177e4
LT
1325 return 0;
1326}
1327
7deb2264
TG
1328static inline size_t xfrm_aevent_msgsize(void)
1329{
1330 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
1331 + nla_total_size(sizeof(struct xfrm_replay_state))
1332 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
1333 + nla_total_size(4) /* XFRM_AE_RTHR */
1334 + nla_total_size(4); /* XFRM_AE_ETHR */
1335}
d51d081d
JHS
1336
1337static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1338{
1339 struct xfrm_aevent_id *id;
1340 struct nlmsghdr *nlh;
d51d081d 1341
79b8b7f4
TG
1342 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1343 if (nlh == NULL)
1344 return -EMSGSIZE;
d51d081d 1345
7b67c857 1346 id = nlmsg_data(nlh);
2b5f6dcc 1347 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
d51d081d
JHS
1348 id->sa_id.spi = x->id.spi;
1349 id->sa_id.family = x->props.family;
1350 id->sa_id.proto = x->id.proto;
2b5f6dcc
JHS
1351 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1352 id->reqid = x->props.reqid;
d51d081d
JHS
1353 id->flags = c->data.aevent;
1354
c0144bea
TG
1355 NLA_PUT(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), &x->replay);
1356 NLA_PUT(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
d51d081d 1357
c0144bea
TG
1358 if (id->flags & XFRM_AE_RTHR)
1359 NLA_PUT_U32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
d51d081d 1360
c0144bea
TG
1361 if (id->flags & XFRM_AE_ETHR)
1362 NLA_PUT_U32(skb, XFRMA_ETIMER_THRESH,
1363 x->replay_maxage * 10 / HZ);
d51d081d 1364
9825069d 1365 return nlmsg_end(skb, nlh);
d51d081d 1366
c0144bea 1367nla_put_failure:
9825069d
TG
1368 nlmsg_cancel(skb, nlh);
1369 return -EMSGSIZE;
d51d081d
JHS
1370}
1371
22e70050 1372static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1373 struct nlattr **attrs)
d51d081d
JHS
1374{
1375 struct xfrm_state *x;
1376 struct sk_buff *r_skb;
1377 int err;
1378 struct km_event c;
7b67c857 1379 struct xfrm_aevent_id *p = nlmsg_data(nlh);
d51d081d
JHS
1380 struct xfrm_usersa_id *id = &p->sa_id;
1381
7deb2264 1382 r_skb = nlmsg_new(xfrm_aevent_msgsize(), GFP_ATOMIC);
d51d081d
JHS
1383 if (r_skb == NULL)
1384 return -ENOMEM;
1385
1386 x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family);
1387 if (x == NULL) {
b08d5840 1388 kfree_skb(r_skb);
d51d081d
JHS
1389 return -ESRCH;
1390 }
1391
1392 /*
1393 * XXX: is this lock really needed - none of the other
1394 * gets lock (the concern is things getting updated
1395 * while we are still reading) - jhs
1396 */
1397 spin_lock_bh(&x->lock);
1398 c.data.aevent = p->flags;
1399 c.seq = nlh->nlmsg_seq;
1400 c.pid = nlh->nlmsg_pid;
1401
1402 if (build_aevent(r_skb, x, &c) < 0)
1403 BUG();
082a1ad5 1404 err = nlmsg_unicast(xfrm_nl, r_skb, NETLINK_CB(skb).pid);
d51d081d
JHS
1405 spin_unlock_bh(&x->lock);
1406 xfrm_state_put(x);
1407 return err;
1408}
1409
22e70050 1410static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1411 struct nlattr **attrs)
d51d081d
JHS
1412{
1413 struct xfrm_state *x;
1414 struct km_event c;
1415 int err = - EINVAL;
7b67c857 1416 struct xfrm_aevent_id *p = nlmsg_data(nlh);
5424f32e
TG
1417 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
1418 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
d51d081d
JHS
1419
1420 if (!lt && !rp)
1421 return err;
1422
1423 /* pedantic mode - thou shalt sayeth replaceth */
1424 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1425 return err;
1426
1427 x = xfrm_state_lookup(&p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1428 if (x == NULL)
1429 return -ESRCH;
1430
1431 if (x->km.state != XFRM_STATE_VALID)
1432 goto out;
1433
1434 spin_lock_bh(&x->lock);
35a7aa08 1435 xfrm_update_ae_params(x, attrs);
d51d081d 1436 spin_unlock_bh(&x->lock);
d51d081d
JHS
1437
1438 c.event = nlh->nlmsg_type;
1439 c.seq = nlh->nlmsg_seq;
1440 c.pid = nlh->nlmsg_pid;
1441 c.data.aevent = XFRM_AE_CU;
1442 km_state_notify(x, &c);
1443 err = 0;
1444out:
1445 xfrm_state_put(x);
1446 return err;
1447}
1448
22e70050 1449static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1450 struct nlattr **attrs)
1da177e4 1451{
f7b6983f 1452 struct km_event c;
b798a9ed 1453 u8 type = XFRM_POLICY_TYPE_MAIN;
f7b6983f 1454 int err;
161a09e7 1455 struct xfrm_audit audit_info;
f7b6983f 1456
35a7aa08 1457 err = copy_from_user_policy_type(&type, attrs);
f7b6983f
MN
1458 if (err)
1459 return err;
26b15dad 1460
161a09e7
JL
1461 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1462 audit_info.secid = NETLINK_CB(skb).sid;
4aa2e62c
JL
1463 err = xfrm_policy_flush(type, &audit_info);
1464 if (err)
1465 return err;
f7b6983f 1466 c.data.type = type;
f60f6b8f 1467 c.event = nlh->nlmsg_type;
26b15dad
JHS
1468 c.seq = nlh->nlmsg_seq;
1469 c.pid = nlh->nlmsg_pid;
1470 km_policy_notify(NULL, 0, &c);
1da177e4
LT
1471 return 0;
1472}
1473
22e70050 1474static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1475 struct nlattr **attrs)
6c5c8ca7
JHS
1476{
1477 struct xfrm_policy *xp;
7b67c857 1478 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
6c5c8ca7 1479 struct xfrm_userpolicy_info *p = &up->pol;
b798a9ed 1480 u8 type = XFRM_POLICY_TYPE_MAIN;
6c5c8ca7
JHS
1481 int err = -ENOENT;
1482
35a7aa08 1483 err = copy_from_user_policy_type(&type, attrs);
f7b6983f
MN
1484 if (err)
1485 return err;
1486
6c5c8ca7 1487 if (p->index)
ef41aaa0 1488 xp = xfrm_policy_byid(type, p->dir, p->index, 0, &err);
6c5c8ca7 1489 else {
5424f32e 1490 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
6c5c8ca7
JHS
1491 struct xfrm_policy tmp;
1492
35a7aa08 1493 err = verify_sec_ctx_len(attrs);
6c5c8ca7
JHS
1494 if (err)
1495 return err;
1496
1497 memset(&tmp, 0, sizeof(struct xfrm_policy));
1498 if (rt) {
5424f32e 1499 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
6c5c8ca7
JHS
1500
1501 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1502 return err;
1503 }
ef41aaa0
EP
1504 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1505 0, &err);
6c5c8ca7
JHS
1506 security_xfrm_policy_free(&tmp);
1507 }
1508
1509 if (xp == NULL)
ef41aaa0
EP
1510 return -ENOENT;
1511 read_lock(&xp->lock);
6c5c8ca7
JHS
1512 if (xp->dead) {
1513 read_unlock(&xp->lock);
1514 goto out;
1515 }
1516
1517 read_unlock(&xp->lock);
1518 err = 0;
1519 if (up->hard) {
1520 xfrm_policy_delete(xp, p->dir);
ab5f5e8b
JL
1521 xfrm_audit_policy_delete(xp, 1, NETLINK_CB(skb).loginuid,
1522 NETLINK_CB(skb).sid);
161a09e7 1523
6c5c8ca7
JHS
1524 } else {
1525 // reset the timers here?
1526 printk("Dont know what to do with soft policy expire\n");
1527 }
1528 km_policy_expired(xp, p->dir, up->hard, current->pid);
1529
1530out:
1531 xfrm_pol_put(xp);
1532 return err;
1533}
1534
22e70050 1535static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1536 struct nlattr **attrs)
53bc6b4d
JHS
1537{
1538 struct xfrm_state *x;
1539 int err;
7b67c857 1540 struct xfrm_user_expire *ue = nlmsg_data(nlh);
53bc6b4d
JHS
1541 struct xfrm_usersa_info *p = &ue->state;
1542
1543 x = xfrm_state_lookup(&p->id.daddr, p->id.spi, p->id.proto, p->family);
53bc6b4d 1544
3a765aa5 1545 err = -ENOENT;
53bc6b4d
JHS
1546 if (x == NULL)
1547 return err;
1548
53bc6b4d 1549 spin_lock_bh(&x->lock);
3a765aa5 1550 err = -EINVAL;
53bc6b4d
JHS
1551 if (x->km.state != XFRM_STATE_VALID)
1552 goto out;
1553 km_state_expired(x, ue->hard, current->pid);
1554
161a09e7 1555 if (ue->hard) {
53bc6b4d 1556 __xfrm_state_delete(x);
ab5f5e8b
JL
1557 xfrm_audit_state_delete(x, 1, NETLINK_CB(skb).loginuid,
1558 NETLINK_CB(skb).sid);
161a09e7 1559 }
3a765aa5 1560 err = 0;
53bc6b4d
JHS
1561out:
1562 spin_unlock_bh(&x->lock);
1563 xfrm_state_put(x);
1564 return err;
1565}
1566
22e70050 1567static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1568 struct nlattr **attrs)
980ebd25
JHS
1569{
1570 struct xfrm_policy *xp;
1571 struct xfrm_user_tmpl *ut;
1572 int i;
5424f32e 1573 struct nlattr *rt = attrs[XFRMA_TMPL];
980ebd25 1574
7b67c857 1575 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
980ebd25
JHS
1576 struct xfrm_state *x = xfrm_state_alloc();
1577 int err = -ENOMEM;
1578
1579 if (!x)
1580 return err;
1581
1582 err = verify_newpolicy_info(&ua->policy);
1583 if (err) {
1584 printk("BAD policy passed\n");
1585 kfree(x);
1586 return err;
1587 }
1588
1589 /* build an XP */
5424f32e 1590 xp = xfrm_policy_construct(&ua->policy, attrs, &err);
b4ad86bf 1591 if (!xp) {
980ebd25
JHS
1592 kfree(x);
1593 return err;
1594 }
1595
1596 memcpy(&x->id, &ua->id, sizeof(ua->id));
1597 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1598 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
1599
5424f32e 1600 ut = nla_data(rt);
980ebd25
JHS
1601 /* extract the templates and for each call km_key */
1602 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
1603 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1604 memcpy(&x->id, &t->id, sizeof(x->id));
1605 x->props.mode = t->mode;
1606 x->props.reqid = t->reqid;
1607 x->props.family = ut->family;
1608 t->aalgos = ua->aalgos;
1609 t->ealgos = ua->ealgos;
1610 t->calgos = ua->calgos;
1611 err = km_query(x, t, xp);
1612
1613 }
1614
1615 kfree(x);
1616 kfree(xp);
1617
1618 return 0;
1619}
1620
5c79de6e 1621#ifdef CONFIG_XFRM_MIGRATE
5c79de6e 1622static int copy_from_user_migrate(struct xfrm_migrate *ma,
5424f32e 1623 struct nlattr **attrs, int *num)
5c79de6e 1624{
5424f32e 1625 struct nlattr *rt = attrs[XFRMA_MIGRATE];
5c79de6e
SS
1626 struct xfrm_user_migrate *um;
1627 int i, num_migrate;
1628
5424f32e
TG
1629 um = nla_data(rt);
1630 num_migrate = nla_len(rt) / sizeof(*um);
5c79de6e
SS
1631
1632 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
1633 return -EINVAL;
1634
1635 for (i = 0; i < num_migrate; i++, um++, ma++) {
1636 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
1637 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
1638 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
1639 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
1640
1641 ma->proto = um->proto;
1642 ma->mode = um->mode;
1643 ma->reqid = um->reqid;
1644
1645 ma->old_family = um->old_family;
1646 ma->new_family = um->new_family;
1647 }
1648
1649 *num = i;
1650 return 0;
1651}
1652
1653static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1654 struct nlattr **attrs)
5c79de6e 1655{
7b67c857 1656 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
5c79de6e
SS
1657 struct xfrm_migrate m[XFRM_MAX_DEPTH];
1658 u8 type;
1659 int err;
1660 int n = 0;
1661
35a7aa08 1662 if (attrs[XFRMA_MIGRATE] == NULL)
cf5cb79f 1663 return -EINVAL;
5c79de6e 1664
5424f32e 1665 err = copy_from_user_policy_type(&type, attrs);
5c79de6e
SS
1666 if (err)
1667 return err;
1668
1669 err = copy_from_user_migrate((struct xfrm_migrate *)m,
5424f32e 1670 attrs, &n);
5c79de6e
SS
1671 if (err)
1672 return err;
1673
1674 if (!n)
1675 return 0;
1676
1677 xfrm_migrate(&pi->sel, pi->dir, type, m, n);
1678
1679 return 0;
1680}
1681#else
1682static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
5424f32e 1683 struct nlattr **attrs)
5c79de6e
SS
1684{
1685 return -ENOPROTOOPT;
1686}
1687#endif
1688
1689#ifdef CONFIG_XFRM_MIGRATE
1690static int copy_to_user_migrate(struct xfrm_migrate *m, struct sk_buff *skb)
1691{
1692 struct xfrm_user_migrate um;
1693
1694 memset(&um, 0, sizeof(um));
1695 um.proto = m->proto;
1696 um.mode = m->mode;
1697 um.reqid = m->reqid;
1698 um.old_family = m->old_family;
1699 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
1700 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
1701 um.new_family = m->new_family;
1702 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
1703 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
1704
c0144bea 1705 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
5c79de6e
SS
1706}
1707
7deb2264
TG
1708static inline size_t xfrm_migrate_msgsize(int num_migrate)
1709{
1710 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
1711 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
1712 + userpolicy_type_attrsize();
1713}
1714
5c79de6e
SS
1715static int build_migrate(struct sk_buff *skb, struct xfrm_migrate *m,
1716 int num_migrate, struct xfrm_selector *sel,
1717 u8 dir, u8 type)
1718{
1719 struct xfrm_migrate *mp;
1720 struct xfrm_userpolicy_id *pol_id;
1721 struct nlmsghdr *nlh;
5c79de6e
SS
1722 int i;
1723
79b8b7f4
TG
1724 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
1725 if (nlh == NULL)
1726 return -EMSGSIZE;
5c79de6e 1727
7b67c857 1728 pol_id = nlmsg_data(nlh);
5c79de6e
SS
1729 /* copy data from selector, dir, and type to the pol_id */
1730 memset(pol_id, 0, sizeof(*pol_id));
1731 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
1732 pol_id->dir = dir;
1733
1734 if (copy_to_user_policy_type(type, skb) < 0)
1735 goto nlmsg_failure;
1736
1737 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
1738 if (copy_to_user_migrate(mp, skb) < 0)
1739 goto nlmsg_failure;
1740 }
1741
9825069d 1742 return nlmsg_end(skb, nlh);
5c79de6e 1743nlmsg_failure:
9825069d
TG
1744 nlmsg_cancel(skb, nlh);
1745 return -EMSGSIZE;
5c79de6e
SS
1746}
1747
1748static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1749 struct xfrm_migrate *m, int num_migrate)
1750{
1751 struct sk_buff *skb;
5c79de6e 1752
7deb2264 1753 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate), GFP_ATOMIC);
5c79de6e
SS
1754 if (skb == NULL)
1755 return -ENOMEM;
1756
1757 /* build migrate */
1758 if (build_migrate(skb, m, num_migrate, sel, dir, type) < 0)
1759 BUG();
1760
082a1ad5 1761 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
5c79de6e
SS
1762}
1763#else
1764static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1765 struct xfrm_migrate *m, int num_migrate)
1766{
1767 return -ENOPROTOOPT;
1768}
1769#endif
d51d081d 1770
a7bd9a45 1771#define XMSGSIZE(type) sizeof(struct type)
492b558b
TG
1772
1773static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1774 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1775 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1776 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1777 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1778 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1779 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1780 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
980ebd25 1781 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
53bc6b4d 1782 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
492b558b
TG
1783 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1784 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
6c5c8ca7 1785 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
492b558b 1786 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
a7bd9a45 1787 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
d51d081d
JHS
1788 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1789 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
97a64b45 1790 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
5c79de6e 1791 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
a7bd9a45
TG
1792 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
1793 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
1da177e4
LT
1794};
1795
492b558b
TG
1796#undef XMSGSIZE
1797
cf5cb79f
TG
1798static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
1799 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
1800 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
1801 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
1802 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
1803 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
1804 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
1805 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
1806 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
1807 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
1808 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
1809 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
1810 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
1811 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
1812 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
1813};
1814
1da177e4 1815static struct xfrm_link {
5424f32e 1816 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
1da177e4 1817 int (*dump)(struct sk_buff *, struct netlink_callback *);
492b558b
TG
1818} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1819 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1820 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
1821 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1822 .dump = xfrm_dump_sa },
1823 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1824 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
1825 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1826 .dump = xfrm_dump_policy },
1827 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
980ebd25 1828 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
53bc6b4d 1829 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
492b558b
TG
1830 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1831 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
6c5c8ca7 1832 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
492b558b
TG
1833 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
1834 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
d51d081d
JHS
1835 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
1836 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
5c79de6e 1837 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
566ec034 1838 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
ecfd6b18 1839 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
1da177e4
LT
1840};
1841
1d00a4eb 1842static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1da177e4 1843{
35a7aa08 1844 struct nlattr *attrs[XFRMA_MAX+1];
1da177e4 1845 struct xfrm_link *link;
a7bd9a45 1846 int type, err;
1da177e4 1847
1da177e4 1848 type = nlh->nlmsg_type;
1da177e4 1849 if (type > XFRM_MSG_MAX)
1d00a4eb 1850 return -EINVAL;
1da177e4
LT
1851
1852 type -= XFRM_MSG_BASE;
1853 link = &xfrm_dispatch[type];
1854
1855 /* All operations require privileges, even GET */
1d00a4eb
TG
1856 if (security_netlink_recv(skb, CAP_NET_ADMIN))
1857 return -EPERM;
1da177e4 1858
492b558b
TG
1859 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1860 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1861 (nlh->nlmsg_flags & NLM_F_DUMP)) {
1da177e4 1862 if (link->dump == NULL)
1d00a4eb 1863 return -EINVAL;
88fc2c84 1864
c702e804 1865 return netlink_dump_start(xfrm_nl, skb, nlh, link->dump, NULL);
1da177e4
LT
1866 }
1867
35a7aa08 1868 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
cf5cb79f 1869 xfrma_policy);
a7bd9a45
TG
1870 if (err < 0)
1871 return err;
1da177e4
LT
1872
1873 if (link->doit == NULL)
1d00a4eb 1874 return -EINVAL;
1da177e4 1875
5424f32e 1876 return link->doit(skb, nlh, attrs);
1da177e4
LT
1877}
1878
1da177e4
LT
1879static void xfrm_netlink_rcv(struct sock *sk, int len)
1880{
88fc2c84 1881 unsigned int qlen = 0;
2a0a6ebe 1882
1da177e4 1883 do {
4a3e2f71 1884 mutex_lock(&xfrm_cfg_mutex);
0cfad075 1885 qlen = netlink_run_queue(sk, qlen, &xfrm_user_rcv_msg);
4a3e2f71 1886 mutex_unlock(&xfrm_cfg_mutex);
1da177e4 1887
2a0a6ebe 1888 } while (qlen);
1da177e4
LT
1889}
1890
7deb2264
TG
1891static inline size_t xfrm_expire_msgsize(void)
1892{
1893 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire));
1894}
1895
d51d081d 1896static int build_expire(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1da177e4
LT
1897{
1898 struct xfrm_user_expire *ue;
1899 struct nlmsghdr *nlh;
1da177e4 1900
79b8b7f4
TG
1901 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
1902 if (nlh == NULL)
1903 return -EMSGSIZE;
1da177e4 1904
7b67c857 1905 ue = nlmsg_data(nlh);
1da177e4 1906 copy_to_user_state(x, &ue->state);
d51d081d 1907 ue->hard = (c->data.hard != 0) ? 1 : 0;
1da177e4 1908
9825069d 1909 return nlmsg_end(skb, nlh);
1da177e4
LT
1910}
1911
26b15dad 1912static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
1da177e4
LT
1913{
1914 struct sk_buff *skb;
1915
7deb2264 1916 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
1da177e4
LT
1917 if (skb == NULL)
1918 return -ENOMEM;
1919
d51d081d 1920 if (build_expire(skb, x, c) < 0)
1da177e4
LT
1921 BUG();
1922
082a1ad5 1923 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1da177e4
LT
1924}
1925
d51d081d
JHS
1926static int xfrm_aevent_state_notify(struct xfrm_state *x, struct km_event *c)
1927{
1928 struct sk_buff *skb;
d51d081d 1929
7deb2264 1930 skb = nlmsg_new(xfrm_aevent_msgsize(), GFP_ATOMIC);
d51d081d
JHS
1931 if (skb == NULL)
1932 return -ENOMEM;
1933
1934 if (build_aevent(skb, x, c) < 0)
1935 BUG();
1936
082a1ad5 1937 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
d51d081d
JHS
1938}
1939
26b15dad
JHS
1940static int xfrm_notify_sa_flush(struct km_event *c)
1941{
1942 struct xfrm_usersa_flush *p;
1943 struct nlmsghdr *nlh;
1944 struct sk_buff *skb;
7deb2264 1945 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
26b15dad 1946
7deb2264 1947 skb = nlmsg_new(len, GFP_ATOMIC);
26b15dad
JHS
1948 if (skb == NULL)
1949 return -ENOMEM;
26b15dad 1950
79b8b7f4
TG
1951 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
1952 if (nlh == NULL) {
1953 kfree_skb(skb);
1954 return -EMSGSIZE;
1955 }
26b15dad 1956
7b67c857 1957 p = nlmsg_data(nlh);
bf08867f 1958 p->proto = c->data.proto;
26b15dad 1959
9825069d 1960 nlmsg_end(skb, nlh);
26b15dad 1961
082a1ad5 1962 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
26b15dad
JHS
1963}
1964
7deb2264 1965static inline size_t xfrm_sa_len(struct xfrm_state *x)
26b15dad 1966{
7deb2264 1967 size_t l = 0;
26b15dad 1968 if (x->aalg)
7deb2264 1969 l += nla_total_size(alg_len(x->aalg));
26b15dad 1970 if (x->ealg)
7deb2264 1971 l += nla_total_size(alg_len(x->ealg));
26b15dad 1972 if (x->calg)
7deb2264 1973 l += nla_total_size(sizeof(*x->calg));
26b15dad 1974 if (x->encap)
7deb2264 1975 l += nla_total_size(sizeof(*x->encap));
26b15dad
JHS
1976
1977 return l;
1978}
1979
1980static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
1981{
1982 struct xfrm_usersa_info *p;
0603eac0 1983 struct xfrm_usersa_id *id;
26b15dad
JHS
1984 struct nlmsghdr *nlh;
1985 struct sk_buff *skb;
26b15dad 1986 int len = xfrm_sa_len(x);
0603eac0
HX
1987 int headlen;
1988
1989 headlen = sizeof(*p);
1990 if (c->event == XFRM_MSG_DELSA) {
7deb2264 1991 len += nla_total_size(headlen);
0603eac0
HX
1992 headlen = sizeof(*id);
1993 }
7deb2264 1994 len += NLMSG_ALIGN(headlen);
26b15dad 1995
7deb2264 1996 skb = nlmsg_new(len, GFP_ATOMIC);
26b15dad
JHS
1997 if (skb == NULL)
1998 return -ENOMEM;
26b15dad 1999
79b8b7f4
TG
2000 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2001 if (nlh == NULL)
c0144bea 2002 goto nla_put_failure;
26b15dad 2003
7b67c857 2004 p = nlmsg_data(nlh);
0603eac0 2005 if (c->event == XFRM_MSG_DELSA) {
c0144bea
TG
2006 struct nlattr *attr;
2007
7b67c857 2008 id = nlmsg_data(nlh);
0603eac0
HX
2009 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2010 id->spi = x->id.spi;
2011 id->family = x->props.family;
2012 id->proto = x->id.proto;
2013
c0144bea
TG
2014 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
2015 if (attr == NULL)
2016 goto nla_put_failure;
2017
2018 p = nla_data(attr);
0603eac0
HX
2019 }
2020
26b15dad
JHS
2021 copy_to_user_state(x, p);
2022
2023 if (x->aalg)
c26445ac 2024 NLA_PUT(skb, XFRMA_ALG_AUTH, alg_len(x->aalg), x->aalg);
26b15dad 2025 if (x->ealg)
c26445ac 2026 NLA_PUT(skb, XFRMA_ALG_CRYPT, alg_len(x->ealg), x->ealg);
26b15dad 2027 if (x->calg)
c0144bea 2028 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
26b15dad
JHS
2029
2030 if (x->encap)
c0144bea 2031 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
26b15dad 2032
9825069d 2033 nlmsg_end(skb, nlh);
26b15dad 2034
082a1ad5 2035 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
26b15dad 2036
c0144bea 2037nla_put_failure:
26b15dad
JHS
2038 kfree_skb(skb);
2039 return -1;
2040}
2041
2042static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
2043{
2044
2045 switch (c->event) {
f60f6b8f 2046 case XFRM_MSG_EXPIRE:
26b15dad 2047 return xfrm_exp_state_notify(x, c);
d51d081d
JHS
2048 case XFRM_MSG_NEWAE:
2049 return xfrm_aevent_state_notify(x, c);
f60f6b8f
HX
2050 case XFRM_MSG_DELSA:
2051 case XFRM_MSG_UPDSA:
2052 case XFRM_MSG_NEWSA:
26b15dad 2053 return xfrm_notify_sa(x, c);
f60f6b8f 2054 case XFRM_MSG_FLUSHSA:
26b15dad
JHS
2055 return xfrm_notify_sa_flush(c);
2056 default:
2057 printk("xfrm_user: Unknown SA event %d\n", c->event);
2058 break;
2059 }
2060
2061 return 0;
2062
2063}
2064
7deb2264
TG
2065static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2066 struct xfrm_policy *xp)
2067{
2068 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2069 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2070 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2071 + userpolicy_type_attrsize();
2072}
2073
1da177e4
LT
2074static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2075 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2076 int dir)
2077{
2078 struct xfrm_user_acquire *ua;
2079 struct nlmsghdr *nlh;
1da177e4
LT
2080 __u32 seq = xfrm_get_acqseq();
2081
79b8b7f4
TG
2082 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2083 if (nlh == NULL)
2084 return -EMSGSIZE;
1da177e4 2085
7b67c857 2086 ua = nlmsg_data(nlh);
1da177e4
LT
2087 memcpy(&ua->id, &x->id, sizeof(ua->id));
2088 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2089 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2090 copy_to_user_policy(xp, &ua->policy, dir);
2091 ua->aalgos = xt->aalgos;
2092 ua->ealgos = xt->ealgos;
2093 ua->calgos = xt->calgos;
2094 ua->seq = x->km.seq = seq;
2095
2096 if (copy_to_user_tmpl(xp, skb) < 0)
2097 goto nlmsg_failure;
0d681623 2098 if (copy_to_user_state_sec_ctx(x, skb))
df71837d 2099 goto nlmsg_failure;
1459bb36 2100 if (copy_to_user_policy_type(xp->type, skb) < 0)
f7b6983f 2101 goto nlmsg_failure;
1da177e4 2102
9825069d 2103 return nlmsg_end(skb, nlh);
1da177e4
LT
2104
2105nlmsg_failure:
9825069d
TG
2106 nlmsg_cancel(skb, nlh);
2107 return -EMSGSIZE;
1da177e4
LT
2108}
2109
2110static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2111 struct xfrm_policy *xp, int dir)
2112{
2113 struct sk_buff *skb;
1da177e4 2114
7deb2264 2115 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
1da177e4
LT
2116 if (skb == NULL)
2117 return -ENOMEM;
2118
2119 if (build_acquire(skb, x, xt, xp, dir) < 0)
2120 BUG();
2121
082a1ad5 2122 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
1da177e4
LT
2123}
2124
2125/* User gives us xfrm_user_policy_info followed by an array of 0
2126 * or more templates.
2127 */
cb969f07 2128static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
1da177e4
LT
2129 u8 *data, int len, int *dir)
2130{
2131 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2132 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2133 struct xfrm_policy *xp;
2134 int nr;
2135
cb969f07 2136 switch (sk->sk_family) {
1da177e4
LT
2137 case AF_INET:
2138 if (opt != IP_XFRM_POLICY) {
2139 *dir = -EOPNOTSUPP;
2140 return NULL;
2141 }
2142 break;
2143#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2144 case AF_INET6:
2145 if (opt != IPV6_XFRM_POLICY) {
2146 *dir = -EOPNOTSUPP;
2147 return NULL;
2148 }
2149 break;
2150#endif
2151 default:
2152 *dir = -EINVAL;
2153 return NULL;
2154 }
2155
2156 *dir = -EINVAL;
2157
2158 if (len < sizeof(*p) ||
2159 verify_newpolicy_info(p))
2160 return NULL;
2161
2162 nr = ((len - sizeof(*p)) / sizeof(*ut));
b4ad86bf 2163 if (validate_tmpl(nr, ut, p->sel.family))
1da177e4
LT
2164 return NULL;
2165
a4f1bac6
HX
2166 if (p->dir > XFRM_POLICY_OUT)
2167 return NULL;
2168
1da177e4
LT
2169 xp = xfrm_policy_alloc(GFP_KERNEL);
2170 if (xp == NULL) {
2171 *dir = -ENOBUFS;
2172 return NULL;
2173 }
2174
2175 copy_from_user_policy(xp, p);
f7b6983f 2176 xp->type = XFRM_POLICY_TYPE_MAIN;
1da177e4
LT
2177 copy_templates(xp, ut, nr);
2178
2179 *dir = p->dir;
2180
2181 return xp;
2182}
2183
7deb2264
TG
2184static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2185{
2186 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2187 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2188 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
2189 + userpolicy_type_attrsize();
2190}
2191
1da177e4 2192static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
d51d081d 2193 int dir, struct km_event *c)
1da177e4
LT
2194{
2195 struct xfrm_user_polexpire *upe;
2196 struct nlmsghdr *nlh;
d51d081d 2197 int hard = c->data.hard;
1da177e4 2198
79b8b7f4
TG
2199 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2200 if (nlh == NULL)
2201 return -EMSGSIZE;
1da177e4 2202
7b67c857 2203 upe = nlmsg_data(nlh);
1da177e4
LT
2204 copy_to_user_policy(xp, &upe->pol, dir);
2205 if (copy_to_user_tmpl(xp, skb) < 0)
2206 goto nlmsg_failure;
df71837d
TJ
2207 if (copy_to_user_sec_ctx(xp, skb))
2208 goto nlmsg_failure;
1459bb36 2209 if (copy_to_user_policy_type(xp->type, skb) < 0)
f7b6983f 2210 goto nlmsg_failure;
1da177e4
LT
2211 upe->hard = !!hard;
2212
9825069d 2213 return nlmsg_end(skb, nlh);
1da177e4
LT
2214
2215nlmsg_failure:
9825069d
TG
2216 nlmsg_cancel(skb, nlh);
2217 return -EMSGSIZE;
1da177e4
LT
2218}
2219
26b15dad 2220static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
1da177e4
LT
2221{
2222 struct sk_buff *skb;
1da177e4 2223
7deb2264 2224 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
1da177e4
LT
2225 if (skb == NULL)
2226 return -ENOMEM;
2227
d51d081d 2228 if (build_polexpire(skb, xp, dir, c) < 0)
1da177e4
LT
2229 BUG();
2230
082a1ad5 2231 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1da177e4
LT
2232}
2233
26b15dad
JHS
2234static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
2235{
2236 struct xfrm_userpolicy_info *p;
0603eac0 2237 struct xfrm_userpolicy_id *id;
26b15dad
JHS
2238 struct nlmsghdr *nlh;
2239 struct sk_buff *skb;
7deb2264 2240 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
0603eac0
HX
2241 int headlen;
2242
2243 headlen = sizeof(*p);
2244 if (c->event == XFRM_MSG_DELPOLICY) {
7deb2264 2245 len += nla_total_size(headlen);
0603eac0
HX
2246 headlen = sizeof(*id);
2247 }
cfbfd45a 2248 len += userpolicy_type_attrsize();
7deb2264 2249 len += NLMSG_ALIGN(headlen);
26b15dad 2250
7deb2264 2251 skb = nlmsg_new(len, GFP_ATOMIC);
26b15dad
JHS
2252 if (skb == NULL)
2253 return -ENOMEM;
26b15dad 2254
79b8b7f4
TG
2255 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2256 if (nlh == NULL)
2257 goto nlmsg_failure;
26b15dad 2258
7b67c857 2259 p = nlmsg_data(nlh);
0603eac0 2260 if (c->event == XFRM_MSG_DELPOLICY) {
c0144bea
TG
2261 struct nlattr *attr;
2262
7b67c857 2263 id = nlmsg_data(nlh);
0603eac0
HX
2264 memset(id, 0, sizeof(*id));
2265 id->dir = dir;
2266 if (c->data.byid)
2267 id->index = xp->index;
2268 else
2269 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2270
c0144bea
TG
2271 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
2272 if (attr == NULL)
2273 goto nlmsg_failure;
2274
2275 p = nla_data(attr);
0603eac0 2276 }
26b15dad 2277
26b15dad
JHS
2278 copy_to_user_policy(xp, p, dir);
2279 if (copy_to_user_tmpl(xp, skb) < 0)
2280 goto nlmsg_failure;
1459bb36 2281 if (copy_to_user_policy_type(xp->type, skb) < 0)
f7b6983f 2282 goto nlmsg_failure;
26b15dad 2283
9825069d 2284 nlmsg_end(skb, nlh);
26b15dad 2285
082a1ad5 2286 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
26b15dad
JHS
2287
2288nlmsg_failure:
2289 kfree_skb(skb);
2290 return -1;
2291}
2292
2293static int xfrm_notify_policy_flush(struct km_event *c)
2294{
2295 struct nlmsghdr *nlh;
2296 struct sk_buff *skb;
26b15dad 2297
7deb2264 2298 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
26b15dad
JHS
2299 if (skb == NULL)
2300 return -ENOMEM;
26b15dad 2301
79b8b7f4
TG
2302 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2303 if (nlh == NULL)
2304 goto nlmsg_failure;
0c51f53c
JHS
2305 if (copy_to_user_policy_type(c->data.type, skb) < 0)
2306 goto nlmsg_failure;
26b15dad 2307
9825069d 2308 nlmsg_end(skb, nlh);
26b15dad 2309
082a1ad5 2310 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
26b15dad
JHS
2311
2312nlmsg_failure:
2313 kfree_skb(skb);
2314 return -1;
2315}
2316
2317static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2318{
2319
2320 switch (c->event) {
f60f6b8f
HX
2321 case XFRM_MSG_NEWPOLICY:
2322 case XFRM_MSG_UPDPOLICY:
2323 case XFRM_MSG_DELPOLICY:
26b15dad 2324 return xfrm_notify_policy(xp, dir, c);
f60f6b8f 2325 case XFRM_MSG_FLUSHPOLICY:
26b15dad 2326 return xfrm_notify_policy_flush(c);
f60f6b8f 2327 case XFRM_MSG_POLEXPIRE:
26b15dad
JHS
2328 return xfrm_exp_policy_notify(xp, dir, c);
2329 default:
2330 printk("xfrm_user: Unknown Policy event %d\n", c->event);
2331 }
2332
2333 return 0;
2334
2335}
2336
7deb2264
TG
2337static inline size_t xfrm_report_msgsize(void)
2338{
2339 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2340}
2341
97a64b45
MN
2342static int build_report(struct sk_buff *skb, u8 proto,
2343 struct xfrm_selector *sel, xfrm_address_t *addr)
2344{
2345 struct xfrm_user_report *ur;
2346 struct nlmsghdr *nlh;
97a64b45 2347
79b8b7f4
TG
2348 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2349 if (nlh == NULL)
2350 return -EMSGSIZE;
97a64b45 2351
7b67c857 2352 ur = nlmsg_data(nlh);
97a64b45
MN
2353 ur->proto = proto;
2354 memcpy(&ur->sel, sel, sizeof(ur->sel));
2355
2356 if (addr)
c0144bea 2357 NLA_PUT(skb, XFRMA_COADDR, sizeof(*addr), addr);
97a64b45 2358
9825069d 2359 return nlmsg_end(skb, nlh);
97a64b45 2360
c0144bea 2361nla_put_failure:
9825069d
TG
2362 nlmsg_cancel(skb, nlh);
2363 return -EMSGSIZE;
97a64b45
MN
2364}
2365
2366static int xfrm_send_report(u8 proto, struct xfrm_selector *sel,
2367 xfrm_address_t *addr)
2368{
2369 struct sk_buff *skb;
97a64b45 2370
7deb2264 2371 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
97a64b45
MN
2372 if (skb == NULL)
2373 return -ENOMEM;
2374
2375 if (build_report(skb, proto, sel, addr) < 0)
2376 BUG();
2377
082a1ad5 2378 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
97a64b45
MN
2379}
2380
1da177e4
LT
2381static struct xfrm_mgr netlink_mgr = {
2382 .id = "netlink",
2383 .notify = xfrm_send_state_notify,
2384 .acquire = xfrm_send_acquire,
2385 .compile_policy = xfrm_compile_policy,
2386 .notify_policy = xfrm_send_policy_notify,
97a64b45 2387 .report = xfrm_send_report,
5c79de6e 2388 .migrate = xfrm_send_migrate,
1da177e4
LT
2389};
2390
2391static int __init xfrm_user_init(void)
2392{
be33690d
PM
2393 struct sock *nlsk;
2394
654b32c6 2395 printk(KERN_INFO "Initializing XFRM netlink socket\n");
1da177e4 2396
b4b51029 2397 nlsk = netlink_kernel_create(&init_net, NETLINK_XFRM, XFRMNLGRP_MAX,
af65bdfc 2398 xfrm_netlink_rcv, NULL, THIS_MODULE);
be33690d 2399 if (nlsk == NULL)
1da177e4 2400 return -ENOMEM;
be33690d 2401 rcu_assign_pointer(xfrm_nl, nlsk);
1da177e4
LT
2402
2403 xfrm_register_km(&netlink_mgr);
2404
2405 return 0;
2406}
2407
2408static void __exit xfrm_user_exit(void)
2409{
be33690d
PM
2410 struct sock *nlsk = xfrm_nl;
2411
1da177e4 2412 xfrm_unregister_km(&netlink_mgr);
be33690d
PM
2413 rcu_assign_pointer(xfrm_nl, NULL);
2414 synchronize_rcu();
2415 sock_release(nlsk->sk_socket);
1da177e4
LT
2416}
2417
2418module_init(xfrm_user_init);
2419module_exit(xfrm_user_exit);
2420MODULE_LICENSE("GPL");
4fdb3bb7 2421MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
f8cd5488 2422