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