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 IS_ENABLED(CONFIG_IPV6)
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 IS_ENABLED(CONFIG_IPV6)
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 IS_ENABLED(CONFIG_IPV6)
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
))
761 goto nla_put_failure
;
764 nla_put_u64(skb
, XFRMA_LASTUSED
, x
->lastused
))
765 goto nla_put_failure
;
768 nla_put(skb
, XFRMA_ALG_AEAD
, aead_len(x
->aead
), x
->aead
))
769 goto nla_put_failure
;
772 (copy_to_user_auth(x
->aalg
, skb
) ||
773 nla_put(skb
, XFRMA_ALG_AUTH_TRUNC
,
774 xfrm_alg_auth_len(x
->aalg
), x
->aalg
)))
775 goto nla_put_failure
;
778 nla_put(skb
, XFRMA_ALG_CRYPT
, xfrm_alg_len(x
->ealg
), x
->ealg
))
779 goto nla_put_failure
;
782 nla_put(skb
, XFRMA_ALG_COMP
, sizeof(*(x
->calg
)), x
->calg
))
783 goto nla_put_failure
;
786 nla_put(skb
, XFRMA_ENCAP
, sizeof(*x
->encap
), x
->encap
))
787 goto nla_put_failure
;
790 nla_put_u32(skb
, XFRMA_TFCPAD
, x
->tfcpad
))
791 goto nla_put_failure
;
793 if (xfrm_mark_put(skb
, &x
->mark
))
794 goto nla_put_failure
;
797 nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
798 xfrm_replay_state_esn_len(x
->replay_esn
),
800 goto nla_put_failure
;
802 if (x
->security
&& copy_sec_ctx(x
->security
, skb
))
803 goto nla_put_failure
;
811 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
813 struct xfrm_dump_info
*sp
= ptr
;
814 struct sk_buff
*in_skb
= sp
->in_skb
;
815 struct sk_buff
*skb
= sp
->out_skb
;
816 struct xfrm_usersa_info
*p
;
817 struct nlmsghdr
*nlh
;
820 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, sp
->nlmsg_seq
,
821 XFRM_MSG_NEWSA
, sizeof(*p
), sp
->nlmsg_flags
);
827 err
= copy_to_user_state_extra(x
, p
, skb
);
829 goto nla_put_failure
;
835 nlmsg_cancel(skb
, nlh
);
839 static int xfrm_dump_sa_done(struct netlink_callback
*cb
)
841 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
842 xfrm_state_walk_done(walk
);
846 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
848 struct net
*net
= sock_net(skb
->sk
);
849 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
850 struct xfrm_dump_info info
;
852 BUILD_BUG_ON(sizeof(struct xfrm_state_walk
) >
853 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
855 info
.in_skb
= cb
->skb
;
857 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
858 info
.nlmsg_flags
= NLM_F_MULTI
;
862 xfrm_state_walk_init(walk
, 0);
865 (void) xfrm_state_walk(net
, walk
, dump_one_state
, &info
);
870 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
871 struct xfrm_state
*x
, u32 seq
)
873 struct xfrm_dump_info info
;
876 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
878 return ERR_PTR(-ENOMEM
);
880 info
.in_skb
= in_skb
;
882 info
.nlmsg_seq
= seq
;
883 info
.nlmsg_flags
= 0;
885 if (dump_one_state(x
, 0, &info
)) {
893 static inline size_t xfrm_spdinfo_msgsize(void)
895 return NLMSG_ALIGN(4)
896 + nla_total_size(sizeof(struct xfrmu_spdinfo
))
897 + nla_total_size(sizeof(struct xfrmu_spdhinfo
));
900 static int build_spdinfo(struct sk_buff
*skb
, struct net
*net
,
901 u32 pid
, u32 seq
, u32 flags
)
903 struct xfrmk_spdinfo si
;
904 struct xfrmu_spdinfo spc
;
905 struct xfrmu_spdhinfo sph
;
906 struct nlmsghdr
*nlh
;
909 nlh
= nlmsg_put(skb
, pid
, seq
, XFRM_MSG_NEWSPDINFO
, sizeof(u32
), 0);
910 if (nlh
== NULL
) /* shouldn't really happen ... */
915 xfrm_spd_getinfo(net
, &si
);
916 spc
.incnt
= si
.incnt
;
917 spc
.outcnt
= si
.outcnt
;
918 spc
.fwdcnt
= si
.fwdcnt
;
919 spc
.inscnt
= si
.inscnt
;
920 spc
.outscnt
= si
.outscnt
;
921 spc
.fwdscnt
= si
.fwdscnt
;
922 sph
.spdhcnt
= si
.spdhcnt
;
923 sph
.spdhmcnt
= si
.spdhmcnt
;
925 if (nla_put(skb
, XFRMA_SPD_INFO
, sizeof(spc
), &spc
) ||
926 nla_put(skb
, XFRMA_SPD_HINFO
, sizeof(sph
), &sph
))
927 goto nla_put_failure
;
929 return nlmsg_end(skb
, nlh
);
932 nlmsg_cancel(skb
, nlh
);
936 static int xfrm_get_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
937 struct nlattr
**attrs
)
939 struct net
*net
= sock_net(skb
->sk
);
940 struct sk_buff
*r_skb
;
941 u32
*flags
= nlmsg_data(nlh
);
942 u32 spid
= NETLINK_CB(skb
).pid
;
943 u32 seq
= nlh
->nlmsg_seq
;
945 r_skb
= nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC
);
949 if (build_spdinfo(r_skb
, net
, spid
, seq
, *flags
) < 0)
952 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, spid
);
955 static inline size_t xfrm_sadinfo_msgsize(void)
957 return NLMSG_ALIGN(4)
958 + nla_total_size(sizeof(struct xfrmu_sadhinfo
))
959 + nla_total_size(4); /* XFRMA_SAD_CNT */
962 static int build_sadinfo(struct sk_buff
*skb
, struct net
*net
,
963 u32 pid
, u32 seq
, u32 flags
)
965 struct xfrmk_sadinfo si
;
966 struct xfrmu_sadhinfo sh
;
967 struct nlmsghdr
*nlh
;
970 nlh
= nlmsg_put(skb
, pid
, seq
, XFRM_MSG_NEWSADINFO
, sizeof(u32
), 0);
971 if (nlh
== NULL
) /* shouldn't really happen ... */
976 xfrm_sad_getinfo(net
, &si
);
978 sh
.sadhmcnt
= si
.sadhmcnt
;
979 sh
.sadhcnt
= si
.sadhcnt
;
981 if (nla_put_u32(skb
, XFRMA_SAD_CNT
, si
.sadcnt
) ||
982 nla_put(skb
, XFRMA_SAD_HINFO
, sizeof(sh
), &sh
))
983 goto nla_put_failure
;
985 return nlmsg_end(skb
, nlh
);
988 nlmsg_cancel(skb
, nlh
);
992 static int xfrm_get_sadinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
993 struct nlattr
**attrs
)
995 struct net
*net
= sock_net(skb
->sk
);
996 struct sk_buff
*r_skb
;
997 u32
*flags
= nlmsg_data(nlh
);
998 u32 spid
= NETLINK_CB(skb
).pid
;
999 u32 seq
= nlh
->nlmsg_seq
;
1001 r_skb
= nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC
);
1005 if (build_sadinfo(r_skb
, net
, spid
, seq
, *flags
) < 0)
1008 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, spid
);
1011 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1012 struct nlattr
**attrs
)
1014 struct net
*net
= sock_net(skb
->sk
);
1015 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
1016 struct xfrm_state
*x
;
1017 struct sk_buff
*resp_skb
;
1020 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
1024 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1025 if (IS_ERR(resp_skb
)) {
1026 err
= PTR_ERR(resp_skb
);
1028 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).pid
);
1035 static int verify_userspi_info(struct xfrm_userspi_info
*p
)
1037 switch (p
->info
.id
.proto
) {
1043 /* IPCOMP spi is 16-bits. */
1044 if (p
->max
>= 0x10000)
1052 if (p
->min
> p
->max
)
1058 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1059 struct nlattr
**attrs
)
1061 struct net
*net
= sock_net(skb
->sk
);
1062 struct xfrm_state
*x
;
1063 struct xfrm_userspi_info
*p
;
1064 struct sk_buff
*resp_skb
;
1065 xfrm_address_t
*daddr
;
1071 p
= nlmsg_data(nlh
);
1072 err
= verify_userspi_info(p
);
1076 family
= p
->info
.family
;
1077 daddr
= &p
->info
.id
.daddr
;
1081 mark
= xfrm_mark_get(attrs
, &m
);
1083 x
= xfrm_find_acq_byseq(net
, mark
, p
->info
.seq
);
1084 if (x
&& xfrm_addr_cmp(&x
->id
.daddr
, daddr
, family
)) {
1091 x
= xfrm_find_acq(net
, &m
, p
->info
.mode
, p
->info
.reqid
,
1092 p
->info
.id
.proto
, daddr
,
1099 err
= xfrm_alloc_spi(x
, p
->min
, p
->max
);
1103 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1104 if (IS_ERR(resp_skb
)) {
1105 err
= PTR_ERR(resp_skb
);
1109 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).pid
);
1117 static int verify_policy_dir(u8 dir
)
1120 case XFRM_POLICY_IN
:
1121 case XFRM_POLICY_OUT
:
1122 case XFRM_POLICY_FWD
:
1132 static int verify_policy_type(u8 type
)
1135 case XFRM_POLICY_TYPE_MAIN
:
1136 #ifdef CONFIG_XFRM_SUB_POLICY
1137 case XFRM_POLICY_TYPE_SUB
:
1148 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
)
1151 case XFRM_SHARE_ANY
:
1152 case XFRM_SHARE_SESSION
:
1153 case XFRM_SHARE_USER
:
1154 case XFRM_SHARE_UNIQUE
:
1161 switch (p
->action
) {
1162 case XFRM_POLICY_ALLOW
:
1163 case XFRM_POLICY_BLOCK
:
1170 switch (p
->sel
.family
) {
1175 #if IS_ENABLED(CONFIG_IPV6)
1178 return -EAFNOSUPPORT
;
1185 return verify_policy_dir(p
->dir
);
1188 static int copy_from_user_sec_ctx(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1190 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1191 struct xfrm_user_sec_ctx
*uctx
;
1196 uctx
= nla_data(rt
);
1197 return security_xfrm_policy_alloc(&pol
->security
, uctx
);
1200 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
1206 for (i
= 0; i
< nr
; i
++, ut
++) {
1207 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1209 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
1210 memcpy(&t
->saddr
, &ut
->saddr
,
1211 sizeof(xfrm_address_t
));
1212 t
->reqid
= ut
->reqid
;
1214 t
->share
= ut
->share
;
1215 t
->optional
= ut
->optional
;
1216 t
->aalgos
= ut
->aalgos
;
1217 t
->ealgos
= ut
->ealgos
;
1218 t
->calgos
= ut
->calgos
;
1219 /* If all masks are ~0, then we allow all algorithms. */
1220 t
->allalgs
= !~(t
->aalgos
& t
->ealgos
& t
->calgos
);
1221 t
->encap_family
= ut
->family
;
1225 static int validate_tmpl(int nr
, struct xfrm_user_tmpl
*ut
, u16 family
)
1229 if (nr
> XFRM_MAX_DEPTH
)
1232 for (i
= 0; i
< nr
; i
++) {
1233 /* We never validated the ut->family value, so many
1234 * applications simply leave it at zero. The check was
1235 * never made and ut->family was ignored because all
1236 * templates could be assumed to have the same family as
1237 * the policy itself. Now that we will have ipv4-in-ipv6
1238 * and ipv6-in-ipv4 tunnels, this is no longer true.
1241 ut
[i
].family
= family
;
1243 switch (ut
[i
].family
) {
1246 #if IS_ENABLED(CONFIG_IPV6)
1258 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1260 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1265 struct xfrm_user_tmpl
*utmpl
= nla_data(rt
);
1266 int nr
= nla_len(rt
) / sizeof(*utmpl
);
1269 err
= validate_tmpl(nr
, utmpl
, pol
->family
);
1273 copy_templates(pol
, utmpl
, nr
);
1278 static int copy_from_user_policy_type(u8
*tp
, struct nlattr
**attrs
)
1280 struct nlattr
*rt
= attrs
[XFRMA_POLICY_TYPE
];
1281 struct xfrm_userpolicy_type
*upt
;
1282 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1290 err
= verify_policy_type(type
);
1298 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
1300 xp
->priority
= p
->priority
;
1301 xp
->index
= p
->index
;
1302 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
1303 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
1304 xp
->action
= p
->action
;
1305 xp
->flags
= p
->flags
;
1306 xp
->family
= p
->sel
.family
;
1307 /* XXX xp->share = p->share; */
1310 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
1312 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
1313 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
1314 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
1315 p
->priority
= xp
->priority
;
1316 p
->index
= xp
->index
;
1317 p
->sel
.family
= xp
->family
;
1319 p
->action
= xp
->action
;
1320 p
->flags
= xp
->flags
;
1321 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
1324 static struct xfrm_policy
*xfrm_policy_construct(struct net
*net
, struct xfrm_userpolicy_info
*p
, struct nlattr
**attrs
, int *errp
)
1326 struct xfrm_policy
*xp
= xfrm_policy_alloc(net
, GFP_KERNEL
);
1334 copy_from_user_policy(xp
, p
);
1336 err
= copy_from_user_policy_type(&xp
->type
, attrs
);
1340 if (!(err
= copy_from_user_tmpl(xp
, attrs
)))
1341 err
= copy_from_user_sec_ctx(xp
, attrs
);
1345 xfrm_mark_get(attrs
, &xp
->mark
);
1351 xfrm_policy_destroy(xp
);
1355 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1356 struct nlattr
**attrs
)
1358 struct net
*net
= sock_net(skb
->sk
);
1359 struct xfrm_userpolicy_info
*p
= nlmsg_data(nlh
);
1360 struct xfrm_policy
*xp
;
1364 uid_t loginuid
= audit_get_loginuid(current
);
1365 u32 sessionid
= audit_get_sessionid(current
);
1368 err
= verify_newpolicy_info(p
);
1371 err
= verify_sec_ctx_len(attrs
);
1375 xp
= xfrm_policy_construct(net
, p
, attrs
, &err
);
1379 /* shouldn't excl be based on nlh flags??
1380 * Aha! this is anti-netlink really i.e more pfkey derived
1381 * in netlink excl is a flag and you wouldnt need
1382 * a type XFRM_MSG_UPDPOLICY - JHS */
1383 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
1384 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
1385 security_task_getsecid(current
, &sid
);
1386 xfrm_audit_policy_add(xp
, err
? 0 : 1, loginuid
, sessionid
, sid
);
1389 security_xfrm_policy_free(xp
->security
);
1394 c
.event
= nlh
->nlmsg_type
;
1395 c
.seq
= nlh
->nlmsg_seq
;
1396 c
.pid
= nlh
->nlmsg_pid
;
1397 km_policy_notify(xp
, p
->dir
, &c
);
1404 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1406 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
1409 if (xp
->xfrm_nr
== 0)
1412 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
1413 struct xfrm_user_tmpl
*up
= &vec
[i
];
1414 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
1416 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
1417 up
->family
= kp
->encap_family
;
1418 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
1419 up
->reqid
= kp
->reqid
;
1420 up
->mode
= kp
->mode
;
1421 up
->share
= kp
->share
;
1422 up
->optional
= kp
->optional
;
1423 up
->aalgos
= kp
->aalgos
;
1424 up
->ealgos
= kp
->ealgos
;
1425 up
->calgos
= kp
->calgos
;
1428 return nla_put(skb
, XFRMA_TMPL
,
1429 sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
, vec
);
1432 static inline int copy_to_user_state_sec_ctx(struct xfrm_state
*x
, struct sk_buff
*skb
)
1435 return copy_sec_ctx(x
->security
, skb
);
1440 static inline int copy_to_user_sec_ctx(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1443 return copy_sec_ctx(xp
->security
, skb
);
1447 static inline size_t userpolicy_type_attrsize(void)
1449 #ifdef CONFIG_XFRM_SUB_POLICY
1450 return nla_total_size(sizeof(struct xfrm_userpolicy_type
));
1456 #ifdef CONFIG_XFRM_SUB_POLICY
1457 static int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1459 struct xfrm_userpolicy_type upt
= {
1463 return nla_put(skb
, XFRMA_POLICY_TYPE
, sizeof(upt
), &upt
);
1467 static inline int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1473 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
1475 struct xfrm_dump_info
*sp
= ptr
;
1476 struct xfrm_userpolicy_info
*p
;
1477 struct sk_buff
*in_skb
= sp
->in_skb
;
1478 struct sk_buff
*skb
= sp
->out_skb
;
1479 struct nlmsghdr
*nlh
;
1481 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, sp
->nlmsg_seq
,
1482 XFRM_MSG_NEWPOLICY
, sizeof(*p
), sp
->nlmsg_flags
);
1486 p
= nlmsg_data(nlh
);
1487 copy_to_user_policy(xp
, p
, dir
);
1488 if (copy_to_user_tmpl(xp
, skb
) < 0)
1490 if (copy_to_user_sec_ctx(xp
, skb
))
1492 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
1494 if (xfrm_mark_put(skb
, &xp
->mark
))
1495 goto nla_put_failure
;
1497 nlmsg_end(skb
, nlh
);
1502 nlmsg_cancel(skb
, nlh
);
1506 static int xfrm_dump_policy_done(struct netlink_callback
*cb
)
1508 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*) &cb
->args
[1];
1510 xfrm_policy_walk_done(walk
);
1514 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1516 struct net
*net
= sock_net(skb
->sk
);
1517 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*) &cb
->args
[1];
1518 struct xfrm_dump_info info
;
1520 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk
) >
1521 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
1523 info
.in_skb
= cb
->skb
;
1525 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1526 info
.nlmsg_flags
= NLM_F_MULTI
;
1530 xfrm_policy_walk_init(walk
, XFRM_POLICY_TYPE_ANY
);
1533 (void) xfrm_policy_walk(net
, walk
, dump_one_policy
, &info
);
1538 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
1539 struct xfrm_policy
*xp
,
1542 struct xfrm_dump_info info
;
1543 struct sk_buff
*skb
;
1545 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1547 return ERR_PTR(-ENOMEM
);
1549 info
.in_skb
= in_skb
;
1551 info
.nlmsg_seq
= seq
;
1552 info
.nlmsg_flags
= 0;
1554 if (dump_one_policy(xp
, dir
, 0, &info
) < 0) {
1562 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1563 struct nlattr
**attrs
)
1565 struct net
*net
= sock_net(skb
->sk
);
1566 struct xfrm_policy
*xp
;
1567 struct xfrm_userpolicy_id
*p
;
1568 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1573 u32 mark
= xfrm_mark_get(attrs
, &m
);
1575 p
= nlmsg_data(nlh
);
1576 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
1578 err
= copy_from_user_policy_type(&type
, attrs
);
1582 err
= verify_policy_dir(p
->dir
);
1587 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, delete, &err
);
1589 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1590 struct xfrm_sec_ctx
*ctx
;
1592 err
= verify_sec_ctx_len(attrs
);
1598 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1600 err
= security_xfrm_policy_alloc(&ctx
, uctx
);
1604 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
, &p
->sel
,
1606 security_xfrm_policy_free(ctx
);
1612 struct sk_buff
*resp_skb
;
1614 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
1615 if (IS_ERR(resp_skb
)) {
1616 err
= PTR_ERR(resp_skb
);
1618 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
,
1619 NETLINK_CB(skb
).pid
);
1622 uid_t loginuid
= audit_get_loginuid(current
);
1623 u32 sessionid
= audit_get_sessionid(current
);
1626 security_task_getsecid(current
, &sid
);
1627 xfrm_audit_policy_delete(xp
, err
? 0 : 1, loginuid
, sessionid
,
1633 c
.data
.byid
= p
->index
;
1634 c
.event
= nlh
->nlmsg_type
;
1635 c
.seq
= nlh
->nlmsg_seq
;
1636 c
.pid
= nlh
->nlmsg_pid
;
1637 km_policy_notify(xp
, p
->dir
, &c
);
1645 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1646 struct nlattr
**attrs
)
1648 struct net
*net
= sock_net(skb
->sk
);
1650 struct xfrm_usersa_flush
*p
= nlmsg_data(nlh
);
1651 struct xfrm_audit audit_info
;
1654 audit_info
.loginuid
= audit_get_loginuid(current
);
1655 audit_info
.sessionid
= audit_get_sessionid(current
);
1656 security_task_getsecid(current
, &audit_info
.secid
);
1657 err
= xfrm_state_flush(net
, p
->proto
, &audit_info
);
1659 if (err
== -ESRCH
) /* empty table */
1663 c
.data
.proto
= p
->proto
;
1664 c
.event
= nlh
->nlmsg_type
;
1665 c
.seq
= nlh
->nlmsg_seq
;
1666 c
.pid
= nlh
->nlmsg_pid
;
1668 km_state_notify(NULL
, &c
);
1673 static inline size_t xfrm_aevent_msgsize(struct xfrm_state
*x
)
1675 size_t replay_size
= x
->replay_esn
?
1676 xfrm_replay_state_esn_len(x
->replay_esn
) :
1677 sizeof(struct xfrm_replay_state
);
1679 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id
))
1680 + nla_total_size(replay_size
)
1681 + nla_total_size(sizeof(struct xfrm_lifetime_cur
))
1682 + nla_total_size(sizeof(struct xfrm_mark
))
1683 + nla_total_size(4) /* XFRM_AE_RTHR */
1684 + nla_total_size(4); /* XFRM_AE_ETHR */
1687 static int build_aevent(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
1689 struct xfrm_aevent_id
*id
;
1690 struct nlmsghdr
*nlh
;
1692 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, XFRM_MSG_NEWAE
, sizeof(*id
), 0);
1696 id
= nlmsg_data(nlh
);
1697 memcpy(&id
->sa_id
.daddr
, &x
->id
.daddr
,sizeof(x
->id
.daddr
));
1698 id
->sa_id
.spi
= x
->id
.spi
;
1699 id
->sa_id
.family
= x
->props
.family
;
1700 id
->sa_id
.proto
= x
->id
.proto
;
1701 memcpy(&id
->saddr
, &x
->props
.saddr
,sizeof(x
->props
.saddr
));
1702 id
->reqid
= x
->props
.reqid
;
1703 id
->flags
= c
->data
.aevent
;
1705 if (x
->replay_esn
) {
1706 if (nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
1707 xfrm_replay_state_esn_len(x
->replay_esn
),
1709 goto nla_put_failure
;
1711 if (nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
1713 goto nla_put_failure
;
1715 if (nla_put(skb
, XFRMA_LTIME_VAL
, sizeof(x
->curlft
), &x
->curlft
))
1716 goto nla_put_failure
;
1718 if ((id
->flags
& XFRM_AE_RTHR
) &&
1719 nla_put_u32(skb
, XFRMA_REPLAY_THRESH
, x
->replay_maxdiff
))
1720 goto nla_put_failure
;
1722 if ((id
->flags
& XFRM_AE_ETHR
) &&
1723 nla_put_u32(skb
, XFRMA_ETIMER_THRESH
,
1724 x
->replay_maxage
* 10 / HZ
))
1725 goto nla_put_failure
;
1727 if (xfrm_mark_put(skb
, &x
->mark
))
1728 goto nla_put_failure
;
1730 return nlmsg_end(skb
, nlh
);
1733 nlmsg_cancel(skb
, nlh
);
1737 static int xfrm_get_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1738 struct nlattr
**attrs
)
1740 struct net
*net
= sock_net(skb
->sk
);
1741 struct xfrm_state
*x
;
1742 struct sk_buff
*r_skb
;
1747 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1748 struct xfrm_usersa_id
*id
= &p
->sa_id
;
1750 mark
= xfrm_mark_get(attrs
, &m
);
1752 x
= xfrm_state_lookup(net
, mark
, &id
->daddr
, id
->spi
, id
->proto
, id
->family
);
1756 r_skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
1757 if (r_skb
== NULL
) {
1763 * XXX: is this lock really needed - none of the other
1764 * gets lock (the concern is things getting updated
1765 * while we are still reading) - jhs
1767 spin_lock_bh(&x
->lock
);
1768 c
.data
.aevent
= p
->flags
;
1769 c
.seq
= nlh
->nlmsg_seq
;
1770 c
.pid
= nlh
->nlmsg_pid
;
1772 if (build_aevent(r_skb
, x
, &c
) < 0)
1774 err
= nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, NETLINK_CB(skb
).pid
);
1775 spin_unlock_bh(&x
->lock
);
1780 static int xfrm_new_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1781 struct nlattr
**attrs
)
1783 struct net
*net
= sock_net(skb
->sk
);
1784 struct xfrm_state
*x
;
1789 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1790 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
1791 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
1792 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
1794 if (!lt
&& !rp
&& !re
)
1797 /* pedantic mode - thou shalt sayeth replaceth */
1798 if (!(nlh
->nlmsg_flags
&NLM_F_REPLACE
))
1801 mark
= xfrm_mark_get(attrs
, &m
);
1803 x
= xfrm_state_lookup(net
, mark
, &p
->sa_id
.daddr
, p
->sa_id
.spi
, p
->sa_id
.proto
, p
->sa_id
.family
);
1807 if (x
->km
.state
!= XFRM_STATE_VALID
)
1810 err
= xfrm_replay_verify_len(x
->replay_esn
, rp
);
1814 spin_lock_bh(&x
->lock
);
1815 xfrm_update_ae_params(x
, attrs
);
1816 spin_unlock_bh(&x
->lock
);
1818 c
.event
= nlh
->nlmsg_type
;
1819 c
.seq
= nlh
->nlmsg_seq
;
1820 c
.pid
= nlh
->nlmsg_pid
;
1821 c
.data
.aevent
= XFRM_AE_CU
;
1822 km_state_notify(x
, &c
);
1829 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1830 struct nlattr
**attrs
)
1832 struct net
*net
= sock_net(skb
->sk
);
1834 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1836 struct xfrm_audit audit_info
;
1838 err
= copy_from_user_policy_type(&type
, attrs
);
1842 audit_info
.loginuid
= audit_get_loginuid(current
);
1843 audit_info
.sessionid
= audit_get_sessionid(current
);
1844 security_task_getsecid(current
, &audit_info
.secid
);
1845 err
= xfrm_policy_flush(net
, type
, &audit_info
);
1847 if (err
== -ESRCH
) /* empty table */
1853 c
.event
= nlh
->nlmsg_type
;
1854 c
.seq
= nlh
->nlmsg_seq
;
1855 c
.pid
= nlh
->nlmsg_pid
;
1857 km_policy_notify(NULL
, 0, &c
);
1861 static int xfrm_add_pol_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1862 struct nlattr
**attrs
)
1864 struct net
*net
= sock_net(skb
->sk
);
1865 struct xfrm_policy
*xp
;
1866 struct xfrm_user_polexpire
*up
= nlmsg_data(nlh
);
1867 struct xfrm_userpolicy_info
*p
= &up
->pol
;
1868 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1871 u32 mark
= xfrm_mark_get(attrs
, &m
);
1873 err
= copy_from_user_policy_type(&type
, attrs
);
1877 err
= verify_policy_dir(p
->dir
);
1882 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, 0, &err
);
1884 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1885 struct xfrm_sec_ctx
*ctx
;
1887 err
= verify_sec_ctx_len(attrs
);
1893 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1895 err
= security_xfrm_policy_alloc(&ctx
, uctx
);
1899 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
,
1900 &p
->sel
, ctx
, 0, &err
);
1901 security_xfrm_policy_free(ctx
);
1906 if (unlikely(xp
->walk
.dead
))
1911 uid_t loginuid
= audit_get_loginuid(current
);
1912 u32 sessionid
= audit_get_sessionid(current
);
1915 security_task_getsecid(current
, &sid
);
1916 xfrm_policy_delete(xp
, p
->dir
);
1917 xfrm_audit_policy_delete(xp
, 1, loginuid
, sessionid
, sid
);
1920 // reset the timers here?
1921 WARN(1, "Dont know what to do with soft policy expire\n");
1923 km_policy_expired(xp
, p
->dir
, up
->hard
, current
->pid
);
1930 static int xfrm_add_sa_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1931 struct nlattr
**attrs
)
1933 struct net
*net
= sock_net(skb
->sk
);
1934 struct xfrm_state
*x
;
1936 struct xfrm_user_expire
*ue
= nlmsg_data(nlh
);
1937 struct xfrm_usersa_info
*p
= &ue
->state
;
1939 u32 mark
= xfrm_mark_get(attrs
, &m
);
1941 x
= xfrm_state_lookup(net
, mark
, &p
->id
.daddr
, p
->id
.spi
, p
->id
.proto
, p
->family
);
1947 spin_lock_bh(&x
->lock
);
1949 if (x
->km
.state
!= XFRM_STATE_VALID
)
1951 km_state_expired(x
, ue
->hard
, current
->pid
);
1954 uid_t loginuid
= audit_get_loginuid(current
);
1955 u32 sessionid
= audit_get_sessionid(current
);
1958 security_task_getsecid(current
, &sid
);
1959 __xfrm_state_delete(x
);
1960 xfrm_audit_state_delete(x
, 1, loginuid
, sessionid
, sid
);
1964 spin_unlock_bh(&x
->lock
);
1969 static int xfrm_add_acquire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1970 struct nlattr
**attrs
)
1972 struct net
*net
= sock_net(skb
->sk
);
1973 struct xfrm_policy
*xp
;
1974 struct xfrm_user_tmpl
*ut
;
1976 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1977 struct xfrm_mark mark
;
1979 struct xfrm_user_acquire
*ua
= nlmsg_data(nlh
);
1980 struct xfrm_state
*x
= xfrm_state_alloc(net
);
1986 xfrm_mark_get(attrs
, &mark
);
1988 err
= verify_newpolicy_info(&ua
->policy
);
1993 xp
= xfrm_policy_construct(net
, &ua
->policy
, attrs
, &err
);
1997 memcpy(&x
->id
, &ua
->id
, sizeof(ua
->id
));
1998 memcpy(&x
->props
.saddr
, &ua
->saddr
, sizeof(ua
->saddr
));
1999 memcpy(&x
->sel
, &ua
->sel
, sizeof(ua
->sel
));
2000 xp
->mark
.m
= x
->mark
.m
= mark
.m
;
2001 xp
->mark
.v
= x
->mark
.v
= mark
.v
;
2003 /* extract the templates and for each call km_key */
2004 for (i
= 0; i
< xp
->xfrm_nr
; i
++, ut
++) {
2005 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
2006 memcpy(&x
->id
, &t
->id
, sizeof(x
->id
));
2007 x
->props
.mode
= t
->mode
;
2008 x
->props
.reqid
= t
->reqid
;
2009 x
->props
.family
= ut
->family
;
2010 t
->aalgos
= ua
->aalgos
;
2011 t
->ealgos
= ua
->ealgos
;
2012 t
->calgos
= ua
->calgos
;
2013 err
= km_query(x
, t
, xp
);
2023 WARN(1, "BAD policy passed\n");
2030 #ifdef CONFIG_XFRM_MIGRATE
2031 static int copy_from_user_migrate(struct xfrm_migrate
*ma
,
2032 struct xfrm_kmaddress
*k
,
2033 struct nlattr
**attrs
, int *num
)
2035 struct nlattr
*rt
= attrs
[XFRMA_MIGRATE
];
2036 struct xfrm_user_migrate
*um
;
2040 struct xfrm_user_kmaddress
*uk
;
2042 uk
= nla_data(attrs
[XFRMA_KMADDRESS
]);
2043 memcpy(&k
->local
, &uk
->local
, sizeof(k
->local
));
2044 memcpy(&k
->remote
, &uk
->remote
, sizeof(k
->remote
));
2045 k
->family
= uk
->family
;
2046 k
->reserved
= uk
->reserved
;
2050 num_migrate
= nla_len(rt
) / sizeof(*um
);
2052 if (num_migrate
<= 0 || num_migrate
> XFRM_MAX_DEPTH
)
2055 for (i
= 0; i
< num_migrate
; i
++, um
++, ma
++) {
2056 memcpy(&ma
->old_daddr
, &um
->old_daddr
, sizeof(ma
->old_daddr
));
2057 memcpy(&ma
->old_saddr
, &um
->old_saddr
, sizeof(ma
->old_saddr
));
2058 memcpy(&ma
->new_daddr
, &um
->new_daddr
, sizeof(ma
->new_daddr
));
2059 memcpy(&ma
->new_saddr
, &um
->new_saddr
, sizeof(ma
->new_saddr
));
2061 ma
->proto
= um
->proto
;
2062 ma
->mode
= um
->mode
;
2063 ma
->reqid
= um
->reqid
;
2065 ma
->old_family
= um
->old_family
;
2066 ma
->new_family
= um
->new_family
;
2073 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2074 struct nlattr
**attrs
)
2076 struct xfrm_userpolicy_id
*pi
= nlmsg_data(nlh
);
2077 struct xfrm_migrate m
[XFRM_MAX_DEPTH
];
2078 struct xfrm_kmaddress km
, *kmp
;
2083 if (attrs
[XFRMA_MIGRATE
] == NULL
)
2086 kmp
= attrs
[XFRMA_KMADDRESS
] ? &km
: NULL
;
2088 err
= copy_from_user_policy_type(&type
, attrs
);
2092 err
= copy_from_user_migrate((struct xfrm_migrate
*)m
, kmp
, attrs
, &n
);
2099 xfrm_migrate(&pi
->sel
, pi
->dir
, type
, m
, n
, kmp
);
2104 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2105 struct nlattr
**attrs
)
2107 return -ENOPROTOOPT
;
2111 #ifdef CONFIG_XFRM_MIGRATE
2112 static int copy_to_user_migrate(const struct xfrm_migrate
*m
, struct sk_buff
*skb
)
2114 struct xfrm_user_migrate um
;
2116 memset(&um
, 0, sizeof(um
));
2117 um
.proto
= m
->proto
;
2119 um
.reqid
= m
->reqid
;
2120 um
.old_family
= m
->old_family
;
2121 memcpy(&um
.old_daddr
, &m
->old_daddr
, sizeof(um
.old_daddr
));
2122 memcpy(&um
.old_saddr
, &m
->old_saddr
, sizeof(um
.old_saddr
));
2123 um
.new_family
= m
->new_family
;
2124 memcpy(&um
.new_daddr
, &m
->new_daddr
, sizeof(um
.new_daddr
));
2125 memcpy(&um
.new_saddr
, &m
->new_saddr
, sizeof(um
.new_saddr
));
2127 return nla_put(skb
, XFRMA_MIGRATE
, sizeof(um
), &um
);
2130 static int copy_to_user_kmaddress(const struct xfrm_kmaddress
*k
, struct sk_buff
*skb
)
2132 struct xfrm_user_kmaddress uk
;
2134 memset(&uk
, 0, sizeof(uk
));
2135 uk
.family
= k
->family
;
2136 uk
.reserved
= k
->reserved
;
2137 memcpy(&uk
.local
, &k
->local
, sizeof(uk
.local
));
2138 memcpy(&uk
.remote
, &k
->remote
, sizeof(uk
.remote
));
2140 return nla_put(skb
, XFRMA_KMADDRESS
, sizeof(uk
), &uk
);
2143 static inline size_t xfrm_migrate_msgsize(int num_migrate
, int with_kma
)
2145 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id
))
2146 + (with_kma
? nla_total_size(sizeof(struct xfrm_kmaddress
)) : 0)
2147 + nla_total_size(sizeof(struct xfrm_user_migrate
) * num_migrate
)
2148 + userpolicy_type_attrsize();
2151 static int build_migrate(struct sk_buff
*skb
, const struct xfrm_migrate
*m
,
2152 int num_migrate
, const struct xfrm_kmaddress
*k
,
2153 const struct xfrm_selector
*sel
, u8 dir
, u8 type
)
2155 const struct xfrm_migrate
*mp
;
2156 struct xfrm_userpolicy_id
*pol_id
;
2157 struct nlmsghdr
*nlh
;
2160 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MIGRATE
, sizeof(*pol_id
), 0);
2164 pol_id
= nlmsg_data(nlh
);
2165 /* copy data from selector, dir, and type to the pol_id */
2166 memset(pol_id
, 0, sizeof(*pol_id
));
2167 memcpy(&pol_id
->sel
, sel
, sizeof(pol_id
->sel
));
2170 if (k
!= NULL
&& (copy_to_user_kmaddress(k
, skb
) < 0))
2173 if (copy_to_user_policy_type(type
, skb
) < 0)
2176 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
2177 if (copy_to_user_migrate(mp
, skb
) < 0)
2181 return nlmsg_end(skb
, nlh
);
2183 nlmsg_cancel(skb
, nlh
);
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 struct net
*net
= &init_net
;
2192 struct sk_buff
*skb
;
2194 skb
= nlmsg_new(xfrm_migrate_msgsize(num_migrate
, !!k
), GFP_ATOMIC
);
2199 if (build_migrate(skb
, m
, num_migrate
, k
, sel
, dir
, type
) < 0)
2202 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_MIGRATE
, GFP_ATOMIC
);
2205 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2206 const struct xfrm_migrate
*m
, int num_migrate
,
2207 const struct xfrm_kmaddress
*k
)
2209 return -ENOPROTOOPT
;
2213 #define XMSGSIZE(type) sizeof(struct type)
2215 static const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
2216 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2217 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2218 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2219 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2220 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2221 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2222 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
2223 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
2224 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
2225 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2226 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2227 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
2228 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
2229 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = 0,
2230 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2231 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2232 [XFRM_MSG_REPORT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_report
),
2233 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2234 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2235 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2240 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1] = {
2241 [XFRMA_SA
] = { .len
= sizeof(struct xfrm_usersa_info
)},
2242 [XFRMA_POLICY
] = { .len
= sizeof(struct xfrm_userpolicy_info
)},
2243 [XFRMA_LASTUSED
] = { .type
= NLA_U64
},
2244 [XFRMA_ALG_AUTH_TRUNC
] = { .len
= sizeof(struct xfrm_algo_auth
)},
2245 [XFRMA_ALG_AEAD
] = { .len
= sizeof(struct xfrm_algo_aead
) },
2246 [XFRMA_ALG_AUTH
] = { .len
= sizeof(struct xfrm_algo
) },
2247 [XFRMA_ALG_CRYPT
] = { .len
= sizeof(struct xfrm_algo
) },
2248 [XFRMA_ALG_COMP
] = { .len
= sizeof(struct xfrm_algo
) },
2249 [XFRMA_ENCAP
] = { .len
= sizeof(struct xfrm_encap_tmpl
) },
2250 [XFRMA_TMPL
] = { .len
= sizeof(struct xfrm_user_tmpl
) },
2251 [XFRMA_SEC_CTX
] = { .len
= sizeof(struct xfrm_sec_ctx
) },
2252 [XFRMA_LTIME_VAL
] = { .len
= sizeof(struct xfrm_lifetime_cur
) },
2253 [XFRMA_REPLAY_VAL
] = { .len
= sizeof(struct xfrm_replay_state
) },
2254 [XFRMA_REPLAY_THRESH
] = { .type
= NLA_U32
},
2255 [XFRMA_ETIMER_THRESH
] = { .type
= NLA_U32
},
2256 [XFRMA_SRCADDR
] = { .len
= sizeof(xfrm_address_t
) },
2257 [XFRMA_COADDR
] = { .len
= sizeof(xfrm_address_t
) },
2258 [XFRMA_POLICY_TYPE
] = { .len
= sizeof(struct xfrm_userpolicy_type
)},
2259 [XFRMA_MIGRATE
] = { .len
= sizeof(struct xfrm_user_migrate
) },
2260 [XFRMA_KMADDRESS
] = { .len
= sizeof(struct xfrm_user_kmaddress
) },
2261 [XFRMA_MARK
] = { .len
= sizeof(struct xfrm_mark
) },
2262 [XFRMA_TFCPAD
] = { .type
= NLA_U32
},
2263 [XFRMA_REPLAY_ESN_VAL
] = { .len
= sizeof(struct xfrm_replay_state_esn
) },
2266 static struct xfrm_link
{
2267 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
2268 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
2269 int (*done
)(struct netlink_callback
*);
2270 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
2271 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2272 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
2273 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
2274 .dump
= xfrm_dump_sa
,
2275 .done
= xfrm_dump_sa_done
},
2276 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2277 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
2278 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
2279 .dump
= xfrm_dump_policy
,
2280 .done
= xfrm_dump_policy_done
},
2281 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
2282 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_acquire
},
2283 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa_expire
},
2284 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2285 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2286 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_pol_expire
},
2287 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
2288 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
2289 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_new_ae
},
2290 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_ae
},
2291 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = { .doit
= xfrm_do_migrate
},
2292 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sadinfo
},
2293 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_spdinfo
},
2296 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
2298 struct net
*net
= sock_net(skb
->sk
);
2299 struct nlattr
*attrs
[XFRMA_MAX
+1];
2300 struct xfrm_link
*link
;
2303 type
= nlh
->nlmsg_type
;
2304 if (type
> XFRM_MSG_MAX
)
2307 type
-= XFRM_MSG_BASE
;
2308 link
= &xfrm_dispatch
[type
];
2310 /* All operations require privileges, even GET */
2311 if (!capable(CAP_NET_ADMIN
))
2314 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
2315 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
2316 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
2317 if (link
->dump
== NULL
)
2321 struct netlink_dump_control c
= {
2325 return netlink_dump_start(net
->xfrm
.nlsk
, skb
, nlh
, &c
);
2329 err
= nlmsg_parse(nlh
, xfrm_msg_min
[type
], attrs
, XFRMA_MAX
,
2334 if (link
->doit
== NULL
)
2337 return link
->doit(skb
, nlh
, attrs
);
2340 static void xfrm_netlink_rcv(struct sk_buff
*skb
)
2342 mutex_lock(&xfrm_cfg_mutex
);
2343 netlink_rcv_skb(skb
, &xfrm_user_rcv_msg
);
2344 mutex_unlock(&xfrm_cfg_mutex
);
2347 static inline size_t xfrm_expire_msgsize(void)
2349 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire
))
2350 + nla_total_size(sizeof(struct xfrm_mark
));
2353 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
2355 struct xfrm_user_expire
*ue
;
2356 struct nlmsghdr
*nlh
;
2358 nlh
= nlmsg_put(skb
, c
->pid
, 0, XFRM_MSG_EXPIRE
, sizeof(*ue
), 0);
2362 ue
= nlmsg_data(nlh
);
2363 copy_to_user_state(x
, &ue
->state
);
2364 ue
->hard
= (c
->data
.hard
!= 0) ? 1 : 0;
2366 if (xfrm_mark_put(skb
, &x
->mark
))
2367 goto nla_put_failure
;
2369 return nlmsg_end(skb
, nlh
);
2375 static int xfrm_exp_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2377 struct net
*net
= xs_net(x
);
2378 struct sk_buff
*skb
;
2380 skb
= nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC
);
2384 if (build_expire(skb
, x
, c
) < 0) {
2389 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_EXPIRE
, GFP_ATOMIC
);
2392 static int xfrm_aevent_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2394 struct net
*net
= xs_net(x
);
2395 struct sk_buff
*skb
;
2397 skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2401 if (build_aevent(skb
, x
, c
) < 0)
2404 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_AEVENTS
, GFP_ATOMIC
);
2407 static int xfrm_notify_sa_flush(const struct km_event
*c
)
2409 struct net
*net
= c
->net
;
2410 struct xfrm_usersa_flush
*p
;
2411 struct nlmsghdr
*nlh
;
2412 struct sk_buff
*skb
;
2413 int len
= NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush
));
2415 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2419 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, XFRM_MSG_FLUSHSA
, sizeof(*p
), 0);
2425 p
= nlmsg_data(nlh
);
2426 p
->proto
= c
->data
.proto
;
2428 nlmsg_end(skb
, nlh
);
2430 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_SA
, GFP_ATOMIC
);
2433 static inline size_t xfrm_sa_len(struct xfrm_state
*x
)
2437 l
+= nla_total_size(aead_len(x
->aead
));
2439 l
+= nla_total_size(sizeof(struct xfrm_algo
) +
2440 (x
->aalg
->alg_key_len
+ 7) / 8);
2441 l
+= nla_total_size(xfrm_alg_auth_len(x
->aalg
));
2444 l
+= nla_total_size(xfrm_alg_len(x
->ealg
));
2446 l
+= nla_total_size(sizeof(*x
->calg
));
2448 l
+= nla_total_size(sizeof(*x
->encap
));
2450 l
+= nla_total_size(sizeof(x
->tfcpad
));
2452 l
+= nla_total_size(xfrm_replay_state_esn_len(x
->replay_esn
));
2454 l
+= nla_total_size(sizeof(struct xfrm_user_sec_ctx
) +
2455 x
->security
->ctx_len
);
2457 l
+= nla_total_size(sizeof(*x
->coaddr
));
2459 /* Must count x->lastused as it may become non-zero behind our back. */
2460 l
+= nla_total_size(sizeof(u64
));
2465 static int xfrm_notify_sa(struct xfrm_state
*x
, const struct km_event
*c
)
2467 struct net
*net
= xs_net(x
);
2468 struct xfrm_usersa_info
*p
;
2469 struct xfrm_usersa_id
*id
;
2470 struct nlmsghdr
*nlh
;
2471 struct sk_buff
*skb
;
2472 int len
= xfrm_sa_len(x
);
2475 headlen
= sizeof(*p
);
2476 if (c
->event
== XFRM_MSG_DELSA
) {
2477 len
+= nla_total_size(headlen
);
2478 headlen
= sizeof(*id
);
2479 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2481 len
+= NLMSG_ALIGN(headlen
);
2483 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2487 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, c
->event
, headlen
, 0);
2489 goto nla_put_failure
;
2491 p
= nlmsg_data(nlh
);
2492 if (c
->event
== XFRM_MSG_DELSA
) {
2493 struct nlattr
*attr
;
2495 id
= nlmsg_data(nlh
);
2496 memcpy(&id
->daddr
, &x
->id
.daddr
, sizeof(id
->daddr
));
2497 id
->spi
= x
->id
.spi
;
2498 id
->family
= x
->props
.family
;
2499 id
->proto
= x
->id
.proto
;
2501 attr
= nla_reserve(skb
, XFRMA_SA
, sizeof(*p
));
2503 goto nla_put_failure
;
2508 if (copy_to_user_state_extra(x
, p
, skb
))
2509 goto nla_put_failure
;
2511 nlmsg_end(skb
, nlh
);
2513 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_SA
, GFP_ATOMIC
);
2516 /* Somebody screwed up with xfrm_sa_len! */
2522 static int xfrm_send_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2526 case XFRM_MSG_EXPIRE
:
2527 return xfrm_exp_state_notify(x
, c
);
2528 case XFRM_MSG_NEWAE
:
2529 return xfrm_aevent_state_notify(x
, c
);
2530 case XFRM_MSG_DELSA
:
2531 case XFRM_MSG_UPDSA
:
2532 case XFRM_MSG_NEWSA
:
2533 return xfrm_notify_sa(x
, c
);
2534 case XFRM_MSG_FLUSHSA
:
2535 return xfrm_notify_sa_flush(c
);
2537 printk(KERN_NOTICE
"xfrm_user: Unknown SA event %d\n",
2546 static inline size_t xfrm_acquire_msgsize(struct xfrm_state
*x
,
2547 struct xfrm_policy
*xp
)
2549 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire
))
2550 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2551 + nla_total_size(sizeof(struct xfrm_mark
))
2552 + nla_total_size(xfrm_user_sec_ctx_size(x
->security
))
2553 + userpolicy_type_attrsize();
2556 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
2557 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
,
2560 struct xfrm_user_acquire
*ua
;
2561 struct nlmsghdr
*nlh
;
2562 __u32 seq
= xfrm_get_acqseq();
2564 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_ACQUIRE
, sizeof(*ua
), 0);
2568 ua
= nlmsg_data(nlh
);
2569 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
2570 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
2571 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
2572 copy_to_user_policy(xp
, &ua
->policy
, dir
);
2573 ua
->aalgos
= xt
->aalgos
;
2574 ua
->ealgos
= xt
->ealgos
;
2575 ua
->calgos
= xt
->calgos
;
2576 ua
->seq
= x
->km
.seq
= seq
;
2578 if (copy_to_user_tmpl(xp
, skb
) < 0)
2580 if (copy_to_user_state_sec_ctx(x
, skb
))
2582 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
2584 if (xfrm_mark_put(skb
, &xp
->mark
))
2585 goto nla_put_failure
;
2587 return nlmsg_end(skb
, nlh
);
2591 nlmsg_cancel(skb
, nlh
);
2595 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
2596 struct xfrm_policy
*xp
, int dir
)
2598 struct net
*net
= xs_net(x
);
2599 struct sk_buff
*skb
;
2601 skb
= nlmsg_new(xfrm_acquire_msgsize(x
, xp
), GFP_ATOMIC
);
2605 if (build_acquire(skb
, x
, xt
, xp
, dir
) < 0)
2608 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_ACQUIRE
, GFP_ATOMIC
);
2611 /* User gives us xfrm_user_policy_info followed by an array of 0
2612 * or more templates.
2614 static struct xfrm_policy
*xfrm_compile_policy(struct sock
*sk
, int opt
,
2615 u8
*data
, int len
, int *dir
)
2617 struct net
*net
= sock_net(sk
);
2618 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
2619 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
2620 struct xfrm_policy
*xp
;
2623 switch (sk
->sk_family
) {
2625 if (opt
!= IP_XFRM_POLICY
) {
2630 #if IS_ENABLED(CONFIG_IPV6)
2632 if (opt
!= IPV6_XFRM_POLICY
) {
2645 if (len
< sizeof(*p
) ||
2646 verify_newpolicy_info(p
))
2649 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
2650 if (validate_tmpl(nr
, ut
, p
->sel
.family
))
2653 if (p
->dir
> XFRM_POLICY_OUT
)
2656 xp
= xfrm_policy_alloc(net
, GFP_ATOMIC
);
2662 copy_from_user_policy(xp
, p
);
2663 xp
->type
= XFRM_POLICY_TYPE_MAIN
;
2664 copy_templates(xp
, ut
, nr
);
2671 static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy
*xp
)
2673 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire
))
2674 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2675 + nla_total_size(xfrm_user_sec_ctx_size(xp
->security
))
2676 + nla_total_size(sizeof(struct xfrm_mark
))
2677 + userpolicy_type_attrsize();
2680 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
2681 int dir
, const struct km_event
*c
)
2683 struct xfrm_user_polexpire
*upe
;
2684 struct nlmsghdr
*nlh
;
2685 int hard
= c
->data
.hard
;
2687 nlh
= nlmsg_put(skb
, c
->pid
, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
), 0);
2691 upe
= nlmsg_data(nlh
);
2692 copy_to_user_policy(xp
, &upe
->pol
, dir
);
2693 if (copy_to_user_tmpl(xp
, skb
) < 0)
2695 if (copy_to_user_sec_ctx(xp
, skb
))
2697 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
2699 if (xfrm_mark_put(skb
, &xp
->mark
))
2700 goto nla_put_failure
;
2703 return nlmsg_end(skb
, nlh
);
2707 nlmsg_cancel(skb
, nlh
);
2711 static int xfrm_exp_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2713 struct net
*net
= xp_net(xp
);
2714 struct sk_buff
*skb
;
2716 skb
= nlmsg_new(xfrm_polexpire_msgsize(xp
), GFP_ATOMIC
);
2720 if (build_polexpire(skb
, xp
, dir
, c
) < 0)
2723 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_EXPIRE
, GFP_ATOMIC
);
2726 static int xfrm_notify_policy(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2728 struct net
*net
= xp_net(xp
);
2729 struct xfrm_userpolicy_info
*p
;
2730 struct xfrm_userpolicy_id
*id
;
2731 struct nlmsghdr
*nlh
;
2732 struct sk_buff
*skb
;
2733 int len
= nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
2736 headlen
= sizeof(*p
);
2737 if (c
->event
== XFRM_MSG_DELPOLICY
) {
2738 len
+= nla_total_size(headlen
);
2739 headlen
= sizeof(*id
);
2741 len
+= userpolicy_type_attrsize();
2742 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2743 len
+= NLMSG_ALIGN(headlen
);
2745 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2749 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, c
->event
, headlen
, 0);
2753 p
= nlmsg_data(nlh
);
2754 if (c
->event
== XFRM_MSG_DELPOLICY
) {
2755 struct nlattr
*attr
;
2757 id
= nlmsg_data(nlh
);
2758 memset(id
, 0, sizeof(*id
));
2761 id
->index
= xp
->index
;
2763 memcpy(&id
->sel
, &xp
->selector
, sizeof(id
->sel
));
2765 attr
= nla_reserve(skb
, XFRMA_POLICY
, sizeof(*p
));
2772 copy_to_user_policy(xp
, p
, dir
);
2773 if (copy_to_user_tmpl(xp
, skb
) < 0)
2775 if (copy_to_user_policy_type(xp
->type
, skb
) < 0)
2778 if (xfrm_mark_put(skb
, &xp
->mark
))
2779 goto nla_put_failure
;
2781 nlmsg_end(skb
, nlh
);
2783 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_POLICY
, GFP_ATOMIC
);
2791 static int xfrm_notify_policy_flush(const struct km_event
*c
)
2793 struct net
*net
= c
->net
;
2794 struct nlmsghdr
*nlh
;
2795 struct sk_buff
*skb
;
2797 skb
= nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC
);
2801 nlh
= nlmsg_put(skb
, c
->pid
, c
->seq
, XFRM_MSG_FLUSHPOLICY
, 0, 0);
2804 if (copy_to_user_policy_type(c
->data
.type
, skb
) < 0)
2807 nlmsg_end(skb
, nlh
);
2809 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_POLICY
, GFP_ATOMIC
);
2816 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2820 case XFRM_MSG_NEWPOLICY
:
2821 case XFRM_MSG_UPDPOLICY
:
2822 case XFRM_MSG_DELPOLICY
:
2823 return xfrm_notify_policy(xp
, dir
, c
);
2824 case XFRM_MSG_FLUSHPOLICY
:
2825 return xfrm_notify_policy_flush(c
);
2826 case XFRM_MSG_POLEXPIRE
:
2827 return xfrm_exp_policy_notify(xp
, dir
, c
);
2829 printk(KERN_NOTICE
"xfrm_user: Unknown Policy event %d\n",
2837 static inline size_t xfrm_report_msgsize(void)
2839 return NLMSG_ALIGN(sizeof(struct xfrm_user_report
));
2842 static int build_report(struct sk_buff
*skb
, u8 proto
,
2843 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
2845 struct xfrm_user_report
*ur
;
2846 struct nlmsghdr
*nlh
;
2848 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_REPORT
, sizeof(*ur
), 0);
2852 ur
= nlmsg_data(nlh
);
2854 memcpy(&ur
->sel
, sel
, sizeof(ur
->sel
));
2857 nla_put(skb
, XFRMA_COADDR
, sizeof(*addr
), addr
))
2858 goto nla_put_failure
;
2860 return nlmsg_end(skb
, nlh
);
2863 nlmsg_cancel(skb
, nlh
);
2867 static int xfrm_send_report(struct net
*net
, u8 proto
,
2868 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
2870 struct sk_buff
*skb
;
2872 skb
= nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC
);
2876 if (build_report(skb
, proto
, sel
, addr
) < 0)
2879 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_REPORT
, GFP_ATOMIC
);
2882 static inline size_t xfrm_mapping_msgsize(void)
2884 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping
));
2887 static int build_mapping(struct sk_buff
*skb
, struct xfrm_state
*x
,
2888 xfrm_address_t
*new_saddr
, __be16 new_sport
)
2890 struct xfrm_user_mapping
*um
;
2891 struct nlmsghdr
*nlh
;
2893 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MAPPING
, sizeof(*um
), 0);
2897 um
= nlmsg_data(nlh
);
2899 memcpy(&um
->id
.daddr
, &x
->id
.daddr
, sizeof(um
->id
.daddr
));
2900 um
->id
.spi
= x
->id
.spi
;
2901 um
->id
.family
= x
->props
.family
;
2902 um
->id
.proto
= x
->id
.proto
;
2903 memcpy(&um
->new_saddr
, new_saddr
, sizeof(um
->new_saddr
));
2904 memcpy(&um
->old_saddr
, &x
->props
.saddr
, sizeof(um
->old_saddr
));
2905 um
->new_sport
= new_sport
;
2906 um
->old_sport
= x
->encap
->encap_sport
;
2907 um
->reqid
= x
->props
.reqid
;
2909 return nlmsg_end(skb
, nlh
);
2912 static int xfrm_send_mapping(struct xfrm_state
*x
, xfrm_address_t
*ipaddr
,
2915 struct net
*net
= xs_net(x
);
2916 struct sk_buff
*skb
;
2918 if (x
->id
.proto
!= IPPROTO_ESP
)
2924 skb
= nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC
);
2928 if (build_mapping(skb
, x
, ipaddr
, sport
) < 0)
2931 return nlmsg_multicast(net
->xfrm
.nlsk
, skb
, 0, XFRMNLGRP_MAPPING
, GFP_ATOMIC
);
2934 static struct xfrm_mgr netlink_mgr
= {
2936 .notify
= xfrm_send_state_notify
,
2937 .acquire
= xfrm_send_acquire
,
2938 .compile_policy
= xfrm_compile_policy
,
2939 .notify_policy
= xfrm_send_policy_notify
,
2940 .report
= xfrm_send_report
,
2941 .migrate
= xfrm_send_migrate
,
2942 .new_mapping
= xfrm_send_mapping
,
2945 static int __net_init
xfrm_user_net_init(struct net
*net
)
2949 nlsk
= netlink_kernel_create(net
, NETLINK_XFRM
, XFRMNLGRP_MAX
,
2950 xfrm_netlink_rcv
, NULL
, THIS_MODULE
);
2953 net
->xfrm
.nlsk_stash
= nlsk
; /* Don't set to NULL */
2954 rcu_assign_pointer(net
->xfrm
.nlsk
, nlsk
);
2958 static void __net_exit
xfrm_user_net_exit(struct list_head
*net_exit_list
)
2961 list_for_each_entry(net
, net_exit_list
, exit_list
)
2962 RCU_INIT_POINTER(net
->xfrm
.nlsk
, NULL
);
2964 list_for_each_entry(net
, net_exit_list
, exit_list
)
2965 netlink_kernel_release(net
->xfrm
.nlsk_stash
);
2968 static struct pernet_operations xfrm_user_net_ops
= {
2969 .init
= xfrm_user_net_init
,
2970 .exit_batch
= xfrm_user_net_exit
,
2973 static int __init
xfrm_user_init(void)
2977 printk(KERN_INFO
"Initializing XFRM netlink socket\n");
2979 rv
= register_pernet_subsys(&xfrm_user_net_ops
);
2982 rv
= xfrm_register_km(&netlink_mgr
);
2984 unregister_pernet_subsys(&xfrm_user_net_ops
);
2988 static void __exit
xfrm_user_exit(void)
2990 xfrm_unregister_km(&netlink_mgr
);
2991 unregister_pernet_subsys(&xfrm_user_net_ops
);
2994 module_init(xfrm_user_init
);
2995 module_exit(xfrm_user_exit
);
2996 MODULE_LICENSE("GPL");
2997 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_XFRM
);