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/crypto.h>
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>
22 #include <linux/pfkeyv2.h>
23 #include <linux/ipsec.h>
24 #include <linux/init.h>
25 #include <linux/security.h>
28 #include <net/netlink.h>
30 #include <asm/uaccess.h>
31 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
32 #include <linux/in6.h>
35 static inline int aead_len(struct xfrm_algo_aead
*alg
)
37 return sizeof(*alg
) + ((alg
->alg_key_len
+ 7) / 8);
40 static int verify_one_alg(struct nlattr
**attrs
, enum xfrm_attr_type_t type
)
42 struct nlattr
*rt
= attrs
[type
];
43 struct xfrm_algo
*algp
;
49 if (nla_len(rt
) < xfrm_alg_len(algp
))
62 algp
->alg_name
[CRYPTO_MAX_ALG_NAME
- 1] = '\0';
66 static int verify_auth_trunc(struct nlattr
**attrs
)
68 struct nlattr
*rt
= attrs
[XFRMA_ALG_AUTH_TRUNC
];
69 struct xfrm_algo_auth
*algp
;
75 if (nla_len(rt
) < xfrm_alg_auth_len(algp
))
78 algp
->alg_name
[CRYPTO_MAX_ALG_NAME
- 1] = '\0';
82 static int verify_aead(struct nlattr
**attrs
)
84 struct nlattr
*rt
= attrs
[XFRMA_ALG_AEAD
];
85 struct xfrm_algo_aead
*algp
;
91 if (nla_len(rt
) < aead_len(algp
))
94 algp
->alg_name
[CRYPTO_MAX_ALG_NAME
- 1] = '\0';
98 static void verify_one_addr(struct nlattr
**attrs
, enum xfrm_attr_type_t type
,
99 xfrm_address_t
**addrp
)
101 struct nlattr
*rt
= attrs
[type
];
104 *addrp
= nla_data(rt
);
107 static inline int verify_sec_ctx_len(struct nlattr
**attrs
)
109 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
110 struct xfrm_user_sec_ctx
*uctx
;
116 if (uctx
->len
!= (sizeof(struct xfrm_user_sec_ctx
) + uctx
->ctx_len
))
122 static inline int verify_replay(struct xfrm_usersa_info
*p
,
123 struct nlattr
**attrs
)
125 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_ESN_VAL
];
127 if ((p
->flags
& XFRM_STATE_ESN
) && !rt
)
133 if (p
->id
.proto
!= IPPROTO_ESP
)
136 if (p
->replay_window
!= 0)
142 static int verify_newsa_info(struct xfrm_usersa_info
*p
,
143 struct nlattr
**attrs
)
153 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
165 switch (p
->id
.proto
) {
167 if ((!attrs
[XFRMA_ALG_AUTH
] &&
168 !attrs
[XFRMA_ALG_AUTH_TRUNC
]) ||
169 attrs
[XFRMA_ALG_AEAD
] ||
170 attrs
[XFRMA_ALG_CRYPT
] ||
171 attrs
[XFRMA_ALG_COMP
] ||
177 if (attrs
[XFRMA_ALG_COMP
])
179 if (!attrs
[XFRMA_ALG_AUTH
] &&
180 !attrs
[XFRMA_ALG_AUTH_TRUNC
] &&
181 !attrs
[XFRMA_ALG_CRYPT
] &&
182 !attrs
[XFRMA_ALG_AEAD
])
184 if ((attrs
[XFRMA_ALG_AUTH
] ||
185 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
186 attrs
[XFRMA_ALG_CRYPT
]) &&
187 attrs
[XFRMA_ALG_AEAD
])
189 if (attrs
[XFRMA_TFCPAD
] &&
190 p
->mode
!= XFRM_MODE_TUNNEL
)
195 if (!attrs
[XFRMA_ALG_COMP
] ||
196 attrs
[XFRMA_ALG_AEAD
] ||
197 attrs
[XFRMA_ALG_AUTH
] ||
198 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
199 attrs
[XFRMA_ALG_CRYPT
] ||
204 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
205 case IPPROTO_DSTOPTS
:
206 case IPPROTO_ROUTING
:
207 if (attrs
[XFRMA_ALG_COMP
] ||
208 attrs
[XFRMA_ALG_AUTH
] ||
209 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
210 attrs
[XFRMA_ALG_AEAD
] ||
211 attrs
[XFRMA_ALG_CRYPT
] ||
212 attrs
[XFRMA_ENCAP
] ||
213 attrs
[XFRMA_SEC_CTX
] ||
214 attrs
[XFRMA_TFCPAD
] ||
215 !attrs
[XFRMA_COADDR
])
224 if ((err
= verify_aead(attrs
)))
226 if ((err
= verify_auth_trunc(attrs
)))
228 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_AUTH
)))
230 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_CRYPT
)))
232 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_COMP
)))
234 if ((err
= verify_sec_ctx_len(attrs
)))
236 if ((err
= verify_replay(p
, attrs
)))
241 case XFRM_MODE_TRANSPORT
:
242 case XFRM_MODE_TUNNEL
:
243 case XFRM_MODE_ROUTEOPTIMIZATION
:
257 static int attach_one_algo(struct xfrm_algo
**algpp
, u8
*props
,
258 struct xfrm_algo_desc
*(*get_byname
)(const char *, int),
261 struct xfrm_algo
*p
, *ualg
;
262 struct xfrm_algo_desc
*algo
;
267 ualg
= nla_data(rta
);
269 algo
= get_byname(ualg
->alg_name
, 1);
272 *props
= algo
->desc
.sadb_alg_id
;
274 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
278 strcpy(p
->alg_name
, algo
->name
);
283 static int attach_auth(struct xfrm_algo_auth
**algpp
, u8
*props
,
286 struct xfrm_algo
*ualg
;
287 struct xfrm_algo_auth
*p
;
288 struct xfrm_algo_desc
*algo
;
293 ualg
= nla_data(rta
);
295 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
298 *props
= algo
->desc
.sadb_alg_id
;
300 p
= kmalloc(sizeof(*p
) + (ualg
->alg_key_len
+ 7) / 8, GFP_KERNEL
);
304 strcpy(p
->alg_name
, algo
->name
);
305 p
->alg_key_len
= ualg
->alg_key_len
;
306 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
307 memcpy(p
->alg_key
, ualg
->alg_key
, (ualg
->alg_key_len
+ 7) / 8);
313 static int attach_auth_trunc(struct xfrm_algo_auth
**algpp
, u8
*props
,
316 struct xfrm_algo_auth
*p
, *ualg
;
317 struct xfrm_algo_desc
*algo
;
322 ualg
= nla_data(rta
);
324 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
327 if ((ualg
->alg_trunc_len
/ 8) > MAX_AH_AUTH_LEN
||
328 ualg
->alg_trunc_len
> algo
->uinfo
.auth
.icv_fullbits
)
330 *props
= algo
->desc
.sadb_alg_id
;
332 p
= kmemdup(ualg
, xfrm_alg_auth_len(ualg
), GFP_KERNEL
);
336 strcpy(p
->alg_name
, algo
->name
);
337 if (!p
->alg_trunc_len
)
338 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
344 static int attach_aead(struct xfrm_algo_aead
**algpp
, u8
*props
,
347 struct xfrm_algo_aead
*p
, *ualg
;
348 struct xfrm_algo_desc
*algo
;
353 ualg
= nla_data(rta
);
355 algo
= xfrm_aead_get_byname(ualg
->alg_name
, ualg
->alg_icv_len
, 1);
358 *props
= algo
->desc
.sadb_alg_id
;
360 p
= kmemdup(ualg
, aead_len(ualg
), GFP_KERNEL
);
364 strcpy(p
->alg_name
, algo
->name
);
369 static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn
*replay_esn
,
372 struct xfrm_replay_state_esn
*up
;
374 if (!replay_esn
|| !rp
)
379 if (xfrm_replay_state_esn_len(replay_esn
) !=
380 xfrm_replay_state_esn_len(up
))
386 static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn
**replay_esn
,
387 struct xfrm_replay_state_esn
**preplay_esn
,
390 struct xfrm_replay_state_esn
*p
, *pp
, *up
;
397 p
= kmemdup(up
, xfrm_replay_state_esn_len(up
), GFP_KERNEL
);
401 pp
= kmemdup(up
, xfrm_replay_state_esn_len(up
), GFP_KERNEL
);
413 static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx
*xfrm_ctx
)
418 len
+= sizeof(struct xfrm_user_sec_ctx
);
419 len
+= xfrm_ctx
->ctx_len
;
424 static void copy_from_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
426 memcpy(&x
->id
, &p
->id
, sizeof(x
->id
));
427 memcpy(&x
->sel
, &p
->sel
, sizeof(x
->sel
));
428 memcpy(&x
->lft
, &p
->lft
, sizeof(x
->lft
));
429 x
->props
.mode
= p
->mode
;
430 x
->props
.replay_window
= p
->replay_window
;
431 x
->props
.reqid
= p
->reqid
;
432 x
->props
.family
= p
->family
;
433 memcpy(&x
->props
.saddr
, &p
->saddr
, sizeof(x
->props
.saddr
));
434 x
->props
.flags
= p
->flags
;
436 if (!x
->sel
.family
&& !(p
->flags
& XFRM_STATE_AF_UNSPEC
))
437 x
->sel
.family
= p
->family
;
441 * someday when pfkey also has support, we could have the code
442 * somehow made shareable and move it to xfrm_state.c - JHS
445 static void xfrm_update_ae_params(struct xfrm_state
*x
, struct nlattr
**attrs
)
447 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
448 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
449 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
450 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
451 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
454 struct xfrm_replay_state_esn
*replay_esn
;
455 replay_esn
= nla_data(re
);
456 memcpy(x
->replay_esn
, replay_esn
,
457 xfrm_replay_state_esn_len(replay_esn
));
458 memcpy(x
->preplay_esn
, replay_esn
,
459 xfrm_replay_state_esn_len(replay_esn
));
463 struct xfrm_replay_state
*replay
;
464 replay
= nla_data(rp
);
465 memcpy(&x
->replay
, replay
, sizeof(*replay
));
466 memcpy(&x
->preplay
, replay
, sizeof(*replay
));
470 struct xfrm_lifetime_cur
*ltime
;
471 ltime
= nla_data(lt
);
472 x
->curlft
.bytes
= ltime
->bytes
;
473 x
->curlft
.packets
= ltime
->packets
;
474 x
->curlft
.add_time
= ltime
->add_time
;
475 x
->curlft
.use_time
= ltime
->use_time
;
479 x
->replay_maxage
= nla_get_u32(et
);
482 x
->replay_maxdiff
= nla_get_u32(rt
);
485 static struct xfrm_state
*xfrm_state_construct(struct net
*net
,
486 struct xfrm_usersa_info
*p
,
487 struct nlattr
**attrs
,
490 struct xfrm_state
*x
= xfrm_state_alloc(net
);
496 copy_from_user_state(x
, p
);
498 if ((err
= attach_aead(&x
->aead
, &x
->props
.ealgo
,
499 attrs
[XFRMA_ALG_AEAD
])))
501 if ((err
= attach_auth_trunc(&x
->aalg
, &x
->props
.aalgo
,
502 attrs
[XFRMA_ALG_AUTH_TRUNC
])))
504 if (!x
->props
.aalgo
) {
505 if ((err
= attach_auth(&x
->aalg
, &x
->props
.aalgo
,
506 attrs
[XFRMA_ALG_AUTH
])))
509 if ((err
= attach_one_algo(&x
->ealg
, &x
->props
.ealgo
,
510 xfrm_ealg_get_byname
,
511 attrs
[XFRMA_ALG_CRYPT
])))
513 if ((err
= attach_one_algo(&x
->calg
, &x
->props
.calgo
,
514 xfrm_calg_get_byname
,
515 attrs
[XFRMA_ALG_COMP
])))
518 if (attrs
[XFRMA_ENCAP
]) {
519 x
->encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
520 sizeof(*x
->encap
), GFP_KERNEL
);
521 if (x
->encap
== NULL
)
525 if (attrs
[XFRMA_TFCPAD
])
526 x
->tfcpad
= nla_get_u32(attrs
[XFRMA_TFCPAD
]);
528 if (attrs
[XFRMA_COADDR
]) {
529 x
->coaddr
= kmemdup(nla_data(attrs
[XFRMA_COADDR
]),
530 sizeof(*x
->coaddr
), GFP_KERNEL
);
531 if (x
->coaddr
== NULL
)
535 xfrm_mark_get(attrs
, &x
->mark
);
537 err
= __xfrm_init_state(x
, false);
541 if (attrs
[XFRMA_SEC_CTX
] &&
542 security_xfrm_state_alloc(x
, nla_data(attrs
[XFRMA_SEC_CTX
])))
545 if ((err
= xfrm_alloc_replay_state_esn(&x
->replay_esn
, &x
->preplay_esn
,
546 attrs
[XFRMA_REPLAY_ESN_VAL
])))
550 x
->replay_maxdiff
= net
->xfrm
.sysctl_aevent_rseqth
;
551 /* sysctl_xfrm_aevent_etime is in 100ms units */
552 x
->replay_maxage
= (net
->xfrm
.sysctl_aevent_etime
*HZ
)/XFRM_AE_ETH_M
;
554 if ((err
= xfrm_init_replay(x
)))
557 /* override default values from above */
558 xfrm_update_ae_params(x
, attrs
);
563 x
->km
.state
= XFRM_STATE_DEAD
;
570 static int xfrm_add_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
571 struct nlattr
**attrs
)
573 struct net
*net
= sock_net(skb
->sk
);
574 struct xfrm_usersa_info
*p
= nlmsg_data(nlh
);
575 struct xfrm_state
*x
;
578 uid_t loginuid
= audit_get_loginuid(current
);
579 u32 sessionid
= audit_get_sessionid(current
);
582 err
= verify_newsa_info(p
, attrs
);
586 x
= xfrm_state_construct(net
, p
, attrs
, &err
);
591 if (nlh
->nlmsg_type
== XFRM_MSG_NEWSA
)
592 err
= xfrm_state_add(x
);
594 err
= xfrm_state_update(x
);
596 security_task_getsecid(current
, &sid
);
597 xfrm_audit_state_add(x
, err
? 0 : 1, loginuid
, sessionid
, sid
);
600 x
->km
.state
= XFRM_STATE_DEAD
;
605 c
.seq
= nlh
->nlmsg_seq
;
606 c
.pid
= nlh
->nlmsg_pid
;
607 c
.event
= nlh
->nlmsg_type
;
609 km_state_notify(x
, &c
);
615 static struct xfrm_state
*xfrm_user_state_lookup(struct net
*net
,
616 struct xfrm_usersa_id
*p
,
617 struct nlattr
**attrs
,
620 struct xfrm_state
*x
= NULL
;
623 u32 mark
= xfrm_mark_get(attrs
, &m
);
625 if (xfrm_id_proto_match(p
->proto
, IPSEC_PROTO_ANY
)) {
627 x
= xfrm_state_lookup(net
, mark
, &p
->daddr
, p
->spi
, p
->proto
, p
->family
);
629 xfrm_address_t
*saddr
= NULL
;
631 verify_one_addr(attrs
, XFRMA_SRCADDR
, &saddr
);
638 x
= xfrm_state_lookup_byaddr(net
, mark
,
640 p
->proto
, p
->family
);
649 static int xfrm_del_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
650 struct nlattr
**attrs
)
652 struct net
*net
= sock_net(skb
->sk
);
653 struct xfrm_state
*x
;
656 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
657 uid_t loginuid
= audit_get_loginuid(current
);
658 u32 sessionid
= audit_get_sessionid(current
);
661 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
665 if ((err
= security_xfrm_state_delete(x
)) != 0)
668 if (xfrm_state_kern(x
)) {
673 err
= xfrm_state_delete(x
);
678 c
.seq
= nlh
->nlmsg_seq
;
679 c
.pid
= nlh
->nlmsg_pid
;
680 c
.event
= nlh
->nlmsg_type
;
681 km_state_notify(x
, &c
);
684 security_task_getsecid(current
, &sid
);
685 xfrm_audit_state_delete(x
, err
? 0 : 1, loginuid
, sessionid
, sid
);
690 static void copy_to_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
692 memcpy(&p
->id
, &x
->id
, sizeof(p
->id
));
693 memcpy(&p
->sel
, &x
->sel
, sizeof(p
->sel
));
694 memcpy(&p
->lft
, &x
->lft
, sizeof(p
->lft
));
695 memcpy(&p
->curlft
, &x
->curlft
, sizeof(p
->curlft
));
696 memcpy(&p
->stats
, &x
->stats
, sizeof(p
->stats
));
697 memcpy(&p
->saddr
, &x
->props
.saddr
, sizeof(p
->saddr
));
698 p
->mode
= x
->props
.mode
;
699 p
->replay_window
= x
->props
.replay_window
;
700 p
->reqid
= x
->props
.reqid
;
701 p
->family
= x
->props
.family
;
702 p
->flags
= x
->props
.flags
;
706 struct xfrm_dump_info
{
707 struct sk_buff
*in_skb
;
708 struct sk_buff
*out_skb
;
713 static int copy_sec_ctx(struct xfrm_sec_ctx
*s
, struct sk_buff
*skb
)
715 struct xfrm_user_sec_ctx
*uctx
;
717 int ctx_size
= sizeof(*uctx
) + s
->ctx_len
;
719 attr
= nla_reserve(skb
, XFRMA_SEC_CTX
, ctx_size
);
723 uctx
= nla_data(attr
);
724 uctx
->exttype
= XFRMA_SEC_CTX
;
725 uctx
->len
= ctx_size
;
726 uctx
->ctx_doi
= s
->ctx_doi
;
727 uctx
->ctx_alg
= s
->ctx_alg
;
728 uctx
->ctx_len
= s
->ctx_len
;
729 memcpy(uctx
+ 1, s
->ctx_str
, s
->ctx_len
);
734 static int copy_to_user_auth(struct xfrm_algo_auth
*auth
, struct sk_buff
*skb
)
736 struct xfrm_algo
*algo
;
739 nla
= nla_reserve(skb
, XFRMA_ALG_AUTH
,
740 sizeof(*algo
) + (auth
->alg_key_len
+ 7) / 8);
744 algo
= nla_data(nla
);
745 strcpy(algo
->alg_name
, auth
->alg_name
);
746 memcpy(algo
->alg_key
, auth
->alg_key
, (auth
->alg_key_len
+ 7) / 8);
747 algo
->alg_key_len
= auth
->alg_key_len
;
752 /* Don't change this without updating xfrm_sa_len! */
753 static int copy_to_user_state_extra(struct xfrm_state
*x
,
754 struct xfrm_usersa_info
*p
,
757 copy_to_user_state(x
, p
);
760 NLA_PUT(skb
, XFRMA_COADDR
, sizeof(*x
->coaddr
), x
->coaddr
);
763 NLA_PUT_U64(skb
, XFRMA_LASTUSED
, x
->lastused
);
766 NLA_PUT(skb
, XFRMA_ALG_AEAD
, aead_len(x
->aead
), x
->aead
);
768 if (copy_to_user_auth(x
->aalg
, skb
))
769 goto nla_put_failure
;
771 NLA_PUT(skb
, XFRMA_ALG_AUTH_TRUNC
,
772 xfrm_alg_auth_len(x
->aalg
), x
->aalg
);
775 NLA_PUT(skb
, XFRMA_ALG_CRYPT
, xfrm_alg_len(x
->ealg
), x
->ealg
);
777 NLA_PUT(skb
, XFRMA_ALG_COMP
, sizeof(*(x
->calg
)), x
->calg
);
780 NLA_PUT(skb
, XFRMA_ENCAP
, sizeof(*x
->encap
), x
->encap
);
783 NLA_PUT_U32(skb
, XFRMA_TFCPAD
, x
->tfcpad
);
785 if (xfrm_mark_put(skb
, &x
->mark
))
786 goto nla_put_failure
;
789 NLA_PUT(skb
, XFRMA_REPLAY_ESN_VAL
,
790 xfrm_replay_state_esn_len(x
->replay_esn
), x
->replay_esn
);
792 if (x
->security
&& copy_sec_ctx(x
->security
, skb
) < 0)
793 goto nla_put_failure
;
801 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
803 struct xfrm_dump_info
*sp
= ptr
;
804 struct sk_buff
*in_skb
= sp
->in_skb
;
805 struct sk_buff
*skb
= sp
->out_skb
;
806 struct xfrm_usersa_info
*p
;
807 struct nlmsghdr
*nlh
;
810 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, sp
->nlmsg_seq
,
811 XFRM_MSG_NEWSA
, sizeof(*p
), sp
->nlmsg_flags
);
817 err
= copy_to_user_state_extra(x
, p
, skb
);
819 goto nla_put_failure
;
825 nlmsg_cancel(skb
, nlh
);
829 static int xfrm_dump_sa_done(struct netlink_callback
*cb
)
831 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
832 xfrm_state_walk_done(walk
);
836 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
838 struct net
*net
= sock_net(skb
->sk
);
839 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
840 struct xfrm_dump_info info
;
842 BUILD_BUG_ON(sizeof(struct xfrm_state_walk
) >
843 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
845 info
.in_skb
= cb
->skb
;
847 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
848 info
.nlmsg_flags
= NLM_F_MULTI
;
852 xfrm_state_walk_init(walk
, 0);
855 (void) xfrm_state_walk(net
, walk
, dump_one_state
, &info
);
860 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
861 struct xfrm_state
*x
, u32 seq
)
863 struct xfrm_dump_info info
;
866 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
868 return ERR_PTR(-ENOMEM
);
870 info
.in_skb
= in_skb
;
872 info
.nlmsg_seq
= seq
;
873 info
.nlmsg_flags
= 0;
875 if (dump_one_state(x
, 0, &info
)) {
883 static inline size_t xfrm_spdinfo_msgsize(void)
885 return NLMSG_ALIGN(4)
886 + nla_total_size(sizeof(struct xfrmu_spdinfo
))
887 + nla_total_size(sizeof(struct xfrmu_spdhinfo
));
890 static int build_spdinfo(struct sk_buff
*skb
, struct net
*net
,
891 u32 pid
, u32 seq
, u32 flags
)
893 struct xfrmk_spdinfo si
;
894 struct xfrmu_spdinfo spc
;
895 struct xfrmu_spdhinfo sph
;
896 struct nlmsghdr
*nlh
;
899 nlh
= nlmsg_put(skb
, pid
, seq
, XFRM_MSG_NEWSPDINFO
, sizeof(u32
), 0);
900 if (nlh
== NULL
) /* shouldn't really happen ... */
905 xfrm_spd_getinfo(net
, &si
);
906 spc
.incnt
= si
.incnt
;
907 spc
.outcnt
= si
.outcnt
;
908 spc
.fwdcnt
= si
.fwdcnt
;
909 spc
.inscnt
= si
.inscnt
;
910 spc
.outscnt
= si
.outscnt
;
911 spc
.fwdscnt
= si
.fwdscnt
;
912 sph
.spdhcnt
= si
.spdhcnt
;
913 sph
.spdhmcnt
= si
.spdhmcnt
;
915 NLA_PUT(skb
, XFRMA_SPD_INFO
, sizeof(spc
), &spc
);
916 NLA_PUT(skb
, XFRMA_SPD_HINFO
, sizeof(sph
), &sph
);
918 return nlmsg_end(skb
, nlh
);
921 nlmsg_cancel(skb
, nlh
);
925 static int xfrm_get_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
926 struct nlattr
**attrs
)
928 struct net
*net
= sock_net(skb
->sk
);
929 struct sk_buff
*r_skb
;
930 u32
*flags
= nlmsg_data(nlh
);
931 u32 spid
= NETLINK_CB(skb
).pid
;
932 u32 seq
= nlh
->nlmsg_seq
;
934 r_skb
= nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC
);
938 if (build_spdinfo(r_skb
, net
, spid
, seq
, *flags
) < 0)
941 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, spid
);
944 static inline size_t xfrm_sadinfo_msgsize(void)
946 return NLMSG_ALIGN(4)
947 + nla_total_size(sizeof(struct xfrmu_sadhinfo
))
948 + nla_total_size(4); /* XFRMA_SAD_CNT */
951 static int build_sadinfo(struct sk_buff
*skb
, struct net
*net
,
952 u32 pid
, u32 seq
, u32 flags
)
954 struct xfrmk_sadinfo si
;
955 struct xfrmu_sadhinfo sh
;
956 struct nlmsghdr
*nlh
;
959 nlh
= nlmsg_put(skb
, pid
, seq
, XFRM_MSG_NEWSADINFO
, sizeof(u32
), 0);
960 if (nlh
== NULL
) /* shouldn't really happen ... */
965 xfrm_sad_getinfo(net
, &si
);
967 sh
.sadhmcnt
= si
.sadhmcnt
;
968 sh
.sadhcnt
= si
.sadhcnt
;
970 NLA_PUT_U32(skb
, XFRMA_SAD_CNT
, si
.sadcnt
);
971 NLA_PUT(skb
, XFRMA_SAD_HINFO
, sizeof(sh
), &sh
);
973 return nlmsg_end(skb
, nlh
);
976 nlmsg_cancel(skb
, nlh
);
980 static int xfrm_get_sadinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
981 struct nlattr
**attrs
)
983 struct net
*net
= sock_net(skb
->sk
);
984 struct sk_buff
*r_skb
;
985 u32
*flags
= nlmsg_data(nlh
);
986 u32 spid
= NETLINK_CB(skb
).pid
;
987 u32 seq
= nlh
->nlmsg_seq
;
989 r_skb
= nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC
);
993 if (build_sadinfo(r_skb
, net
, spid
, seq
, *flags
) < 0)
996 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, spid
);
999 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1000 struct nlattr
**attrs
)
1002 struct net
*net
= sock_net(skb
->sk
);
1003 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
1004 struct xfrm_state
*x
;
1005 struct sk_buff
*resp_skb
;
1008 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
1012 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1013 if (IS_ERR(resp_skb
)) {
1014 err
= PTR_ERR(resp_skb
);
1016 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).pid
);
1023 static int verify_userspi_info(struct xfrm_userspi_info
*p
)
1025 switch (p
->info
.id
.proto
) {
1031 /* IPCOMP spi is 16-bits. */
1032 if (p
->max
>= 0x10000)
1040 if (p
->min
> p
->max
)
1046 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1047 struct nlattr
**attrs
)
1049 struct net
*net
= sock_net(skb
->sk
);
1050 struct xfrm_state
*x
;
1051 struct xfrm_userspi_info
*p
;
1052 struct sk_buff
*resp_skb
;
1053 xfrm_address_t
*daddr
;
1059 p
= nlmsg_data(nlh
);
1060 err
= verify_userspi_info(p
);
1064 family
= p
->info
.family
;
1065 daddr
= &p
->info
.id
.daddr
;
1069 mark
= xfrm_mark_get(attrs
, &m
);
1071 x
= xfrm_find_acq_byseq(net
, mark
, p
->info
.seq
);
1072 if (x
&& xfrm_addr_cmp(&x
->id
.daddr
, daddr
, family
)) {
1079 x
= xfrm_find_acq(net
, &m
, p
->info
.mode
, p
->info
.reqid
,
1080 p
->info
.id
.proto
, daddr
,
1087 err
= xfrm_alloc_spi(x
, p
->min
, p
->max
);
1091 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1092 if (IS_ERR(resp_skb
)) {
1093 err
= PTR_ERR(resp_skb
);
1097 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).pid
);
1105 static int verify_policy_dir(u8 dir
)
1108 case XFRM_POLICY_IN
:
1109 case XFRM_POLICY_OUT
:
1110 case XFRM_POLICY_FWD
:
1120 static int verify_policy_type(u8 type
)
1123 case XFRM_POLICY_TYPE_MAIN
:
1124 #ifdef CONFIG_XFRM_SUB_POLICY
1125 case XFRM_POLICY_TYPE_SUB
:
1136 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
)
1139 case XFRM_SHARE_ANY
:
1140 case XFRM_SHARE_SESSION
:
1141 case XFRM_SHARE_USER
:
1142 case XFRM_SHARE_UNIQUE
:
1149 switch (p
->action
) {
1150 case XFRM_POLICY_ALLOW
:
1151 case XFRM_POLICY_BLOCK
:
1158 switch (p
->sel
.family
) {
1163 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1166 return -EAFNOSUPPORT
;
1173 return verify_policy_dir(p
->dir
);
1176 static int copy_from_user_sec_ctx(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1178 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1179 struct xfrm_user_sec_ctx
*uctx
;
1184 uctx
= nla_data(rt
);
1185 return security_xfrm_policy_alloc(&pol
->security
, uctx
);
1188 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
1194 for (i
= 0; i
< nr
; i
++, ut
++) {
1195 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1197 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
1198 memcpy(&t
->saddr
, &ut
->saddr
,
1199 sizeof(xfrm_address_t
));
1200 t
->reqid
= ut
->reqid
;
1202 t
->share
= ut
->share
;
1203 t
->optional
= ut
->optional
;
1204 t
->aalgos
= ut
->aalgos
;
1205 t
->ealgos
= ut
->ealgos
;
1206 t
->calgos
= ut
->calgos
;
1207 /* If all masks are ~0, then we allow all algorithms. */
1208 t
->allalgs
= !~(t
->aalgos
& t
->ealgos
& t
->calgos
);
1209 t
->encap_family
= ut
->family
;
1213 static int validate_tmpl(int nr
, struct xfrm_user_tmpl
*ut
, u16 family
)
1217 if (nr
> XFRM_MAX_DEPTH
)
1220 for (i
= 0; i
< nr
; i
++) {
1221 /* We never validated the ut->family value, so many
1222 * applications simply leave it at zero. The check was
1223 * never made and ut->family was ignored because all
1224 * templates could be assumed to have the same family as
1225 * the policy itself. Now that we will have ipv4-in-ipv6
1226 * and ipv6-in-ipv4 tunnels, this is no longer true.
1229 ut
[i
].family
= family
;
1231 switch (ut
[i
].family
) {
1234 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1246 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1248 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1253 struct xfrm_user_tmpl
*utmpl
= nla_data(rt
);
1254 int nr
= nla_len(rt
) / sizeof(*utmpl
);
1257 err
= validate_tmpl(nr
, utmpl
, pol
->family
);
1261 copy_templates(pol
, utmpl
, nr
);
1266 static int copy_from_user_policy_type(u8
*tp
, struct nlattr
**attrs
)
1268 struct nlattr
*rt
= attrs
[XFRMA_POLICY_TYPE
];
1269 struct xfrm_userpolicy_type
*upt
;
1270 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1278 err
= verify_policy_type(type
);
1286 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
1288 xp
->priority
= p
->priority
;
1289 xp
->index
= p
->index
;
1290 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
1291 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
1292 xp
->action
= p
->action
;
1293 xp
->flags
= p
->flags
;
1294 xp
->family
= p
->sel
.family
;
1295 /* XXX xp->share = p->share; */
1298 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
1300 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
1301 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
1302 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
1303 p
->priority
= xp
->priority
;
1304 p
->index
= xp
->index
;
1305 p
->sel
.family
= xp
->family
;
1307 p
->action
= xp
->action
;
1308 p
->flags
= xp
->flags
;
1309 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
1312 static struct xfrm_policy
*xfrm_policy_construct(struct net
*net
, struct xfrm_userpolicy_info
*p
, struct nlattr
**attrs
, int *errp
)
1314 struct xfrm_policy
*xp
= xfrm_policy_alloc(net
, GFP_KERNEL
);
1322 copy_from_user_policy(xp
, p
);
1324 err
= copy_from_user_policy_type(&xp
->type
, attrs
);
1328 if (!(err
= copy_from_user_tmpl(xp
, attrs
)))
1329 err
= copy_from_user_sec_ctx(xp
, attrs
);
1333 xfrm_mark_get(attrs
, &xp
->mark
);
1339 xfrm_policy_destroy(xp
);
1343 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1344 struct nlattr
**attrs
)
1346 struct net
*net
= sock_net(skb
->sk
);
1347 struct xfrm_userpolicy_info
*p
= nlmsg_data(nlh
);
1348 struct xfrm_policy
*xp
;
1352 uid_t loginuid
= audit_get_loginuid(current
);
1353 u32 sessionid
= audit_get_sessionid(current
);
1356 err
= verify_newpolicy_info(p
);
1359 err
= verify_sec_ctx_len(attrs
);
1363 xp
= xfrm_policy_construct(net
, p
, attrs
, &err
);
1367 /* shouldn't excl be based on nlh flags??
1368 * Aha! this is anti-netlink really i.e more pfkey derived
1369 * in netlink excl is a flag and you wouldnt need
1370 * a type XFRM_MSG_UPDPOLICY - JHS */
1371 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
1372 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
1373 security_task_getsecid(current
, &sid
);
1374 xfrm_audit_policy_add(xp
, err
? 0 : 1, loginuid
, sessionid
, sid
);
1377 security_xfrm_policy_free(xp
->security
);
1382 c
.event
= nlh
->nlmsg_type
;
1383 c
.seq
= nlh
->nlmsg_seq
;
1384 c
.pid
= nlh
->nlmsg_pid
;
1385 km_policy_notify(xp
, p
->dir
, &c
);
1392 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1394 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
1397 if (xp
->xfrm_nr
== 0)
1400 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
1401 struct xfrm_user_tmpl
*up
= &vec
[i
];
1402 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
1404 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
1405 up
->family
= kp
->encap_family
;
1406 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
1407 up
->reqid
= kp
->reqid
;
1408 up
->mode
= kp
->mode
;
1409 up
->share
= kp
->share
;
1410 up
->optional
= kp
->optional
;
1411 up
->aalgos
= kp
->aalgos
;
1412 up
->ealgos
= kp
->ealgos
;
1413 up
->calgos
= kp
->calgos
;
1416 return nla_put(skb
, XFRMA_TMPL
,
1417 sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
, vec
);
1420 static inline int copy_to_user_state_sec_ctx(struct xfrm_state
*x
, struct sk_buff
*skb
)
1423 return copy_sec_ctx(x
->security
, skb
);
1428 static inline int copy_to_user_sec_ctx(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1431 return copy_sec_ctx(xp
->security
, skb
);
1435 static inline size_t userpolicy_type_attrsize(void)
1437 #ifdef CONFIG_XFRM_SUB_POLICY
1438 return nla_total_size(sizeof(struct xfrm_userpolicy_type
));
1444 #ifdef CONFIG_XFRM_SUB_POLICY
1445 static int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1447 struct xfrm_userpolicy_type upt
= {
1451 return nla_put(skb
, XFRMA_POLICY_TYPE
, sizeof(upt
), &upt
);
1455 static inline int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1461 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
1463 struct xfrm_dump_info
*sp
= ptr
;
1464 struct xfrm_userpolicy_info
*p
;
1465 struct sk_buff
*in_skb
= sp
->in_skb
;
1466 struct sk_buff
*skb
= sp
->out_skb
;
1467 struct nlmsghdr
*nlh
;
1469 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, sp
->nlmsg_seq
,
1470 XFRM_MSG_NEWPOLICY
, sizeof(*p
), sp
->nlmsg_flags
);
1474 p
= nlmsg_data(nlh
);
1475 copy_to_user_policy(xp
, p
, dir
);
1476 if (copy_to_user_tmpl(xp
, skb
) < 0)
1478 if (copy_to_user_sec_ctx(xp
, skb
))
1480 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
1482 if (xfrm_mark_put(skb
, &xp
->mark
))
1483 goto nla_put_failure
;
1485 nlmsg_end(skb
, nlh
);
1490 nlmsg_cancel(skb
, nlh
);
1494 static int xfrm_dump_policy_done(struct netlink_callback
*cb
)
1496 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*) &cb
->args
[1];
1498 xfrm_policy_walk_done(walk
);
1502 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1504 struct net
*net
= sock_net(skb
->sk
);
1505 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*) &cb
->args
[1];
1506 struct xfrm_dump_info info
;
1508 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk
) >
1509 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
1511 info
.in_skb
= cb
->skb
;
1513 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1514 info
.nlmsg_flags
= NLM_F_MULTI
;
1518 xfrm_policy_walk_init(walk
, XFRM_POLICY_TYPE_ANY
);
1521 (void) xfrm_policy_walk(net
, walk
, dump_one_policy
, &info
);
1526 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
1527 struct xfrm_policy
*xp
,
1530 struct xfrm_dump_info info
;
1531 struct sk_buff
*skb
;
1533 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1535 return ERR_PTR(-ENOMEM
);
1537 info
.in_skb
= in_skb
;
1539 info
.nlmsg_seq
= seq
;
1540 info
.nlmsg_flags
= 0;
1542 if (dump_one_policy(xp
, dir
, 0, &info
) < 0) {
1550 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1551 struct nlattr
**attrs
)
1553 struct net
*net
= sock_net(skb
->sk
);
1554 struct xfrm_policy
*xp
;
1555 struct xfrm_userpolicy_id
*p
;
1556 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1561 u32 mark
= xfrm_mark_get(attrs
, &m
);
1563 p
= nlmsg_data(nlh
);
1564 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
1566 err
= copy_from_user_policy_type(&type
, attrs
);
1570 err
= verify_policy_dir(p
->dir
);
1575 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, delete, &err
);
1577 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1578 struct xfrm_sec_ctx
*ctx
;
1580 err
= verify_sec_ctx_len(attrs
);
1586 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1588 err
= security_xfrm_policy_alloc(&ctx
, uctx
);
1592 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
, &p
->sel
,
1594 security_xfrm_policy_free(ctx
);
1600 struct sk_buff
*resp_skb
;
1602 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
1603 if (IS_ERR(resp_skb
)) {
1604 err
= PTR_ERR(resp_skb
);
1606 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
,
1607 NETLINK_CB(skb
).pid
);
1610 uid_t loginuid
= audit_get_loginuid(current
);
1611 u32 sessionid
= audit_get_sessionid(current
);
1614 security_task_getsecid(current
, &sid
);
1615 xfrm_audit_policy_delete(xp
, err
? 0 : 1, loginuid
, sessionid
,
1621 c
.data
.byid
= p
->index
;
1622 c
.event
= nlh
->nlmsg_type
;
1623 c
.seq
= nlh
->nlmsg_seq
;
1624 c
.pid
= nlh
->nlmsg_pid
;
1625 km_policy_notify(xp
, p
->dir
, &c
);
1633 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1634 struct nlattr
**attrs
)
1636 struct net
*net
= sock_net(skb
->sk
);
1638 struct xfrm_usersa_flush
*p
= nlmsg_data(nlh
);
1639 struct xfrm_audit audit_info
;
1642 audit_info
.loginuid
= audit_get_loginuid(current
);
1643 audit_info
.sessionid
= audit_get_sessionid(current
);
1644 security_task_getsecid(current
, &audit_info
.secid
);
1645 err
= xfrm_state_flush(net
, p
->proto
, &audit_info
);
1647 if (err
== -ESRCH
) /* empty table */
1651 c
.data
.proto
= p
->proto
;
1652 c
.event
= nlh
->nlmsg_type
;
1653 c
.seq
= nlh
->nlmsg_seq
;
1654 c
.pid
= nlh
->nlmsg_pid
;
1656 km_state_notify(NULL
, &c
);
1661 static inline size_t xfrm_aevent_msgsize(struct xfrm_state
*x
)
1663 size_t replay_size
= x
->replay_esn
?
1664 xfrm_replay_state_esn_len(x
->replay_esn
) :
1665 sizeof(struct xfrm_replay_state
);
1667 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id
))
1668 + nla_total_size(replay_size
)
1669 + nla_total_size(sizeof(struct xfrm_lifetime_cur
))
1670 + nla_total_size(sizeof(struct xfrm_mark
))
1671 + nla_total_size(4) /* XFRM_AE_RTHR */
1672 + nla_total_size(4); /* XFRM_AE_ETHR */
1675 static int build_aevent(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
1677 struct xfrm_aevent_id
*id
;
1678 struct nlmsghdr
*nlh
;
1680 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, XFRM_MSG_NEWAE
, sizeof(*id
), 0);
1684 id
= nlmsg_data(nlh
);
1685 memcpy(&id
->sa_id
.daddr
, &x
->id
.daddr
,sizeof(x
->id
.daddr
));
1686 id
->sa_id
.spi
= x
->id
.spi
;
1687 id
->sa_id
.family
= x
->props
.family
;
1688 id
->sa_id
.proto
= x
->id
.proto
;
1689 memcpy(&id
->saddr
, &x
->props
.saddr
,sizeof(x
->props
.saddr
));
1690 id
->reqid
= x
->props
.reqid
;
1691 id
->flags
= c
->data
.aevent
;
1694 NLA_PUT(skb
, XFRMA_REPLAY_ESN_VAL
,
1695 xfrm_replay_state_esn_len(x
->replay_esn
),
1698 NLA_PUT(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
), &x
->replay
);
1700 NLA_PUT(skb
, XFRMA_LTIME_VAL
, sizeof(x
->curlft
), &x
->curlft
);
1702 if (id
->flags
& XFRM_AE_RTHR
)
1703 NLA_PUT_U32(skb
, XFRMA_REPLAY_THRESH
, x
->replay_maxdiff
);
1705 if (id
->flags
& XFRM_AE_ETHR
)
1706 NLA_PUT_U32(skb
, XFRMA_ETIMER_THRESH
,
1707 x
->replay_maxage
* 10 / HZ
);
1709 if (xfrm_mark_put(skb
, &x
->mark
))
1710 goto nla_put_failure
;
1712 return nlmsg_end(skb
, nlh
);
1715 nlmsg_cancel(skb
, nlh
);
1719 static int xfrm_get_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1720 struct nlattr
**attrs
)
1722 struct net
*net
= sock_net(skb
->sk
);
1723 struct xfrm_state
*x
;
1724 struct sk_buff
*r_skb
;
1729 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1730 struct xfrm_usersa_id
*id
= &p
->sa_id
;
1732 mark
= xfrm_mark_get(attrs
, &m
);
1734 x
= xfrm_state_lookup(net
, mark
, &id
->daddr
, id
->spi
, id
->proto
, id
->family
);
1738 r_skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
1739 if (r_skb
== NULL
) {
1745 * XXX: is this lock really needed - none of the other
1746 * gets lock (the concern is things getting updated
1747 * while we are still reading) - jhs
1749 spin_lock_bh(&x
->lock
);
1750 c
.data
.aevent
= p
->flags
;
1751 c
.seq
= nlh
->nlmsg_seq
;
1752 c
.pid
= nlh
->nlmsg_pid
;
1754 if (build_aevent(r_skb
, x
, &c
) < 0)
1756 err
= nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, NETLINK_CB(skb
).pid
);
1757 spin_unlock_bh(&x
->lock
);
1762 static int xfrm_new_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1763 struct nlattr
**attrs
)
1765 struct net
*net
= sock_net(skb
->sk
);
1766 struct xfrm_state
*x
;
1771 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1772 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
1773 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
1774 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
1776 if (!lt
&& !rp
&& !re
)
1779 /* pedantic mode - thou shalt sayeth replaceth */
1780 if (!(nlh
->nlmsg_flags
&NLM_F_REPLACE
))
1783 mark
= xfrm_mark_get(attrs
, &m
);
1785 x
= xfrm_state_lookup(net
, mark
, &p
->sa_id
.daddr
, p
->sa_id
.spi
, p
->sa_id
.proto
, p
->sa_id
.family
);
1789 if (x
->km
.state
!= XFRM_STATE_VALID
)
1792 err
= xfrm_replay_verify_len(x
->replay_esn
, rp
);
1796 spin_lock_bh(&x
->lock
);
1797 xfrm_update_ae_params(x
, attrs
);
1798 spin_unlock_bh(&x
->lock
);
1800 c
.event
= nlh
->nlmsg_type
;
1801 c
.seq
= nlh
->nlmsg_seq
;
1802 c
.pid
= nlh
->nlmsg_pid
;
1803 c
.data
.aevent
= XFRM_AE_CU
;
1804 km_state_notify(x
, &c
);
1811 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1812 struct nlattr
**attrs
)
1814 struct net
*net
= sock_net(skb
->sk
);
1816 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1818 struct xfrm_audit audit_info
;
1820 err
= copy_from_user_policy_type(&type
, attrs
);
1824 audit_info
.loginuid
= audit_get_loginuid(current
);
1825 audit_info
.sessionid
= audit_get_sessionid(current
);
1826 security_task_getsecid(current
, &audit_info
.secid
);
1827 err
= xfrm_policy_flush(net
, type
, &audit_info
);
1829 if (err
== -ESRCH
) /* empty table */
1835 c
.event
= nlh
->nlmsg_type
;
1836 c
.seq
= nlh
->nlmsg_seq
;
1837 c
.pid
= nlh
->nlmsg_pid
;
1839 km_policy_notify(NULL
, 0, &c
);
1843 static int xfrm_add_pol_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1844 struct nlattr
**attrs
)
1846 struct net
*net
= sock_net(skb
->sk
);
1847 struct xfrm_policy
*xp
;
1848 struct xfrm_user_polexpire
*up
= nlmsg_data(nlh
);
1849 struct xfrm_userpolicy_info
*p
= &up
->pol
;
1850 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1853 u32 mark
= xfrm_mark_get(attrs
, &m
);
1855 err
= copy_from_user_policy_type(&type
, attrs
);
1859 err
= verify_policy_dir(p
->dir
);
1864 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, 0, &err
);
1866 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1867 struct xfrm_sec_ctx
*ctx
;
1869 err
= verify_sec_ctx_len(attrs
);
1875 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1877 err
= security_xfrm_policy_alloc(&ctx
, uctx
);
1881 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
,
1882 &p
->sel
, ctx
, 0, &err
);
1883 security_xfrm_policy_free(ctx
);
1888 if (unlikely(xp
->walk
.dead
))
1893 uid_t loginuid
= audit_get_loginuid(current
);
1894 u32 sessionid
= audit_get_sessionid(current
);
1897 security_task_getsecid(current
, &sid
);
1898 xfrm_policy_delete(xp
, p
->dir
);
1899 xfrm_audit_policy_delete(xp
, 1, loginuid
, sessionid
, sid
);
1902 // reset the timers here?
1903 WARN(1, "Dont know what to do with soft policy expire\n");
1905 km_policy_expired(xp
, p
->dir
, up
->hard
, current
->pid
);
1912 static int xfrm_add_sa_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1913 struct nlattr
**attrs
)
1915 struct net
*net
= sock_net(skb
->sk
);
1916 struct xfrm_state
*x
;
1918 struct xfrm_user_expire
*ue
= nlmsg_data(nlh
);
1919 struct xfrm_usersa_info
*p
= &ue
->state
;
1921 u32 mark
= xfrm_mark_get(attrs
, &m
);
1923 x
= xfrm_state_lookup(net
, mark
, &p
->id
.daddr
, p
->id
.spi
, p
->id
.proto
, p
->family
);
1929 spin_lock_bh(&x
->lock
);
1931 if (x
->km
.state
!= XFRM_STATE_VALID
)
1933 km_state_expired(x
, ue
->hard
, current
->pid
);
1936 uid_t loginuid
= audit_get_loginuid(current
);
1937 u32 sessionid
= audit_get_sessionid(current
);
1940 security_task_getsecid(current
, &sid
);
1941 __xfrm_state_delete(x
);
1942 xfrm_audit_state_delete(x
, 1, loginuid
, sessionid
, sid
);
1946 spin_unlock_bh(&x
->lock
);
1951 static int xfrm_add_acquire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1952 struct nlattr
**attrs
)
1954 struct net
*net
= sock_net(skb
->sk
);
1955 struct xfrm_policy
*xp
;
1956 struct xfrm_user_tmpl
*ut
;
1958 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1959 struct xfrm_mark mark
;
1961 struct xfrm_user_acquire
*ua
= nlmsg_data(nlh
);
1962 struct xfrm_state
*x
= xfrm_state_alloc(net
);
1968 xfrm_mark_get(attrs
, &mark
);
1970 err
= verify_newpolicy_info(&ua
->policy
);
1975 xp
= xfrm_policy_construct(net
, &ua
->policy
, attrs
, &err
);
1979 memcpy(&x
->id
, &ua
->id
, sizeof(ua
->id
));
1980 memcpy(&x
->props
.saddr
, &ua
->saddr
, sizeof(ua
->saddr
));
1981 memcpy(&x
->sel
, &ua
->sel
, sizeof(ua
->sel
));
1982 xp
->mark
.m
= x
->mark
.m
= mark
.m
;
1983 xp
->mark
.v
= x
->mark
.v
= mark
.v
;
1985 /* extract the templates and for each call km_key */
1986 for (i
= 0; i
< xp
->xfrm_nr
; i
++, ut
++) {
1987 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1988 memcpy(&x
->id
, &t
->id
, sizeof(x
->id
));
1989 x
->props
.mode
= t
->mode
;
1990 x
->props
.reqid
= t
->reqid
;
1991 x
->props
.family
= ut
->family
;
1992 t
->aalgos
= ua
->aalgos
;
1993 t
->ealgos
= ua
->ealgos
;
1994 t
->calgos
= ua
->calgos
;
1995 err
= km_query(x
, t
, xp
);
2005 WARN(1, "BAD policy passed\n");
2012 #ifdef CONFIG_XFRM_MIGRATE
2013 static int copy_from_user_migrate(struct xfrm_migrate
*ma
,
2014 struct xfrm_kmaddress
*k
,
2015 struct nlattr
**attrs
, int *num
)
2017 struct nlattr
*rt
= attrs
[XFRMA_MIGRATE
];
2018 struct xfrm_user_migrate
*um
;
2022 struct xfrm_user_kmaddress
*uk
;
2024 uk
= nla_data(attrs
[XFRMA_KMADDRESS
]);
2025 memcpy(&k
->local
, &uk
->local
, sizeof(k
->local
));
2026 memcpy(&k
->remote
, &uk
->remote
, sizeof(k
->remote
));
2027 k
->family
= uk
->family
;
2028 k
->reserved
= uk
->reserved
;
2032 num_migrate
= nla_len(rt
) / sizeof(*um
);
2034 if (num_migrate
<= 0 || num_migrate
> XFRM_MAX_DEPTH
)
2037 for (i
= 0; i
< num_migrate
; i
++, um
++, ma
++) {
2038 memcpy(&ma
->old_daddr
, &um
->old_daddr
, sizeof(ma
->old_daddr
));
2039 memcpy(&ma
->old_saddr
, &um
->old_saddr
, sizeof(ma
->old_saddr
));
2040 memcpy(&ma
->new_daddr
, &um
->new_daddr
, sizeof(ma
->new_daddr
));
2041 memcpy(&ma
->new_saddr
, &um
->new_saddr
, sizeof(ma
->new_saddr
));
2043 ma
->proto
= um
->proto
;
2044 ma
->mode
= um
->mode
;
2045 ma
->reqid
= um
->reqid
;
2047 ma
->old_family
= um
->old_family
;
2048 ma
->new_family
= um
->new_family
;
2055 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2056 struct nlattr
**attrs
)
2058 struct xfrm_userpolicy_id
*pi
= nlmsg_data(nlh
);
2059 struct xfrm_migrate m
[XFRM_MAX_DEPTH
];
2060 struct xfrm_kmaddress km
, *kmp
;
2065 if (attrs
[XFRMA_MIGRATE
] == NULL
)
2068 kmp
= attrs
[XFRMA_KMADDRESS
] ? &km
: NULL
;
2070 err
= copy_from_user_policy_type(&type
, attrs
);
2074 err
= copy_from_user_migrate((struct xfrm_migrate
*)m
, kmp
, attrs
, &n
);
2081 xfrm_migrate(&pi
->sel
, pi
->dir
, type
, m
, n
, kmp
);
2086 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2087 struct nlattr
**attrs
)
2089 return -ENOPROTOOPT
;
2093 #ifdef CONFIG_XFRM_MIGRATE
2094 static int copy_to_user_migrate(const struct xfrm_migrate
*m
, struct sk_buff
*skb
)
2096 struct xfrm_user_migrate um
;
2098 memset(&um
, 0, sizeof(um
));
2099 um
.proto
= m
->proto
;
2101 um
.reqid
= m
->reqid
;
2102 um
.old_family
= m
->old_family
;
2103 memcpy(&um
.old_daddr
, &m
->old_daddr
, sizeof(um
.old_daddr
));
2104 memcpy(&um
.old_saddr
, &m
->old_saddr
, sizeof(um
.old_saddr
));
2105 um
.new_family
= m
->new_family
;
2106 memcpy(&um
.new_daddr
, &m
->new_daddr
, sizeof(um
.new_daddr
));
2107 memcpy(&um
.new_saddr
, &m
->new_saddr
, sizeof(um
.new_saddr
));
2109 return nla_put(skb
, XFRMA_MIGRATE
, sizeof(um
), &um
);
2112 static int copy_to_user_kmaddress(const struct xfrm_kmaddress
*k
, struct sk_buff
*skb
)
2114 struct xfrm_user_kmaddress uk
;
2116 memset(&uk
, 0, sizeof(uk
));
2117 uk
.family
= k
->family
;
2118 uk
.reserved
= k
->reserved
;
2119 memcpy(&uk
.local
, &k
->local
, sizeof(uk
.local
));
2120 memcpy(&uk
.remote
, &k
->remote
, sizeof(uk
.remote
));
2122 return nla_put(skb
, XFRMA_KMADDRESS
, sizeof(uk
), &uk
);
2125 static inline size_t xfrm_migrate_msgsize(int num_migrate
, int with_kma
)
2127 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id
))
2128 + (with_kma
? nla_total_size(sizeof(struct xfrm_kmaddress
)) : 0)
2129 + nla_total_size(sizeof(struct xfrm_user_migrate
) * num_migrate
)
2130 + userpolicy_type_attrsize();
2133 static int build_migrate(struct sk_buff
*skb
, const struct xfrm_migrate
*m
,
2134 int num_migrate
, const struct xfrm_kmaddress
*k
,
2135 const struct xfrm_selector
*sel
, u8 dir
, u8 type
)
2137 const struct xfrm_migrate
*mp
;
2138 struct xfrm_userpolicy_id
*pol_id
;
2139 struct nlmsghdr
*nlh
;
2142 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MIGRATE
, sizeof(*pol_id
), 0);
2146 pol_id
= nlmsg_data(nlh
);
2147 /* copy data from selector, dir, and type to the pol_id */
2148 memset(pol_id
, 0, sizeof(*pol_id
));
2149 memcpy(&pol_id
->sel
, sel
, sizeof(pol_id
->sel
));
2152 if (k
!= NULL
&& (copy_to_user_kmaddress(k
, skb
) < 0))
2155 if (copy_to_user_policy_type(type
, skb
) < 0)
2158 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
2159 if (copy_to_user_migrate(mp
, skb
) < 0)
2163 return nlmsg_end(skb
, nlh
);
2165 nlmsg_cancel(skb
, nlh
);
2169 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2170 const struct xfrm_migrate
*m
, int num_migrate
,
2171 const struct xfrm_kmaddress
*k
)
2173 struct net
*net
= &init_net
;
2174 struct sk_buff
*skb
;
2176 skb
= nlmsg_new(xfrm_migrate_msgsize(num_migrate
, !!k
), GFP_ATOMIC
);
2181 if (build_migrate(skb
, m
, num_migrate
, k
, sel
, dir
, type
) < 0)
2184 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_MIGRATE
, GFP_ATOMIC
);
2187 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2188 const struct xfrm_migrate
*m
, int num_migrate
,
2189 const struct xfrm_kmaddress
*k
)
2191 return -ENOPROTOOPT
;
2195 #define XMSGSIZE(type) sizeof(struct type)
2197 static const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
2198 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2199 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2200 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2201 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2202 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2203 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2204 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
2205 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
2206 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
2207 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2208 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2209 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
2210 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
2211 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = 0,
2212 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2213 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2214 [XFRM_MSG_REPORT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_report
),
2215 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2216 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2217 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2222 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1] = {
2223 [XFRMA_SA
] = { .len
= sizeof(struct xfrm_usersa_info
)},
2224 [XFRMA_POLICY
] = { .len
= sizeof(struct xfrm_userpolicy_info
)},
2225 [XFRMA_LASTUSED
] = { .type
= NLA_U64
},
2226 [XFRMA_ALG_AUTH_TRUNC
] = { .len
= sizeof(struct xfrm_algo_auth
)},
2227 [XFRMA_ALG_AEAD
] = { .len
= sizeof(struct xfrm_algo_aead
) },
2228 [XFRMA_ALG_AUTH
] = { .len
= sizeof(struct xfrm_algo
) },
2229 [XFRMA_ALG_CRYPT
] = { .len
= sizeof(struct xfrm_algo
) },
2230 [XFRMA_ALG_COMP
] = { .len
= sizeof(struct xfrm_algo
) },
2231 [XFRMA_ENCAP
] = { .len
= sizeof(struct xfrm_encap_tmpl
) },
2232 [XFRMA_TMPL
] = { .len
= sizeof(struct xfrm_user_tmpl
) },
2233 [XFRMA_SEC_CTX
] = { .len
= sizeof(struct xfrm_sec_ctx
) },
2234 [XFRMA_LTIME_VAL
] = { .len
= sizeof(struct xfrm_lifetime_cur
) },
2235 [XFRMA_REPLAY_VAL
] = { .len
= sizeof(struct xfrm_replay_state
) },
2236 [XFRMA_REPLAY_THRESH
] = { .type
= NLA_U32
},
2237 [XFRMA_ETIMER_THRESH
] = { .type
= NLA_U32
},
2238 [XFRMA_SRCADDR
] = { .len
= sizeof(xfrm_address_t
) },
2239 [XFRMA_COADDR
] = { .len
= sizeof(xfrm_address_t
) },
2240 [XFRMA_POLICY_TYPE
] = { .len
= sizeof(struct xfrm_userpolicy_type
)},
2241 [XFRMA_MIGRATE
] = { .len
= sizeof(struct xfrm_user_migrate
) },
2242 [XFRMA_KMADDRESS
] = { .len
= sizeof(struct xfrm_user_kmaddress
) },
2243 [XFRMA_MARK
] = { .len
= sizeof(struct xfrm_mark
) },
2244 [XFRMA_TFCPAD
] = { .type
= NLA_U32
},
2245 [XFRMA_REPLAY_ESN_VAL
] = { .len
= sizeof(struct xfrm_replay_state_esn
) },
2248 static struct xfrm_link
{
2249 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
2250 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
2251 int (*done
)(struct netlink_callback
*);
2252 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
2253 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2254 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
2255 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
2256 .dump
= xfrm_dump_sa
,
2257 .done
= xfrm_dump_sa_done
},
2258 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2259 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
2260 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
2261 .dump
= xfrm_dump_policy
,
2262 .done
= xfrm_dump_policy_done
},
2263 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
2264 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_acquire
},
2265 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa_expire
},
2266 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2267 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2268 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_pol_expire
},
2269 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
2270 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
2271 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_new_ae
},
2272 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_ae
},
2273 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = { .doit
= xfrm_do_migrate
},
2274 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sadinfo
},
2275 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_spdinfo
},
2278 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
2280 struct net
*net
= sock_net(skb
->sk
);
2281 struct nlattr
*attrs
[XFRMA_MAX
+1];
2282 struct xfrm_link
*link
;
2285 type
= nlh
->nlmsg_type
;
2286 if (type
> XFRM_MSG_MAX
)
2289 type
-= XFRM_MSG_BASE
;
2290 link
= &xfrm_dispatch
[type
];
2292 /* All operations require privileges, even GET */
2293 if (security_netlink_recv(skb
, CAP_NET_ADMIN
))
2296 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
2297 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
2298 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
2299 if (link
->dump
== NULL
)
2302 return netlink_dump_start(net
->xfrm
.nlsk
, skb
, nlh
, link
->dump
, link
->done
);
2305 err
= nlmsg_parse(nlh
, xfrm_msg_min
[type
], attrs
, XFRMA_MAX
,
2310 if (link
->doit
== NULL
)
2313 return link
->doit(skb
, nlh
, attrs
);
2316 static void xfrm_netlink_rcv(struct sk_buff
*skb
)
2318 mutex_lock(&xfrm_cfg_mutex
);
2319 netlink_rcv_skb(skb
, &xfrm_user_rcv_msg
);
2320 mutex_unlock(&xfrm_cfg_mutex
);
2323 static inline size_t xfrm_expire_msgsize(void)
2325 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire
))
2326 + nla_total_size(sizeof(struct xfrm_mark
));
2329 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
2331 struct xfrm_user_expire
*ue
;
2332 struct nlmsghdr
*nlh
;
2334 nlh
= nlmsg_put(skb
, c
->pid
, 0, XFRM_MSG_EXPIRE
, sizeof(*ue
), 0);
2338 ue
= nlmsg_data(nlh
);
2339 copy_to_user_state(x
, &ue
->state
);
2340 ue
->hard
= (c
->data
.hard
!= 0) ? 1 : 0;
2342 if (xfrm_mark_put(skb
, &x
->mark
))
2343 goto nla_put_failure
;
2345 return nlmsg_end(skb
, nlh
);
2351 static int xfrm_exp_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2353 struct net
*net
= xs_net(x
);
2354 struct sk_buff
*skb
;
2356 skb
= nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC
);
2360 if (build_expire(skb
, x
, c
) < 0) {
2365 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_EXPIRE
, GFP_ATOMIC
);
2368 static int xfrm_aevent_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2370 struct net
*net
= xs_net(x
);
2371 struct sk_buff
*skb
;
2373 skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2377 if (build_aevent(skb
, x
, c
) < 0)
2380 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_AEVENTS
, GFP_ATOMIC
);
2383 static int xfrm_notify_sa_flush(const struct km_event
*c
)
2385 struct net
*net
= c
->net
;
2386 struct xfrm_usersa_flush
*p
;
2387 struct nlmsghdr
*nlh
;
2388 struct sk_buff
*skb
;
2389 int len
= NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush
));
2391 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2395 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, XFRM_MSG_FLUSHSA
, sizeof(*p
), 0);
2401 p
= nlmsg_data(nlh
);
2402 p
->proto
= c
->data
.proto
;
2404 nlmsg_end(skb
, nlh
);
2406 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_SA
, GFP_ATOMIC
);
2409 static inline size_t xfrm_sa_len(struct xfrm_state
*x
)
2413 l
+= nla_total_size(aead_len(x
->aead
));
2415 l
+= nla_total_size(sizeof(struct xfrm_algo
) +
2416 (x
->aalg
->alg_key_len
+ 7) / 8);
2417 l
+= nla_total_size(xfrm_alg_auth_len(x
->aalg
));
2420 l
+= nla_total_size(xfrm_alg_len(x
->ealg
));
2422 l
+= nla_total_size(sizeof(*x
->calg
));
2424 l
+= nla_total_size(sizeof(*x
->encap
));
2426 l
+= nla_total_size(sizeof(x
->tfcpad
));
2428 l
+= nla_total_size(xfrm_replay_state_esn_len(x
->replay_esn
));
2430 l
+= nla_total_size(sizeof(struct xfrm_user_sec_ctx
) +
2431 x
->security
->ctx_len
);
2433 l
+= nla_total_size(sizeof(*x
->coaddr
));
2435 /* Must count x->lastused as it may become non-zero behind our back. */
2436 l
+= nla_total_size(sizeof(u64
));
2441 static int xfrm_notify_sa(struct xfrm_state
*x
, const struct km_event
*c
)
2443 struct net
*net
= xs_net(x
);
2444 struct xfrm_usersa_info
*p
;
2445 struct xfrm_usersa_id
*id
;
2446 struct nlmsghdr
*nlh
;
2447 struct sk_buff
*skb
;
2448 int len
= xfrm_sa_len(x
);
2451 headlen
= sizeof(*p
);
2452 if (c
->event
== XFRM_MSG_DELSA
) {
2453 len
+= nla_total_size(headlen
);
2454 headlen
= sizeof(*id
);
2455 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2457 len
+= NLMSG_ALIGN(headlen
);
2459 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2463 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, c
->event
, headlen
, 0);
2465 goto nla_put_failure
;
2467 p
= nlmsg_data(nlh
);
2468 if (c
->event
== XFRM_MSG_DELSA
) {
2469 struct nlattr
*attr
;
2471 id
= nlmsg_data(nlh
);
2472 memcpy(&id
->daddr
, &x
->id
.daddr
, sizeof(id
->daddr
));
2473 id
->spi
= x
->id
.spi
;
2474 id
->family
= x
->props
.family
;
2475 id
->proto
= x
->id
.proto
;
2477 attr
= nla_reserve(skb
, XFRMA_SA
, sizeof(*p
));
2479 goto nla_put_failure
;
2484 if (copy_to_user_state_extra(x
, p
, skb
))
2485 goto nla_put_failure
;
2487 nlmsg_end(skb
, nlh
);
2489 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_SA
, GFP_ATOMIC
);
2492 /* Somebody screwed up with xfrm_sa_len! */
2498 static int xfrm_send_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2502 case XFRM_MSG_EXPIRE
:
2503 return xfrm_exp_state_notify(x
, c
);
2504 case XFRM_MSG_NEWAE
:
2505 return xfrm_aevent_state_notify(x
, c
);
2506 case XFRM_MSG_DELSA
:
2507 case XFRM_MSG_UPDSA
:
2508 case XFRM_MSG_NEWSA
:
2509 return xfrm_notify_sa(x
, c
);
2510 case XFRM_MSG_FLUSHSA
:
2511 return xfrm_notify_sa_flush(c
);
2513 printk(KERN_NOTICE
"xfrm_user: Unknown SA event %d\n",
2522 static inline size_t xfrm_acquire_msgsize(struct xfrm_state
*x
,
2523 struct xfrm_policy
*xp
)
2525 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire
))
2526 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2527 + nla_total_size(sizeof(struct xfrm_mark
))
2528 + nla_total_size(xfrm_user_sec_ctx_size(x
->security
))
2529 + userpolicy_type_attrsize();
2532 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
2533 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
,
2536 struct xfrm_user_acquire
*ua
;
2537 struct nlmsghdr
*nlh
;
2538 __u32 seq
= xfrm_get_acqseq();
2540 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_ACQUIRE
, sizeof(*ua
), 0);
2544 ua
= nlmsg_data(nlh
);
2545 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
2546 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
2547 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
2548 copy_to_user_policy(xp
, &ua
->policy
, dir
);
2549 ua
->aalgos
= xt
->aalgos
;
2550 ua
->ealgos
= xt
->ealgos
;
2551 ua
->calgos
= xt
->calgos
;
2552 ua
->seq
= x
->km
.seq
= seq
;
2554 if (copy_to_user_tmpl(xp
, skb
) < 0)
2556 if (copy_to_user_state_sec_ctx(x
, skb
))
2558 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
2560 if (xfrm_mark_put(skb
, &xp
->mark
))
2561 goto nla_put_failure
;
2563 return nlmsg_end(skb
, nlh
);
2567 nlmsg_cancel(skb
, nlh
);
2571 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
2572 struct xfrm_policy
*xp
, int dir
)
2574 struct net
*net
= xs_net(x
);
2575 struct sk_buff
*skb
;
2577 skb
= nlmsg_new(xfrm_acquire_msgsize(x
, xp
), GFP_ATOMIC
);
2581 if (build_acquire(skb
, x
, xt
, xp
, dir
) < 0)
2584 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_ACQUIRE
, GFP_ATOMIC
);
2587 /* User gives us xfrm_user_policy_info followed by an array of 0
2588 * or more templates.
2590 static struct xfrm_policy
*xfrm_compile_policy(struct sock
*sk
, int opt
,
2591 u8
*data
, int len
, int *dir
)
2593 struct net
*net
= sock_net(sk
);
2594 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
2595 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
2596 struct xfrm_policy
*xp
;
2599 switch (sk
->sk_family
) {
2601 if (opt
!= IP_XFRM_POLICY
) {
2606 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2608 if (opt
!= IPV6_XFRM_POLICY
) {
2621 if (len
< sizeof(*p
) ||
2622 verify_newpolicy_info(p
))
2625 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
2626 if (validate_tmpl(nr
, ut
, p
->sel
.family
))
2629 if (p
->dir
> XFRM_POLICY_OUT
)
2632 xp
= xfrm_policy_alloc(net
, GFP_ATOMIC
);
2638 copy_from_user_policy(xp
, p
);
2639 xp
->type
= XFRM_POLICY_TYPE_MAIN
;
2640 copy_templates(xp
, ut
, nr
);
2647 static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy
*xp
)
2649 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire
))
2650 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2651 + nla_total_size(xfrm_user_sec_ctx_size(xp
->security
))
2652 + nla_total_size(sizeof(struct xfrm_mark
))
2653 + userpolicy_type_attrsize();
2656 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
2657 int dir
, const struct km_event
*c
)
2659 struct xfrm_user_polexpire
*upe
;
2660 struct nlmsghdr
*nlh
;
2661 int hard
= c
->data
.hard
;
2663 nlh
= nlmsg_put(skb
, c
->pid
, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
), 0);
2667 upe
= nlmsg_data(nlh
);
2668 copy_to_user_policy(xp
, &upe
->pol
, dir
);
2669 if (copy_to_user_tmpl(xp
, skb
) < 0)
2671 if (copy_to_user_sec_ctx(xp
, skb
))
2673 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
2675 if (xfrm_mark_put(skb
, &xp
->mark
))
2676 goto nla_put_failure
;
2679 return nlmsg_end(skb
, nlh
);
2683 nlmsg_cancel(skb
, nlh
);
2687 static int xfrm_exp_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2689 struct net
*net
= xp_net(xp
);
2690 struct sk_buff
*skb
;
2692 skb
= nlmsg_new(xfrm_polexpire_msgsize(xp
), GFP_ATOMIC
);
2696 if (build_polexpire(skb
, xp
, dir
, c
) < 0)
2699 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_EXPIRE
, GFP_ATOMIC
);
2702 static int xfrm_notify_policy(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2704 struct net
*net
= xp_net(xp
);
2705 struct xfrm_userpolicy_info
*p
;
2706 struct xfrm_userpolicy_id
*id
;
2707 struct nlmsghdr
*nlh
;
2708 struct sk_buff
*skb
;
2709 int len
= nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
2712 headlen
= sizeof(*p
);
2713 if (c
->event
== XFRM_MSG_DELPOLICY
) {
2714 len
+= nla_total_size(headlen
);
2715 headlen
= sizeof(*id
);
2717 len
+= userpolicy_type_attrsize();
2718 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2719 len
+= NLMSG_ALIGN(headlen
);
2721 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2725 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, c
->event
, headlen
, 0);
2729 p
= nlmsg_data(nlh
);
2730 if (c
->event
== XFRM_MSG_DELPOLICY
) {
2731 struct nlattr
*attr
;
2733 id
= nlmsg_data(nlh
);
2734 memset(id
, 0, sizeof(*id
));
2737 id
->index
= xp
->index
;
2739 memcpy(&id
->sel
, &xp
->selector
, sizeof(id
->sel
));
2741 attr
= nla_reserve(skb
, XFRMA_POLICY
, sizeof(*p
));
2748 copy_to_user_policy(xp
, p
, dir
);
2749 if (copy_to_user_tmpl(xp
, skb
) < 0)
2751 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
2754 if (xfrm_mark_put(skb
, &xp
->mark
))
2755 goto nla_put_failure
;
2757 nlmsg_end(skb
, nlh
);
2759 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_POLICY
, GFP_ATOMIC
);
2767 static int xfrm_notify_policy_flush(const struct km_event
*c
)
2769 struct net
*net
= c
->net
;
2770 struct nlmsghdr
*nlh
;
2771 struct sk_buff
*skb
;
2773 skb
= nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC
);
2777 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, XFRM_MSG_FLUSHPOLICY
, 0, 0);
2780 if (copy_to_user_policy_type(c
->data
.type
, skb
) < 0)
2783 nlmsg_end(skb
, nlh
);
2785 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_POLICY
, GFP_ATOMIC
);
2792 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2796 case XFRM_MSG_NEWPOLICY
:
2797 case XFRM_MSG_UPDPOLICY
:
2798 case XFRM_MSG_DELPOLICY
:
2799 return xfrm_notify_policy(xp
, dir
, c
);
2800 case XFRM_MSG_FLUSHPOLICY
:
2801 return xfrm_notify_policy_flush(c
);
2802 case XFRM_MSG_POLEXPIRE
:
2803 return xfrm_exp_policy_notify(xp
, dir
, c
);
2805 printk(KERN_NOTICE
"xfrm_user: Unknown Policy event %d\n",
2813 static inline size_t xfrm_report_msgsize(void)
2815 return NLMSG_ALIGN(sizeof(struct xfrm_user_report
));
2818 static int build_report(struct sk_buff
*skb
, u8 proto
,
2819 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
2821 struct xfrm_user_report
*ur
;
2822 struct nlmsghdr
*nlh
;
2824 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_REPORT
, sizeof(*ur
), 0);
2828 ur
= nlmsg_data(nlh
);
2830 memcpy(&ur
->sel
, sel
, sizeof(ur
->sel
));
2833 NLA_PUT(skb
, XFRMA_COADDR
, sizeof(*addr
), addr
);
2835 return nlmsg_end(skb
, nlh
);
2838 nlmsg_cancel(skb
, nlh
);
2842 static int xfrm_send_report(struct net
*net
, u8 proto
,
2843 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
2845 struct sk_buff
*skb
;
2847 skb
= nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC
);
2851 if (build_report(skb
, proto
, sel
, addr
) < 0)
2854 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_REPORT
, GFP_ATOMIC
);
2857 static inline size_t xfrm_mapping_msgsize(void)
2859 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping
));
2862 static int build_mapping(struct sk_buff
*skb
, struct xfrm_state
*x
,
2863 xfrm_address_t
*new_saddr
, __be16 new_sport
)
2865 struct xfrm_user_mapping
*um
;
2866 struct nlmsghdr
*nlh
;
2868 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MAPPING
, sizeof(*um
), 0);
2872 um
= nlmsg_data(nlh
);
2874 memcpy(&um
->id
.daddr
, &x
->id
.daddr
, sizeof(um
->id
.daddr
));
2875 um
->id
.spi
= x
->id
.spi
;
2876 um
->id
.family
= x
->props
.family
;
2877 um
->id
.proto
= x
->id
.proto
;
2878 memcpy(&um
->new_saddr
, new_saddr
, sizeof(um
->new_saddr
));
2879 memcpy(&um
->old_saddr
, &x
->props
.saddr
, sizeof(um
->old_saddr
));
2880 um
->new_sport
= new_sport
;
2881 um
->old_sport
= x
->encap
->encap_sport
;
2882 um
->reqid
= x
->props
.reqid
;
2884 return nlmsg_end(skb
, nlh
);
2887 static int xfrm_send_mapping(struct xfrm_state
*x
, xfrm_address_t
*ipaddr
,
2890 struct net
*net
= xs_net(x
);
2891 struct sk_buff
*skb
;
2893 if (x
->id
.proto
!= IPPROTO_ESP
)
2899 skb
= nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC
);
2903 if (build_mapping(skb
, x
, ipaddr
, sport
) < 0)
2906 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_MAPPING
, GFP_ATOMIC
);
2909 static struct xfrm_mgr netlink_mgr
= {
2911 .notify
= xfrm_send_state_notify
,
2912 .acquire
= xfrm_send_acquire
,
2913 .compile_policy
= xfrm_compile_policy
,
2914 .notify_policy
= xfrm_send_policy_notify
,
2915 .report
= xfrm_send_report
,
2916 .migrate
= xfrm_send_migrate
,
2917 .new_mapping
= xfrm_send_mapping
,
2920 static int __net_init
xfrm_user_net_init(struct net
*net
)
2924 nlsk
= netlink_kernel_create(net
, NETLINK_XFRM
, XFRMNLGRP_MAX
,
2925 xfrm_netlink_rcv
, NULL
, THIS_MODULE
);
2928 net
->xfrm
.nlsk_stash
= nlsk
; /* Don't set to NULL */
2929 rcu_assign_pointer(net
->xfrm
.nlsk
, nlsk
);
2933 static void __net_exit
xfrm_user_net_exit(struct list_head
*net_exit_list
)
2936 list_for_each_entry(net
, net_exit_list
, exit_list
)
2937 rcu_assign_pointer(net
->xfrm
.nlsk
, NULL
);
2939 list_for_each_entry(net
, net_exit_list
, exit_list
)
2940 netlink_kernel_release(net
->xfrm
.nlsk_stash
);
2943 static struct pernet_operations xfrm_user_net_ops
= {
2944 .init
= xfrm_user_net_init
,
2945 .exit_batch
= xfrm_user_net_exit
,
2948 static int __init
xfrm_user_init(void)
2952 printk(KERN_INFO
"Initializing XFRM netlink socket\n");
2954 rv
= register_pernet_subsys(&xfrm_user_net_ops
);
2957 rv
= xfrm_register_km(&netlink_mgr
);
2959 unregister_pernet_subsys(&xfrm_user_net_ops
);
2963 static void __exit
xfrm_user_exit(void)
2965 xfrm_unregister_km(&netlink_mgr
);
2966 unregister_pernet_subsys(&xfrm_user_net_ops
);
2969 module_init(xfrm_user_init
);
2970 module_exit(xfrm_user_exit
);
2971 MODULE_LICENSE("GPL");
2972 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_XFRM
);