1 /* xfrm_user.c: User interface to configure xfrm engine.
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/slab.h>
17 #include <linux/socket.h>
18 #include <linux/string.h>
19 #include <linux/net.h>
20 #include <linux/skbuff.h>
21 #include <linux/netlink.h>
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>
29 #include <asm/uaccess.h>
31 static struct sock
*xfrm_nl
;
33 static int verify_one_alg(struct rtattr
**xfrma
, enum xfrm_attr_type_t type
)
35 struct rtattr
*rt
= xfrma
[type
- 1];
36 struct xfrm_algo
*algp
;
42 len
= (rt
->rta_len
- sizeof(*rt
)) - sizeof(*algp
);
48 len
-= (algp
->alg_key_len
+ 7U) / 8;
54 if (!algp
->alg_key_len
&&
55 strcmp(algp
->alg_name
, "digest_null") != 0)
60 if (!algp
->alg_key_len
&&
61 strcmp(algp
->alg_name
, "cipher_null") != 0)
66 /* Zero length keys are legal. */
73 algp
->alg_name
[CRYPTO_MAX_ALG_NAME
- 1] = '\0';
77 static int verify_encap_tmpl(struct rtattr
**xfrma
)
79 struct rtattr
*rt
= xfrma
[XFRMA_ENCAP
- 1];
80 struct xfrm_encap_tmpl
*encap
;
85 if ((rt
->rta_len
- sizeof(*rt
)) < sizeof(*encap
))
91 static int verify_newsa_info(struct xfrm_usersa_info
*p
,
92 struct rtattr
**xfrma
)
102 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
114 switch (p
->id
.proto
) {
116 if (!xfrma
[XFRMA_ALG_AUTH
-1] ||
117 xfrma
[XFRMA_ALG_CRYPT
-1] ||
118 xfrma
[XFRMA_ALG_COMP
-1])
123 if ((!xfrma
[XFRMA_ALG_AUTH
-1] &&
124 !xfrma
[XFRMA_ALG_CRYPT
-1]) ||
125 xfrma
[XFRMA_ALG_COMP
-1])
130 if (!xfrma
[XFRMA_ALG_COMP
-1] ||
131 xfrma
[XFRMA_ALG_AUTH
-1] ||
132 xfrma
[XFRMA_ALG_CRYPT
-1])
140 if ((err
= verify_one_alg(xfrma
, XFRMA_ALG_AUTH
)))
142 if ((err
= verify_one_alg(xfrma
, XFRMA_ALG_CRYPT
)))
144 if ((err
= verify_one_alg(xfrma
, XFRMA_ALG_COMP
)))
146 if ((err
= verify_encap_tmpl(xfrma
)))
165 static int attach_one_algo(struct xfrm_algo
**algpp
, u8
*props
,
166 struct xfrm_algo_desc
*(*get_byname
)(char *, int),
167 struct rtattr
*u_arg
)
169 struct rtattr
*rta
= u_arg
;
170 struct xfrm_algo
*p
, *ualg
;
171 struct xfrm_algo_desc
*algo
;
177 ualg
= RTA_DATA(rta
);
179 algo
= get_byname(ualg
->alg_name
, 1);
182 *props
= algo
->desc
.sadb_alg_id
;
184 len
= sizeof(*ualg
) + (ualg
->alg_key_len
+ 7U) / 8;
185 p
= kmalloc(len
, GFP_KERNEL
);
189 memcpy(p
, ualg
, len
);
194 static int attach_encap_tmpl(struct xfrm_encap_tmpl
**encapp
, struct rtattr
*u_arg
)
196 struct rtattr
*rta
= u_arg
;
197 struct xfrm_encap_tmpl
*p
, *uencap
;
202 uencap
= RTA_DATA(rta
);
203 p
= kmalloc(sizeof(*p
), GFP_KERNEL
);
207 memcpy(p
, uencap
, sizeof(*p
));
212 static void copy_from_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
214 memcpy(&x
->id
, &p
->id
, sizeof(x
->id
));
215 memcpy(&x
->sel
, &p
->sel
, sizeof(x
->sel
));
216 memcpy(&x
->lft
, &p
->lft
, sizeof(x
->lft
));
217 x
->props
.mode
= p
->mode
;
218 x
->props
.replay_window
= p
->replay_window
;
219 x
->props
.reqid
= p
->reqid
;
220 x
->props
.family
= p
->family
;
221 x
->props
.saddr
= p
->saddr
;
222 x
->props
.flags
= p
->flags
;
225 static struct xfrm_state
*xfrm_state_construct(struct xfrm_usersa_info
*p
,
226 struct rtattr
**xfrma
,
229 struct xfrm_state
*x
= xfrm_state_alloc();
235 copy_from_user_state(x
, p
);
237 if ((err
= attach_one_algo(&x
->aalg
, &x
->props
.aalgo
,
238 xfrm_aalg_get_byname
,
239 xfrma
[XFRMA_ALG_AUTH
-1])))
241 if ((err
= attach_one_algo(&x
->ealg
, &x
->props
.ealgo
,
242 xfrm_ealg_get_byname
,
243 xfrma
[XFRMA_ALG_CRYPT
-1])))
245 if ((err
= attach_one_algo(&x
->calg
, &x
->props
.calgo
,
246 xfrm_calg_get_byname
,
247 xfrma
[XFRMA_ALG_COMP
-1])))
249 if ((err
= attach_encap_tmpl(&x
->encap
, xfrma
[XFRMA_ENCAP
-1])))
253 x
->type
= xfrm_get_type(x
->id
.proto
, x
->props
.family
);
257 err
= x
->type
->init_state(x
, NULL
);
261 x
->curlft
.add_time
= (unsigned long) xtime
.tv_sec
;
262 x
->km
.state
= XFRM_STATE_VALID
;
268 x
->km
.state
= XFRM_STATE_DEAD
;
275 static int xfrm_add_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
277 struct xfrm_usersa_info
*p
= NLMSG_DATA(nlh
);
278 struct xfrm_state
*x
;
281 err
= verify_newsa_info(p
, (struct rtattr
**) xfrma
);
285 x
= xfrm_state_construct(p
, (struct rtattr
**) xfrma
, &err
);
289 if (nlh
->nlmsg_type
== XFRM_MSG_NEWSA
)
290 err
= xfrm_state_add(x
);
292 err
= xfrm_state_update(x
);
295 x
->km
.state
= XFRM_STATE_DEAD
;
302 static int xfrm_del_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
304 struct xfrm_state
*x
;
305 struct xfrm_usersa_id
*p
= NLMSG_DATA(nlh
);
307 x
= xfrm_state_lookup(&p
->daddr
, p
->spi
, p
->proto
, p
->family
);
311 if (xfrm_state_kern(x
)) {
316 xfrm_state_delete(x
);
322 static void copy_to_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
324 memcpy(&p
->id
, &x
->id
, sizeof(p
->id
));
325 memcpy(&p
->sel
, &x
->sel
, sizeof(p
->sel
));
326 memcpy(&p
->lft
, &x
->lft
, sizeof(p
->lft
));
327 memcpy(&p
->curlft
, &x
->curlft
, sizeof(p
->curlft
));
328 memcpy(&p
->stats
, &x
->stats
, sizeof(p
->stats
));
329 p
->saddr
= x
->props
.saddr
;
330 p
->mode
= x
->props
.mode
;
331 p
->replay_window
= x
->props
.replay_window
;
332 p
->reqid
= x
->props
.reqid
;
333 p
->family
= x
->props
.family
;
334 p
->flags
= x
->props
.flags
;
338 struct xfrm_dump_info
{
339 struct sk_buff
*in_skb
;
340 struct sk_buff
*out_skb
;
347 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
349 struct xfrm_dump_info
*sp
= ptr
;
350 struct sk_buff
*in_skb
= sp
->in_skb
;
351 struct sk_buff
*skb
= sp
->out_skb
;
352 struct xfrm_usersa_info
*p
;
353 struct nlmsghdr
*nlh
;
354 unsigned char *b
= skb
->tail
;
356 if (sp
->this_idx
< sp
->start_idx
)
359 nlh
= NLMSG_PUT(skb
, NETLINK_CB(in_skb
).pid
,
361 XFRM_MSG_NEWSA
, sizeof(*p
));
362 nlh
->nlmsg_flags
= sp
->nlmsg_flags
;
365 copy_to_user_state(x
, p
);
368 RTA_PUT(skb
, XFRMA_ALG_AUTH
,
369 sizeof(*(x
->aalg
))+(x
->aalg
->alg_key_len
+7)/8, x
->aalg
);
371 RTA_PUT(skb
, XFRMA_ALG_CRYPT
,
372 sizeof(*(x
->ealg
))+(x
->ealg
->alg_key_len
+7)/8, x
->ealg
);
374 RTA_PUT(skb
, XFRMA_ALG_COMP
, sizeof(*(x
->calg
)), x
->calg
);
377 RTA_PUT(skb
, XFRMA_ENCAP
, sizeof(*x
->encap
), x
->encap
);
379 nlh
->nlmsg_len
= skb
->tail
- b
;
386 skb_trim(skb
, b
- skb
->data
);
390 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
392 struct xfrm_dump_info info
;
394 info
.in_skb
= cb
->skb
;
396 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
397 info
.nlmsg_flags
= NLM_F_MULTI
;
399 info
.start_idx
= cb
->args
[0];
400 (void) xfrm_state_walk(IPSEC_PROTO_ANY
, dump_one_state
, &info
);
401 cb
->args
[0] = info
.this_idx
;
406 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
407 struct xfrm_state
*x
, u32 seq
)
409 struct xfrm_dump_info info
;
412 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_ATOMIC
);
414 return ERR_PTR(-ENOMEM
);
416 NETLINK_CB(skb
).dst_pid
= NETLINK_CB(in_skb
).pid
;
417 info
.in_skb
= in_skb
;
419 info
.nlmsg_seq
= seq
;
420 info
.nlmsg_flags
= 0;
421 info
.this_idx
= info
.start_idx
= 0;
423 if (dump_one_state(x
, 0, &info
)) {
431 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
433 struct xfrm_usersa_id
*p
= NLMSG_DATA(nlh
);
434 struct xfrm_state
*x
;
435 struct sk_buff
*resp_skb
;
438 x
= xfrm_state_lookup(&p
->daddr
, p
->spi
, p
->proto
, p
->family
);
443 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
444 if (IS_ERR(resp_skb
)) {
445 err
= PTR_ERR(resp_skb
);
447 err
= netlink_unicast(xfrm_nl
, resp_skb
,
448 NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
455 static int verify_userspi_info(struct xfrm_userspi_info
*p
)
457 switch (p
->info
.id
.proto
) {
463 /* IPCOMP spi is 16-bits. */
464 if (p
->max
>= 0x10000)
478 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
480 struct xfrm_state
*x
;
481 struct xfrm_userspi_info
*p
;
482 struct sk_buff
*resp_skb
;
483 xfrm_address_t
*daddr
;
488 err
= verify_userspi_info(p
);
492 family
= p
->info
.family
;
493 daddr
= &p
->info
.id
.daddr
;
497 x
= xfrm_find_acq_byseq(p
->info
.seq
);
498 if (x
&& xfrm_addr_cmp(&x
->id
.daddr
, daddr
, family
)) {
505 x
= xfrm_find_acq(p
->info
.mode
, p
->info
.reqid
,
506 p
->info
.id
.proto
, daddr
,
513 resp_skb
= ERR_PTR(-ENOENT
);
515 spin_lock_bh(&x
->lock
);
516 if (x
->km
.state
!= XFRM_STATE_DEAD
) {
517 xfrm_alloc_spi(x
, htonl(p
->min
), htonl(p
->max
));
519 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
521 spin_unlock_bh(&x
->lock
);
523 if (IS_ERR(resp_skb
)) {
524 err
= PTR_ERR(resp_skb
);
528 err
= netlink_unicast(xfrm_nl
, resp_skb
,
529 NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
537 static int verify_policy_dir(__u8 dir
)
541 case XFRM_POLICY_OUT
:
542 case XFRM_POLICY_FWD
:
552 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
)
556 case XFRM_SHARE_SESSION
:
557 case XFRM_SHARE_USER
:
558 case XFRM_SHARE_UNIQUE
:
566 case XFRM_POLICY_ALLOW
:
567 case XFRM_POLICY_BLOCK
:
574 switch (p
->sel
.family
) {
579 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
582 return -EAFNOSUPPORT
;
589 return verify_policy_dir(p
->dir
);
592 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
598 for (i
= 0; i
< nr
; i
++, ut
++) {
599 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
601 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
602 memcpy(&t
->saddr
, &ut
->saddr
,
603 sizeof(xfrm_address_t
));
604 t
->reqid
= ut
->reqid
;
606 t
->share
= ut
->share
;
607 t
->optional
= ut
->optional
;
608 t
->aalgos
= ut
->aalgos
;
609 t
->ealgos
= ut
->ealgos
;
610 t
->calgos
= ut
->calgos
;
614 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct rtattr
**xfrma
)
616 struct rtattr
*rt
= xfrma
[XFRMA_TMPL
-1];
617 struct xfrm_user_tmpl
*utmpl
;
623 nr
= (rt
->rta_len
- sizeof(*rt
)) / sizeof(*utmpl
);
625 if (nr
> XFRM_MAX_DEPTH
)
628 copy_templates(pol
, RTA_DATA(rt
), nr
);
633 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
635 xp
->priority
= p
->priority
;
636 xp
->index
= p
->index
;
637 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
638 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
639 xp
->action
= p
->action
;
640 xp
->flags
= p
->flags
;
641 xp
->family
= p
->sel
.family
;
642 /* XXX xp->share = p->share; */
645 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
647 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
648 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
649 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
650 p
->priority
= xp
->priority
;
651 p
->index
= xp
->index
;
652 p
->sel
.family
= xp
->family
;
654 p
->action
= xp
->action
;
655 p
->flags
= xp
->flags
;
656 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
659 static struct xfrm_policy
*xfrm_policy_construct(struct xfrm_userpolicy_info
*p
, struct rtattr
**xfrma
, int *errp
)
661 struct xfrm_policy
*xp
= xfrm_policy_alloc(GFP_KERNEL
);
669 copy_from_user_policy(xp
, p
);
670 err
= copy_from_user_tmpl(xp
, xfrma
);
680 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
682 struct xfrm_userpolicy_info
*p
= NLMSG_DATA(nlh
);
683 struct xfrm_policy
*xp
;
687 err
= verify_newpolicy_info(p
);
691 xp
= xfrm_policy_construct(p
, (struct rtattr
**) xfrma
, &err
);
695 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
696 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
707 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
709 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
712 if (xp
->xfrm_nr
== 0)
715 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
716 struct xfrm_user_tmpl
*up
= &vec
[i
];
717 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
719 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
720 up
->family
= xp
->family
;
721 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
722 up
->reqid
= kp
->reqid
;
724 up
->share
= kp
->share
;
725 up
->optional
= kp
->optional
;
726 up
->aalgos
= kp
->aalgos
;
727 up
->ealgos
= kp
->ealgos
;
728 up
->calgos
= kp
->calgos
;
730 RTA_PUT(skb
, XFRMA_TMPL
,
731 (sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
),
740 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
742 struct xfrm_dump_info
*sp
= ptr
;
743 struct xfrm_userpolicy_info
*p
;
744 struct sk_buff
*in_skb
= sp
->in_skb
;
745 struct sk_buff
*skb
= sp
->out_skb
;
746 struct nlmsghdr
*nlh
;
747 unsigned char *b
= skb
->tail
;
749 if (sp
->this_idx
< sp
->start_idx
)
752 nlh
= NLMSG_PUT(skb
, NETLINK_CB(in_skb
).pid
,
754 XFRM_MSG_NEWPOLICY
, sizeof(*p
));
756 nlh
->nlmsg_flags
= sp
->nlmsg_flags
;
758 copy_to_user_policy(xp
, p
, dir
);
759 if (copy_to_user_tmpl(xp
, skb
) < 0)
762 nlh
->nlmsg_len
= skb
->tail
- b
;
768 skb_trim(skb
, b
- skb
->data
);
772 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
774 struct xfrm_dump_info info
;
776 info
.in_skb
= cb
->skb
;
778 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
779 info
.nlmsg_flags
= NLM_F_MULTI
;
781 info
.start_idx
= cb
->args
[0];
782 (void) xfrm_policy_walk(dump_one_policy
, &info
);
783 cb
->args
[0] = info
.this_idx
;
788 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
789 struct xfrm_policy
*xp
,
792 struct xfrm_dump_info info
;
795 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
797 return ERR_PTR(-ENOMEM
);
799 NETLINK_CB(skb
).dst_pid
= NETLINK_CB(in_skb
).pid
;
800 info
.in_skb
= in_skb
;
802 info
.nlmsg_seq
= seq
;
803 info
.nlmsg_flags
= 0;
804 info
.this_idx
= info
.start_idx
= 0;
806 if (dump_one_policy(xp
, dir
, 0, &info
) < 0) {
814 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
816 struct xfrm_policy
*xp
;
817 struct xfrm_userpolicy_id
*p
;
822 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
824 err
= verify_policy_dir(p
->dir
);
829 xp
= xfrm_policy_byid(p
->dir
, p
->index
, delete);
831 xp
= xfrm_policy_bysel(p
->dir
, &p
->sel
, delete);
836 struct sk_buff
*resp_skb
;
838 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
839 if (IS_ERR(resp_skb
)) {
840 err
= PTR_ERR(resp_skb
);
842 err
= netlink_unicast(xfrm_nl
, resp_skb
,
853 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
855 struct xfrm_usersa_flush
*p
= NLMSG_DATA(nlh
);
857 xfrm_state_flush(p
->proto
);
861 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void **xfrma
)
867 #define XMSGSIZE(type) NLMSG_LENGTH(sizeof(struct type))
869 static const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
870 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
871 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
872 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
873 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
874 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
875 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
876 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
877 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
878 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
879 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
880 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
881 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
882 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
883 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = NLMSG_LENGTH(0),
888 static struct xfrm_link
{
889 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, void **);
890 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
891 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
892 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
893 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
894 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
895 .dump
= xfrm_dump_sa
},
896 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
897 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
898 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
899 .dump
= xfrm_dump_policy
},
900 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
901 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
902 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
903 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
904 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
907 static int xfrm_done(struct netlink_callback
*cb
)
912 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, int *errp
)
914 struct rtattr
*xfrma
[XFRMA_MAX
];
915 struct xfrm_link
*link
;
918 if (!(nlh
->nlmsg_flags
& NLM_F_REQUEST
))
921 type
= nlh
->nlmsg_type
;
923 /* A control message: ignore them */
924 if (type
< XFRM_MSG_BASE
)
927 /* Unknown message: reply with EINVAL */
928 if (type
> XFRM_MSG_MAX
)
931 type
-= XFRM_MSG_BASE
;
932 link
= &xfrm_dispatch
[type
];
934 /* All operations require privileges, even GET */
935 if (security_netlink_recv(skb
)) {
940 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
941 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
942 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
945 if (link
->dump
== NULL
)
948 if ((*errp
= netlink_dump_start(xfrm_nl
, skb
, nlh
,
953 rlen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
960 memset(xfrma
, 0, sizeof(xfrma
));
962 if (nlh
->nlmsg_len
< (min_len
= xfrm_msg_min
[type
]))
965 if (nlh
->nlmsg_len
> min_len
) {
966 int attrlen
= nlh
->nlmsg_len
- NLMSG_ALIGN(min_len
);
967 struct rtattr
*attr
= (void *) nlh
+ NLMSG_ALIGN(min_len
);
969 while (RTA_OK(attr
, attrlen
)) {
970 unsigned short flavor
= attr
->rta_type
;
972 if (flavor
> XFRMA_MAX
)
974 xfrma
[flavor
- 1] = attr
;
976 attr
= RTA_NEXT(attr
, attrlen
);
980 if (link
->doit
== NULL
)
982 *errp
= link
->doit(skb
, nlh
, (void **) &xfrma
);
991 static int xfrm_user_rcv_skb(struct sk_buff
*skb
)
994 struct nlmsghdr
*nlh
;
996 while (skb
->len
>= NLMSG_SPACE(0)) {
999 nlh
= (struct nlmsghdr
*) skb
->data
;
1000 if (nlh
->nlmsg_len
< sizeof(*nlh
) ||
1001 skb
->len
< nlh
->nlmsg_len
)
1003 rlen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
1004 if (rlen
> skb
->len
)
1006 if (xfrm_user_rcv_msg(skb
, nlh
, &err
) < 0) {
1009 netlink_ack(skb
, nlh
, err
);
1010 } else if (nlh
->nlmsg_flags
& NLM_F_ACK
)
1011 netlink_ack(skb
, nlh
, 0);
1012 skb_pull(skb
, rlen
);
1018 static void xfrm_netlink_rcv(struct sock
*sk
, int len
)
1020 unsigned int qlen
= skb_queue_len(&sk
->sk_receive_queue
);
1023 struct sk_buff
*skb
;
1025 down(&xfrm_cfg_sem
);
1027 if (qlen
> skb_queue_len(&sk
->sk_receive_queue
))
1028 qlen
= skb_queue_len(&sk
->sk_receive_queue
);
1030 for (; qlen
; qlen
--) {
1031 skb
= skb_dequeue(&sk
->sk_receive_queue
);
1032 if (xfrm_user_rcv_skb(skb
)) {
1034 skb_queue_head(&sk
->sk_receive_queue
,
1050 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, int hard
)
1052 struct xfrm_user_expire
*ue
;
1053 struct nlmsghdr
*nlh
;
1054 unsigned char *b
= skb
->tail
;
1056 nlh
= NLMSG_PUT(skb
, 0, 0, XFRM_MSG_EXPIRE
,
1058 ue
= NLMSG_DATA(nlh
);
1059 nlh
->nlmsg_flags
= 0;
1061 copy_to_user_state(x
, &ue
->state
);
1062 ue
->hard
= (hard
!= 0) ? 1 : 0;
1064 nlh
->nlmsg_len
= skb
->tail
- b
;
1068 skb_trim(skb
, b
- skb
->data
);
1072 static int xfrm_send_state_notify(struct xfrm_state
*x
, int hard
)
1074 struct sk_buff
*skb
;
1076 skb
= alloc_skb(sizeof(struct xfrm_user_expire
) + 16, GFP_ATOMIC
);
1080 if (build_expire(skb
, x
, hard
) < 0)
1083 NETLINK_CB(skb
).dst_groups
= XFRMGRP_EXPIRE
;
1085 return netlink_broadcast(xfrm_nl
, skb
, 0, XFRMGRP_EXPIRE
, GFP_ATOMIC
);
1088 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
1089 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
,
1092 struct xfrm_user_acquire
*ua
;
1093 struct nlmsghdr
*nlh
;
1094 unsigned char *b
= skb
->tail
;
1095 __u32 seq
= xfrm_get_acqseq();
1097 nlh
= NLMSG_PUT(skb
, 0, 0, XFRM_MSG_ACQUIRE
,
1099 ua
= NLMSG_DATA(nlh
);
1100 nlh
->nlmsg_flags
= 0;
1102 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
1103 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
1104 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
1105 copy_to_user_policy(xp
, &ua
->policy
, dir
);
1106 ua
->aalgos
= xt
->aalgos
;
1107 ua
->ealgos
= xt
->ealgos
;
1108 ua
->calgos
= xt
->calgos
;
1109 ua
->seq
= x
->km
.seq
= seq
;
1111 if (copy_to_user_tmpl(xp
, skb
) < 0)
1114 nlh
->nlmsg_len
= skb
->tail
- b
;
1118 skb_trim(skb
, b
- skb
->data
);
1122 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
1123 struct xfrm_policy
*xp
, int dir
)
1125 struct sk_buff
*skb
;
1128 len
= RTA_SPACE(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
1129 len
+= NLMSG_SPACE(sizeof(struct xfrm_user_acquire
));
1130 skb
= alloc_skb(len
, GFP_ATOMIC
);
1134 if (build_acquire(skb
, x
, xt
, xp
, dir
) < 0)
1137 NETLINK_CB(skb
).dst_groups
= XFRMGRP_ACQUIRE
;
1139 return netlink_broadcast(xfrm_nl
, skb
, 0, XFRMGRP_ACQUIRE
, GFP_ATOMIC
);
1142 /* User gives us xfrm_user_policy_info followed by an array of 0
1143 * or more templates.
1145 static struct xfrm_policy
*xfrm_compile_policy(u16 family
, int opt
,
1146 u8
*data
, int len
, int *dir
)
1148 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
1149 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
1150 struct xfrm_policy
*xp
;
1155 if (opt
!= IP_XFRM_POLICY
) {
1160 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1162 if (opt
!= IPV6_XFRM_POLICY
) {
1175 if (len
< sizeof(*p
) ||
1176 verify_newpolicy_info(p
))
1179 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
1180 if (nr
> XFRM_MAX_DEPTH
)
1183 xp
= xfrm_policy_alloc(GFP_KERNEL
);
1189 copy_from_user_policy(xp
, p
);
1190 copy_templates(xp
, ut
, nr
);
1197 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
1200 struct xfrm_user_polexpire
*upe
;
1201 struct nlmsghdr
*nlh
;
1202 unsigned char *b
= skb
->tail
;
1204 nlh
= NLMSG_PUT(skb
, 0, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
));
1205 upe
= NLMSG_DATA(nlh
);
1206 nlh
->nlmsg_flags
= 0;
1208 copy_to_user_policy(xp
, &upe
->pol
, dir
);
1209 if (copy_to_user_tmpl(xp
, skb
) < 0)
1213 nlh
->nlmsg_len
= skb
->tail
- b
;
1217 skb_trim(skb
, b
- skb
->data
);
1221 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, int hard
)
1223 struct sk_buff
*skb
;
1226 len
= RTA_SPACE(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
1227 len
+= NLMSG_SPACE(sizeof(struct xfrm_user_polexpire
));
1228 skb
= alloc_skb(len
, GFP_ATOMIC
);
1232 if (build_polexpire(skb
, xp
, dir
, hard
) < 0)
1235 NETLINK_CB(skb
).dst_groups
= XFRMGRP_EXPIRE
;
1237 return netlink_broadcast(xfrm_nl
, skb
, 0, XFRMGRP_EXPIRE
, GFP_ATOMIC
);
1240 static struct xfrm_mgr netlink_mgr
= {
1242 .notify
= xfrm_send_state_notify
,
1243 .acquire
= xfrm_send_acquire
,
1244 .compile_policy
= xfrm_compile_policy
,
1245 .notify_policy
= xfrm_send_policy_notify
,
1248 static int __init
xfrm_user_init(void)
1250 printk(KERN_INFO
"Initializing IPsec netlink socket\n");
1252 xfrm_nl
= netlink_kernel_create(NETLINK_XFRM
, xfrm_netlink_rcv
);
1253 if (xfrm_nl
== NULL
)
1256 xfrm_register_km(&netlink_mgr
);
1261 static void __exit
xfrm_user_exit(void)
1263 xfrm_unregister_km(&netlink_mgr
);
1264 sock_release(xfrm_nl
->sk_socket
);
1267 module_init(xfrm_user_init
);
1268 module_exit(xfrm_user_exit
);
1269 MODULE_LICENSE("GPL");