1 // SPDX-License-Identifier: GPL-2.0-only
2 /* xfrm_user.c: User interface to configure xfrm engine.
4 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
8 * Kazunori MIYAZAWA @USAGI
9 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
14 #include <linux/crypto.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/types.h>
18 #include <linux/slab.h>
19 #include <linux/socket.h>
20 #include <linux/string.h>
21 #include <linux/net.h>
22 #include <linux/skbuff.h>
23 #include <linux/pfkeyv2.h>
24 #include <linux/ipsec.h>
25 #include <linux/init.h>
26 #include <linux/security.h>
29 #include <net/netlink.h>
31 #include <linux/uaccess.h>
32 #if IS_ENABLED(CONFIG_IPV6)
33 #include <linux/in6.h>
35 #include <asm/unaligned.h>
37 static int verify_one_alg(struct nlattr
**attrs
, enum xfrm_attr_type_t type
)
39 struct nlattr
*rt
= attrs
[type
];
40 struct xfrm_algo
*algp
;
46 if (nla_len(rt
) < (int)xfrm_alg_len(algp
))
59 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
63 static int verify_auth_trunc(struct nlattr
**attrs
)
65 struct nlattr
*rt
= attrs
[XFRMA_ALG_AUTH_TRUNC
];
66 struct xfrm_algo_auth
*algp
;
72 if (nla_len(rt
) < (int)xfrm_alg_auth_len(algp
))
75 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
79 static int verify_aead(struct nlattr
**attrs
)
81 struct nlattr
*rt
= attrs
[XFRMA_ALG_AEAD
];
82 struct xfrm_algo_aead
*algp
;
88 if (nla_len(rt
) < (int)aead_len(algp
))
91 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
95 static void verify_one_addr(struct nlattr
**attrs
, enum xfrm_attr_type_t type
,
96 xfrm_address_t
**addrp
)
98 struct nlattr
*rt
= attrs
[type
];
101 *addrp
= nla_data(rt
);
104 static inline int verify_sec_ctx_len(struct nlattr
**attrs
)
106 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
107 struct xfrm_user_sec_ctx
*uctx
;
113 if (uctx
->len
> nla_len(rt
) ||
114 uctx
->len
!= (sizeof(struct xfrm_user_sec_ctx
) + uctx
->ctx_len
))
120 static inline int verify_replay(struct xfrm_usersa_info
*p
,
121 struct nlattr
**attrs
)
123 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_ESN_VAL
];
124 struct xfrm_replay_state_esn
*rs
;
127 return (p
->flags
& XFRM_STATE_ESN
) ? -EINVAL
: 0;
131 if (rs
->bmp_len
> XFRMA_REPLAY_ESN_MAX
/ sizeof(rs
->bmp
[0]) / 8)
134 if (nla_len(rt
) < (int)xfrm_replay_state_esn_len(rs
) &&
135 nla_len(rt
) != sizeof(*rs
))
138 /* As only ESP and AH support ESN feature. */
139 if ((p
->id
.proto
!= IPPROTO_ESP
) && (p
->id
.proto
!= IPPROTO_AH
))
142 if (p
->replay_window
!= 0)
148 static int verify_newsa_info(struct xfrm_usersa_info
*p
,
149 struct nlattr
**attrs
)
159 #if IS_ENABLED(CONFIG_IPV6)
170 switch (p
->sel
.family
) {
175 if (p
->sel
.prefixlen_d
> 32 || p
->sel
.prefixlen_s
> 32)
181 #if IS_ENABLED(CONFIG_IPV6)
182 if (p
->sel
.prefixlen_d
> 128 || p
->sel
.prefixlen_s
> 128)
196 switch (p
->id
.proto
) {
198 if ((!attrs
[XFRMA_ALG_AUTH
] &&
199 !attrs
[XFRMA_ALG_AUTH_TRUNC
]) ||
200 attrs
[XFRMA_ALG_AEAD
] ||
201 attrs
[XFRMA_ALG_CRYPT
] ||
202 attrs
[XFRMA_ALG_COMP
] ||
208 if (attrs
[XFRMA_ALG_COMP
])
210 if (!attrs
[XFRMA_ALG_AUTH
] &&
211 !attrs
[XFRMA_ALG_AUTH_TRUNC
] &&
212 !attrs
[XFRMA_ALG_CRYPT
] &&
213 !attrs
[XFRMA_ALG_AEAD
])
215 if ((attrs
[XFRMA_ALG_AUTH
] ||
216 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
217 attrs
[XFRMA_ALG_CRYPT
]) &&
218 attrs
[XFRMA_ALG_AEAD
])
220 if (attrs
[XFRMA_TFCPAD
] &&
221 p
->mode
!= XFRM_MODE_TUNNEL
)
226 if (!attrs
[XFRMA_ALG_COMP
] ||
227 attrs
[XFRMA_ALG_AEAD
] ||
228 attrs
[XFRMA_ALG_AUTH
] ||
229 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
230 attrs
[XFRMA_ALG_CRYPT
] ||
231 attrs
[XFRMA_TFCPAD
] ||
232 (ntohl(p
->id
.spi
) >= 0x10000))
236 #if IS_ENABLED(CONFIG_IPV6)
237 case IPPROTO_DSTOPTS
:
238 case IPPROTO_ROUTING
:
239 if (attrs
[XFRMA_ALG_COMP
] ||
240 attrs
[XFRMA_ALG_AUTH
] ||
241 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
242 attrs
[XFRMA_ALG_AEAD
] ||
243 attrs
[XFRMA_ALG_CRYPT
] ||
244 attrs
[XFRMA_ENCAP
] ||
245 attrs
[XFRMA_SEC_CTX
] ||
246 attrs
[XFRMA_TFCPAD
] ||
247 !attrs
[XFRMA_COADDR
])
256 if ((err
= verify_aead(attrs
)))
258 if ((err
= verify_auth_trunc(attrs
)))
260 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_AUTH
)))
262 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_CRYPT
)))
264 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_COMP
)))
266 if ((err
= verify_sec_ctx_len(attrs
)))
268 if ((err
= verify_replay(p
, attrs
)))
273 case XFRM_MODE_TRANSPORT
:
274 case XFRM_MODE_TUNNEL
:
275 case XFRM_MODE_ROUTEOPTIMIZATION
:
289 static int attach_one_algo(struct xfrm_algo
**algpp
, u8
*props
,
290 struct xfrm_algo_desc
*(*get_byname
)(const char *, int),
293 struct xfrm_algo
*p
, *ualg
;
294 struct xfrm_algo_desc
*algo
;
299 ualg
= nla_data(rta
);
301 algo
= get_byname(ualg
->alg_name
, 1);
304 *props
= algo
->desc
.sadb_alg_id
;
306 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
310 strcpy(p
->alg_name
, algo
->name
);
315 static int attach_crypt(struct xfrm_state
*x
, struct nlattr
*rta
)
317 struct xfrm_algo
*p
, *ualg
;
318 struct xfrm_algo_desc
*algo
;
323 ualg
= nla_data(rta
);
325 algo
= xfrm_ealg_get_byname(ualg
->alg_name
, 1);
328 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
330 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
334 strcpy(p
->alg_name
, algo
->name
);
336 x
->geniv
= algo
->uinfo
.encr
.geniv
;
340 static int attach_auth(struct xfrm_algo_auth
**algpp
, u8
*props
,
343 struct xfrm_algo
*ualg
;
344 struct xfrm_algo_auth
*p
;
345 struct xfrm_algo_desc
*algo
;
350 ualg
= nla_data(rta
);
352 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
355 *props
= algo
->desc
.sadb_alg_id
;
357 p
= kmalloc(sizeof(*p
) + (ualg
->alg_key_len
+ 7) / 8, GFP_KERNEL
);
361 strcpy(p
->alg_name
, algo
->name
);
362 p
->alg_key_len
= ualg
->alg_key_len
;
363 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
364 memcpy(p
->alg_key
, ualg
->alg_key
, (ualg
->alg_key_len
+ 7) / 8);
370 static int attach_auth_trunc(struct xfrm_algo_auth
**algpp
, u8
*props
,
373 struct xfrm_algo_auth
*p
, *ualg
;
374 struct xfrm_algo_desc
*algo
;
379 ualg
= nla_data(rta
);
381 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
384 if (ualg
->alg_trunc_len
> algo
->uinfo
.auth
.icv_fullbits
)
386 *props
= algo
->desc
.sadb_alg_id
;
388 p
= kmemdup(ualg
, xfrm_alg_auth_len(ualg
), GFP_KERNEL
);
392 strcpy(p
->alg_name
, algo
->name
);
393 if (!p
->alg_trunc_len
)
394 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
400 static int attach_aead(struct xfrm_state
*x
, struct nlattr
*rta
)
402 struct xfrm_algo_aead
*p
, *ualg
;
403 struct xfrm_algo_desc
*algo
;
408 ualg
= nla_data(rta
);
410 algo
= xfrm_aead_get_byname(ualg
->alg_name
, ualg
->alg_icv_len
, 1);
413 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
415 p
= kmemdup(ualg
, aead_len(ualg
), GFP_KERNEL
);
419 strcpy(p
->alg_name
, algo
->name
);
421 x
->geniv
= algo
->uinfo
.aead
.geniv
;
425 static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn
*replay_esn
,
428 struct xfrm_replay_state_esn
*up
;
431 if (!replay_esn
|| !rp
)
435 ulen
= xfrm_replay_state_esn_len(up
);
437 /* Check the overall length and the internal bitmap length to avoid
438 * potential overflow. */
439 if (nla_len(rp
) < (int)ulen
||
440 xfrm_replay_state_esn_len(replay_esn
) != ulen
||
441 replay_esn
->bmp_len
!= up
->bmp_len
)
444 if (up
->replay_window
> up
->bmp_len
* sizeof(__u32
) * 8)
450 static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn
**replay_esn
,
451 struct xfrm_replay_state_esn
**preplay_esn
,
454 struct xfrm_replay_state_esn
*p
, *pp
, *up
;
455 unsigned int klen
, ulen
;
461 klen
= xfrm_replay_state_esn_len(up
);
462 ulen
= nla_len(rta
) >= (int)klen
? klen
: sizeof(*up
);
464 p
= kzalloc(klen
, GFP_KERNEL
);
468 pp
= kzalloc(klen
, GFP_KERNEL
);
475 memcpy(pp
, up
, ulen
);
483 static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx
*xfrm_ctx
)
485 unsigned int len
= 0;
488 len
+= sizeof(struct xfrm_user_sec_ctx
);
489 len
+= xfrm_ctx
->ctx_len
;
494 static void copy_from_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
496 memcpy(&x
->id
, &p
->id
, sizeof(x
->id
));
497 memcpy(&x
->sel
, &p
->sel
, sizeof(x
->sel
));
498 memcpy(&x
->lft
, &p
->lft
, sizeof(x
->lft
));
499 x
->props
.mode
= p
->mode
;
500 x
->props
.replay_window
= min_t(unsigned int, p
->replay_window
,
501 sizeof(x
->replay
.bitmap
) * 8);
502 x
->props
.reqid
= p
->reqid
;
503 x
->props
.family
= p
->family
;
504 memcpy(&x
->props
.saddr
, &p
->saddr
, sizeof(x
->props
.saddr
));
505 x
->props
.flags
= p
->flags
;
507 if (!x
->sel
.family
&& !(p
->flags
& XFRM_STATE_AF_UNSPEC
))
508 x
->sel
.family
= p
->family
;
512 * someday when pfkey also has support, we could have the code
513 * somehow made shareable and move it to xfrm_state.c - JHS
516 static void xfrm_update_ae_params(struct xfrm_state
*x
, struct nlattr
**attrs
,
519 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
520 struct nlattr
*re
= update_esn
? attrs
[XFRMA_REPLAY_ESN_VAL
] : NULL
;
521 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
522 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
523 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
526 struct xfrm_replay_state_esn
*replay_esn
;
527 replay_esn
= nla_data(re
);
528 memcpy(x
->replay_esn
, replay_esn
,
529 xfrm_replay_state_esn_len(replay_esn
));
530 memcpy(x
->preplay_esn
, replay_esn
,
531 xfrm_replay_state_esn_len(replay_esn
));
535 struct xfrm_replay_state
*replay
;
536 replay
= nla_data(rp
);
537 memcpy(&x
->replay
, replay
, sizeof(*replay
));
538 memcpy(&x
->preplay
, replay
, sizeof(*replay
));
542 struct xfrm_lifetime_cur
*ltime
;
543 ltime
= nla_data(lt
);
544 x
->curlft
.bytes
= ltime
->bytes
;
545 x
->curlft
.packets
= ltime
->packets
;
546 x
->curlft
.add_time
= ltime
->add_time
;
547 x
->curlft
.use_time
= ltime
->use_time
;
551 x
->replay_maxage
= nla_get_u32(et
);
554 x
->replay_maxdiff
= nla_get_u32(rt
);
557 static void xfrm_smark_init(struct nlattr
**attrs
, struct xfrm_mark
*m
)
559 if (attrs
[XFRMA_SET_MARK
]) {
560 m
->v
= nla_get_u32(attrs
[XFRMA_SET_MARK
]);
561 if (attrs
[XFRMA_SET_MARK_MASK
])
562 m
->m
= nla_get_u32(attrs
[XFRMA_SET_MARK_MASK
]);
570 static struct xfrm_state
*xfrm_state_construct(struct net
*net
,
571 struct xfrm_usersa_info
*p
,
572 struct nlattr
**attrs
,
575 struct xfrm_state
*x
= xfrm_state_alloc(net
);
581 copy_from_user_state(x
, p
);
583 if (attrs
[XFRMA_SA_EXTRA_FLAGS
])
584 x
->props
.extra_flags
= nla_get_u32(attrs
[XFRMA_SA_EXTRA_FLAGS
]);
586 if ((err
= attach_aead(x
, attrs
[XFRMA_ALG_AEAD
])))
588 if ((err
= attach_auth_trunc(&x
->aalg
, &x
->props
.aalgo
,
589 attrs
[XFRMA_ALG_AUTH_TRUNC
])))
591 if (!x
->props
.aalgo
) {
592 if ((err
= attach_auth(&x
->aalg
, &x
->props
.aalgo
,
593 attrs
[XFRMA_ALG_AUTH
])))
596 if ((err
= attach_crypt(x
, attrs
[XFRMA_ALG_CRYPT
])))
598 if ((err
= attach_one_algo(&x
->calg
, &x
->props
.calgo
,
599 xfrm_calg_get_byname
,
600 attrs
[XFRMA_ALG_COMP
])))
603 if (attrs
[XFRMA_ENCAP
]) {
604 x
->encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
605 sizeof(*x
->encap
), GFP_KERNEL
);
606 if (x
->encap
== NULL
)
610 if (attrs
[XFRMA_TFCPAD
])
611 x
->tfcpad
= nla_get_u32(attrs
[XFRMA_TFCPAD
]);
613 if (attrs
[XFRMA_COADDR
]) {
614 x
->coaddr
= kmemdup(nla_data(attrs
[XFRMA_COADDR
]),
615 sizeof(*x
->coaddr
), GFP_KERNEL
);
616 if (x
->coaddr
== NULL
)
620 xfrm_mark_get(attrs
, &x
->mark
);
622 xfrm_smark_init(attrs
, &x
->props
.smark
);
624 if (attrs
[XFRMA_IF_ID
])
625 x
->if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
627 err
= __xfrm_init_state(x
, false, attrs
[XFRMA_OFFLOAD_DEV
]);
631 if (attrs
[XFRMA_SEC_CTX
]) {
632 err
= security_xfrm_state_alloc(x
,
633 nla_data(attrs
[XFRMA_SEC_CTX
]));
638 if ((err
= xfrm_alloc_replay_state_esn(&x
->replay_esn
, &x
->preplay_esn
,
639 attrs
[XFRMA_REPLAY_ESN_VAL
])))
643 x
->replay_maxdiff
= net
->xfrm
.sysctl_aevent_rseqth
;
644 /* sysctl_xfrm_aevent_etime is in 100ms units */
645 x
->replay_maxage
= (net
->xfrm
.sysctl_aevent_etime
*HZ
)/XFRM_AE_ETH_M
;
647 if ((err
= xfrm_init_replay(x
)))
650 /* override default values from above */
651 xfrm_update_ae_params(x
, attrs
, 0);
653 /* configure the hardware if offload is requested */
654 if (attrs
[XFRMA_OFFLOAD_DEV
]) {
655 err
= xfrm_dev_state_add(net
, x
,
656 nla_data(attrs
[XFRMA_OFFLOAD_DEV
]));
664 x
->km
.state
= XFRM_STATE_DEAD
;
671 static int xfrm_add_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
672 struct nlattr
**attrs
)
674 struct net
*net
= sock_net(skb
->sk
);
675 struct xfrm_usersa_info
*p
= nlmsg_data(nlh
);
676 struct xfrm_state
*x
;
680 err
= verify_newsa_info(p
, attrs
);
684 x
= xfrm_state_construct(net
, p
, attrs
, &err
);
689 if (nlh
->nlmsg_type
== XFRM_MSG_NEWSA
)
690 err
= xfrm_state_add(x
);
692 err
= xfrm_state_update(x
);
694 xfrm_audit_state_add(x
, err
? 0 : 1, true);
697 x
->km
.state
= XFRM_STATE_DEAD
;
698 xfrm_dev_state_delete(x
);
703 if (x
->km
.state
== XFRM_STATE_VOID
)
704 x
->km
.state
= XFRM_STATE_VALID
;
706 c
.seq
= nlh
->nlmsg_seq
;
707 c
.portid
= nlh
->nlmsg_pid
;
708 c
.event
= nlh
->nlmsg_type
;
710 km_state_notify(x
, &c
);
716 static struct xfrm_state
*xfrm_user_state_lookup(struct net
*net
,
717 struct xfrm_usersa_id
*p
,
718 struct nlattr
**attrs
,
721 struct xfrm_state
*x
= NULL
;
724 u32 mark
= xfrm_mark_get(attrs
, &m
);
726 if (xfrm_id_proto_match(p
->proto
, IPSEC_PROTO_ANY
)) {
728 x
= xfrm_state_lookup(net
, mark
, &p
->daddr
, p
->spi
, p
->proto
, p
->family
);
730 xfrm_address_t
*saddr
= NULL
;
732 verify_one_addr(attrs
, XFRMA_SRCADDR
, &saddr
);
739 x
= xfrm_state_lookup_byaddr(net
, mark
,
741 p
->proto
, p
->family
);
750 static int xfrm_del_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
751 struct nlattr
**attrs
)
753 struct net
*net
= sock_net(skb
->sk
);
754 struct xfrm_state
*x
;
757 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
759 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
763 if ((err
= security_xfrm_state_delete(x
)) != 0)
766 if (xfrm_state_kern(x
)) {
771 err
= xfrm_state_delete(x
);
776 c
.seq
= nlh
->nlmsg_seq
;
777 c
.portid
= nlh
->nlmsg_pid
;
778 c
.event
= nlh
->nlmsg_type
;
779 km_state_notify(x
, &c
);
782 xfrm_audit_state_delete(x
, err
? 0 : 1, true);
787 static void copy_to_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
789 memset(p
, 0, sizeof(*p
));
790 memcpy(&p
->id
, &x
->id
, sizeof(p
->id
));
791 memcpy(&p
->sel
, &x
->sel
, sizeof(p
->sel
));
792 memcpy(&p
->lft
, &x
->lft
, sizeof(p
->lft
));
793 memcpy(&p
->curlft
, &x
->curlft
, sizeof(p
->curlft
));
794 put_unaligned(x
->stats
.replay_window
, &p
->stats
.replay_window
);
795 put_unaligned(x
->stats
.replay
, &p
->stats
.replay
);
796 put_unaligned(x
->stats
.integrity_failed
, &p
->stats
.integrity_failed
);
797 memcpy(&p
->saddr
, &x
->props
.saddr
, sizeof(p
->saddr
));
798 p
->mode
= x
->props
.mode
;
799 p
->replay_window
= x
->props
.replay_window
;
800 p
->reqid
= x
->props
.reqid
;
801 p
->family
= x
->props
.family
;
802 p
->flags
= x
->props
.flags
;
806 struct xfrm_dump_info
{
807 struct sk_buff
*in_skb
;
808 struct sk_buff
*out_skb
;
813 static int copy_sec_ctx(struct xfrm_sec_ctx
*s
, struct sk_buff
*skb
)
815 struct xfrm_user_sec_ctx
*uctx
;
817 int ctx_size
= sizeof(*uctx
) + s
->ctx_len
;
819 attr
= nla_reserve(skb
, XFRMA_SEC_CTX
, ctx_size
);
823 uctx
= nla_data(attr
);
824 uctx
->exttype
= XFRMA_SEC_CTX
;
825 uctx
->len
= ctx_size
;
826 uctx
->ctx_doi
= s
->ctx_doi
;
827 uctx
->ctx_alg
= s
->ctx_alg
;
828 uctx
->ctx_len
= s
->ctx_len
;
829 memcpy(uctx
+ 1, s
->ctx_str
, s
->ctx_len
);
834 static int copy_user_offload(struct xfrm_state_offload
*xso
, struct sk_buff
*skb
)
836 struct xfrm_user_offload
*xuo
;
839 attr
= nla_reserve(skb
, XFRMA_OFFLOAD_DEV
, sizeof(*xuo
));
843 xuo
= nla_data(attr
);
844 memset(xuo
, 0, sizeof(*xuo
));
845 xuo
->ifindex
= xso
->dev
->ifindex
;
846 xuo
->flags
= xso
->flags
;
851 static int copy_to_user_auth(struct xfrm_algo_auth
*auth
, struct sk_buff
*skb
)
853 struct xfrm_algo
*algo
;
856 nla
= nla_reserve(skb
, XFRMA_ALG_AUTH
,
857 sizeof(*algo
) + (auth
->alg_key_len
+ 7) / 8);
861 algo
= nla_data(nla
);
862 strncpy(algo
->alg_name
, auth
->alg_name
, sizeof(algo
->alg_name
));
863 memcpy(algo
->alg_key
, auth
->alg_key
, (auth
->alg_key_len
+ 7) / 8);
864 algo
->alg_key_len
= auth
->alg_key_len
;
869 static int xfrm_smark_put(struct sk_buff
*skb
, struct xfrm_mark
*m
)
874 ret
= nla_put_u32(skb
, XFRMA_SET_MARK
, m
->v
);
876 ret
= nla_put_u32(skb
, XFRMA_SET_MARK_MASK
, m
->m
);
881 /* Don't change this without updating xfrm_sa_len! */
882 static int copy_to_user_state_extra(struct xfrm_state
*x
,
883 struct xfrm_usersa_info
*p
,
888 copy_to_user_state(x
, p
);
890 if (x
->props
.extra_flags
) {
891 ret
= nla_put_u32(skb
, XFRMA_SA_EXTRA_FLAGS
,
892 x
->props
.extra_flags
);
898 ret
= nla_put(skb
, XFRMA_COADDR
, sizeof(*x
->coaddr
), x
->coaddr
);
903 ret
= nla_put_u64_64bit(skb
, XFRMA_LASTUSED
, x
->lastused
,
909 ret
= nla_put(skb
, XFRMA_ALG_AEAD
, aead_len(x
->aead
), x
->aead
);
914 ret
= copy_to_user_auth(x
->aalg
, skb
);
916 ret
= nla_put(skb
, XFRMA_ALG_AUTH_TRUNC
,
917 xfrm_alg_auth_len(x
->aalg
), x
->aalg
);
922 ret
= nla_put(skb
, XFRMA_ALG_CRYPT
, xfrm_alg_len(x
->ealg
), x
->ealg
);
927 ret
= nla_put(skb
, XFRMA_ALG_COMP
, sizeof(*(x
->calg
)), x
->calg
);
932 ret
= nla_put(skb
, XFRMA_ENCAP
, sizeof(*x
->encap
), x
->encap
);
937 ret
= nla_put_u32(skb
, XFRMA_TFCPAD
, x
->tfcpad
);
941 ret
= xfrm_mark_put(skb
, &x
->mark
);
945 ret
= xfrm_smark_put(skb
, &x
->props
.smark
);
950 ret
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
951 xfrm_replay_state_esn_len(x
->replay_esn
),
954 ret
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
959 ret
= copy_user_offload(&x
->xso
, skb
);
963 ret
= nla_put_u32(skb
, XFRMA_IF_ID
, x
->if_id
);
968 ret
= copy_sec_ctx(x
->security
, skb
);
973 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
975 struct xfrm_dump_info
*sp
= ptr
;
976 struct sk_buff
*in_skb
= sp
->in_skb
;
977 struct sk_buff
*skb
= sp
->out_skb
;
978 struct xfrm_usersa_info
*p
;
979 struct nlmsghdr
*nlh
;
982 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
983 XFRM_MSG_NEWSA
, sizeof(*p
), sp
->nlmsg_flags
);
989 err
= copy_to_user_state_extra(x
, p
, skb
);
991 nlmsg_cancel(skb
, nlh
);
998 static int xfrm_dump_sa_done(struct netlink_callback
*cb
)
1000 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
1001 struct sock
*sk
= cb
->skb
->sk
;
1002 struct net
*net
= sock_net(sk
);
1005 xfrm_state_walk_done(walk
, net
);
1009 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1];
1010 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1012 struct net
*net
= sock_net(skb
->sk
);
1013 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
1014 struct xfrm_dump_info info
;
1016 BUILD_BUG_ON(sizeof(struct xfrm_state_walk
) >
1017 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
1019 info
.in_skb
= cb
->skb
;
1021 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1022 info
.nlmsg_flags
= NLM_F_MULTI
;
1025 struct nlattr
*attrs
[XFRMA_MAX
+1];
1026 struct xfrm_address_filter
*filter
= NULL
;
1030 err
= nlmsg_parse_deprecated(cb
->nlh
, 0, attrs
, XFRMA_MAX
,
1031 xfrma_policy
, cb
->extack
);
1035 if (attrs
[XFRMA_ADDRESS_FILTER
]) {
1036 filter
= kmemdup(nla_data(attrs
[XFRMA_ADDRESS_FILTER
]),
1037 sizeof(*filter
), GFP_KERNEL
);
1042 if (attrs
[XFRMA_PROTO
])
1043 proto
= nla_get_u8(attrs
[XFRMA_PROTO
]);
1045 xfrm_state_walk_init(walk
, proto
, filter
);
1049 (void) xfrm_state_walk(net
, walk
, dump_one_state
, &info
);
1054 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
1055 struct xfrm_state
*x
, u32 seq
)
1057 struct xfrm_dump_info info
;
1058 struct sk_buff
*skb
;
1061 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
1063 return ERR_PTR(-ENOMEM
);
1065 info
.in_skb
= in_skb
;
1067 info
.nlmsg_seq
= seq
;
1068 info
.nlmsg_flags
= 0;
1070 err
= dump_one_state(x
, 0, &info
);
1073 return ERR_PTR(err
);
1079 /* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1080 * Must be called with RCU read lock.
1082 static inline int xfrm_nlmsg_multicast(struct net
*net
, struct sk_buff
*skb
,
1083 u32 pid
, unsigned int group
)
1085 struct sock
*nlsk
= rcu_dereference(net
->xfrm
.nlsk
);
1092 return nlmsg_multicast(nlsk
, skb
, pid
, group
, GFP_ATOMIC
);
1095 static inline unsigned int xfrm_spdinfo_msgsize(void)
1097 return NLMSG_ALIGN(4)
1098 + nla_total_size(sizeof(struct xfrmu_spdinfo
))
1099 + nla_total_size(sizeof(struct xfrmu_spdhinfo
))
1100 + nla_total_size(sizeof(struct xfrmu_spdhthresh
))
1101 + nla_total_size(sizeof(struct xfrmu_spdhthresh
));
1104 static int build_spdinfo(struct sk_buff
*skb
, struct net
*net
,
1105 u32 portid
, u32 seq
, u32 flags
)
1107 struct xfrmk_spdinfo si
;
1108 struct xfrmu_spdinfo spc
;
1109 struct xfrmu_spdhinfo sph
;
1110 struct xfrmu_spdhthresh spt4
, spt6
;
1111 struct nlmsghdr
*nlh
;
1116 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSPDINFO
, sizeof(u32
), 0);
1117 if (nlh
== NULL
) /* shouldn't really happen ... */
1120 f
= nlmsg_data(nlh
);
1122 xfrm_spd_getinfo(net
, &si
);
1123 spc
.incnt
= si
.incnt
;
1124 spc
.outcnt
= si
.outcnt
;
1125 spc
.fwdcnt
= si
.fwdcnt
;
1126 spc
.inscnt
= si
.inscnt
;
1127 spc
.outscnt
= si
.outscnt
;
1128 spc
.fwdscnt
= si
.fwdscnt
;
1129 sph
.spdhcnt
= si
.spdhcnt
;
1130 sph
.spdhmcnt
= si
.spdhmcnt
;
1133 lseq
= read_seqbegin(&net
->xfrm
.policy_hthresh
.lock
);
1135 spt4
.lbits
= net
->xfrm
.policy_hthresh
.lbits4
;
1136 spt4
.rbits
= net
->xfrm
.policy_hthresh
.rbits4
;
1137 spt6
.lbits
= net
->xfrm
.policy_hthresh
.lbits6
;
1138 spt6
.rbits
= net
->xfrm
.policy_hthresh
.rbits6
;
1139 } while (read_seqretry(&net
->xfrm
.policy_hthresh
.lock
, lseq
));
1141 err
= nla_put(skb
, XFRMA_SPD_INFO
, sizeof(spc
), &spc
);
1143 err
= nla_put(skb
, XFRMA_SPD_HINFO
, sizeof(sph
), &sph
);
1145 err
= nla_put(skb
, XFRMA_SPD_IPV4_HTHRESH
, sizeof(spt4
), &spt4
);
1147 err
= nla_put(skb
, XFRMA_SPD_IPV6_HTHRESH
, sizeof(spt6
), &spt6
);
1149 nlmsg_cancel(skb
, nlh
);
1153 nlmsg_end(skb
, nlh
);
1157 static int xfrm_set_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1158 struct nlattr
**attrs
)
1160 struct net
*net
= sock_net(skb
->sk
);
1161 struct xfrmu_spdhthresh
*thresh4
= NULL
;
1162 struct xfrmu_spdhthresh
*thresh6
= NULL
;
1164 /* selector prefixlen thresholds to hash policies */
1165 if (attrs
[XFRMA_SPD_IPV4_HTHRESH
]) {
1166 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV4_HTHRESH
];
1168 if (nla_len(rta
) < sizeof(*thresh4
))
1170 thresh4
= nla_data(rta
);
1171 if (thresh4
->lbits
> 32 || thresh4
->rbits
> 32)
1174 if (attrs
[XFRMA_SPD_IPV6_HTHRESH
]) {
1175 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV6_HTHRESH
];
1177 if (nla_len(rta
) < sizeof(*thresh6
))
1179 thresh6
= nla_data(rta
);
1180 if (thresh6
->lbits
> 128 || thresh6
->rbits
> 128)
1184 if (thresh4
|| thresh6
) {
1185 write_seqlock(&net
->xfrm
.policy_hthresh
.lock
);
1187 net
->xfrm
.policy_hthresh
.lbits4
= thresh4
->lbits
;
1188 net
->xfrm
.policy_hthresh
.rbits4
= thresh4
->rbits
;
1191 net
->xfrm
.policy_hthresh
.lbits6
= thresh6
->lbits
;
1192 net
->xfrm
.policy_hthresh
.rbits6
= thresh6
->rbits
;
1194 write_sequnlock(&net
->xfrm
.policy_hthresh
.lock
);
1196 xfrm_policy_hash_rebuild(net
);
1202 static int xfrm_get_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1203 struct nlattr
**attrs
)
1205 struct net
*net
= sock_net(skb
->sk
);
1206 struct sk_buff
*r_skb
;
1207 u32
*flags
= nlmsg_data(nlh
);
1208 u32 sportid
= NETLINK_CB(skb
).portid
;
1209 u32 seq
= nlh
->nlmsg_seq
;
1212 r_skb
= nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC
);
1216 err
= build_spdinfo(r_skb
, net
, sportid
, seq
, *flags
);
1219 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1222 static inline unsigned int xfrm_sadinfo_msgsize(void)
1224 return NLMSG_ALIGN(4)
1225 + nla_total_size(sizeof(struct xfrmu_sadhinfo
))
1226 + nla_total_size(4); /* XFRMA_SAD_CNT */
1229 static int build_sadinfo(struct sk_buff
*skb
, struct net
*net
,
1230 u32 portid
, u32 seq
, u32 flags
)
1232 struct xfrmk_sadinfo si
;
1233 struct xfrmu_sadhinfo sh
;
1234 struct nlmsghdr
*nlh
;
1238 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSADINFO
, sizeof(u32
), 0);
1239 if (nlh
== NULL
) /* shouldn't really happen ... */
1242 f
= nlmsg_data(nlh
);
1244 xfrm_sad_getinfo(net
, &si
);
1246 sh
.sadhmcnt
= si
.sadhmcnt
;
1247 sh
.sadhcnt
= si
.sadhcnt
;
1249 err
= nla_put_u32(skb
, XFRMA_SAD_CNT
, si
.sadcnt
);
1251 err
= nla_put(skb
, XFRMA_SAD_HINFO
, sizeof(sh
), &sh
);
1253 nlmsg_cancel(skb
, nlh
);
1257 nlmsg_end(skb
, nlh
);
1261 static int xfrm_get_sadinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1262 struct nlattr
**attrs
)
1264 struct net
*net
= sock_net(skb
->sk
);
1265 struct sk_buff
*r_skb
;
1266 u32
*flags
= nlmsg_data(nlh
);
1267 u32 sportid
= NETLINK_CB(skb
).portid
;
1268 u32 seq
= nlh
->nlmsg_seq
;
1271 r_skb
= nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC
);
1275 err
= build_sadinfo(r_skb
, net
, sportid
, seq
, *flags
);
1278 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1281 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1282 struct nlattr
**attrs
)
1284 struct net
*net
= sock_net(skb
->sk
);
1285 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
1286 struct xfrm_state
*x
;
1287 struct sk_buff
*resp_skb
;
1290 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
1294 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1295 if (IS_ERR(resp_skb
)) {
1296 err
= PTR_ERR(resp_skb
);
1298 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1305 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1306 struct nlattr
**attrs
)
1308 struct net
*net
= sock_net(skb
->sk
);
1309 struct xfrm_state
*x
;
1310 struct xfrm_userspi_info
*p
;
1311 struct sk_buff
*resp_skb
;
1312 xfrm_address_t
*daddr
;
1319 p
= nlmsg_data(nlh
);
1320 err
= verify_spi_info(p
->info
.id
.proto
, p
->min
, p
->max
);
1324 family
= p
->info
.family
;
1325 daddr
= &p
->info
.id
.daddr
;
1329 mark
= xfrm_mark_get(attrs
, &m
);
1331 if (attrs
[XFRMA_IF_ID
])
1332 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
1335 x
= xfrm_find_acq_byseq(net
, mark
, p
->info
.seq
);
1336 if (x
&& !xfrm_addr_equal(&x
->id
.daddr
, daddr
, family
)) {
1343 x
= xfrm_find_acq(net
, &m
, p
->info
.mode
, p
->info
.reqid
,
1344 if_id
, p
->info
.id
.proto
, daddr
,
1351 err
= xfrm_alloc_spi(x
, p
->min
, p
->max
);
1355 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1356 if (IS_ERR(resp_skb
)) {
1357 err
= PTR_ERR(resp_skb
);
1361 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1369 static int verify_policy_dir(u8 dir
)
1372 case XFRM_POLICY_IN
:
1373 case XFRM_POLICY_OUT
:
1374 case XFRM_POLICY_FWD
:
1384 static int verify_policy_type(u8 type
)
1387 case XFRM_POLICY_TYPE_MAIN
:
1388 #ifdef CONFIG_XFRM_SUB_POLICY
1389 case XFRM_POLICY_TYPE_SUB
:
1400 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
)
1405 case XFRM_SHARE_ANY
:
1406 case XFRM_SHARE_SESSION
:
1407 case XFRM_SHARE_USER
:
1408 case XFRM_SHARE_UNIQUE
:
1415 switch (p
->action
) {
1416 case XFRM_POLICY_ALLOW
:
1417 case XFRM_POLICY_BLOCK
:
1424 switch (p
->sel
.family
) {
1426 if (p
->sel
.prefixlen_d
> 32 || p
->sel
.prefixlen_s
> 32)
1432 #if IS_ENABLED(CONFIG_IPV6)
1433 if (p
->sel
.prefixlen_d
> 128 || p
->sel
.prefixlen_s
> 128)
1438 return -EAFNOSUPPORT
;
1445 ret
= verify_policy_dir(p
->dir
);
1448 if (p
->index
&& (xfrm_policy_id2dir(p
->index
) != p
->dir
))
1454 static int copy_from_user_sec_ctx(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1456 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1457 struct xfrm_user_sec_ctx
*uctx
;
1462 uctx
= nla_data(rt
);
1463 return security_xfrm_policy_alloc(&pol
->security
, uctx
, GFP_KERNEL
);
1466 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
1472 for (i
= 0; i
< nr
; i
++, ut
++) {
1473 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1475 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
1476 memcpy(&t
->saddr
, &ut
->saddr
,
1477 sizeof(xfrm_address_t
));
1478 t
->reqid
= ut
->reqid
;
1480 t
->share
= ut
->share
;
1481 t
->optional
= ut
->optional
;
1482 t
->aalgos
= ut
->aalgos
;
1483 t
->ealgos
= ut
->ealgos
;
1484 t
->calgos
= ut
->calgos
;
1485 /* If all masks are ~0, then we allow all algorithms. */
1486 t
->allalgs
= !~(t
->aalgos
& t
->ealgos
& t
->calgos
);
1487 t
->encap_family
= ut
->family
;
1491 static int validate_tmpl(int nr
, struct xfrm_user_tmpl
*ut
, u16 family
)
1496 if (nr
> XFRM_MAX_DEPTH
)
1499 prev_family
= family
;
1501 for (i
= 0; i
< nr
; i
++) {
1502 /* We never validated the ut->family value, so many
1503 * applications simply leave it at zero. The check was
1504 * never made and ut->family was ignored because all
1505 * templates could be assumed to have the same family as
1506 * the policy itself. Now that we will have ipv4-in-ipv6
1507 * and ipv6-in-ipv4 tunnels, this is no longer true.
1510 ut
[i
].family
= family
;
1512 switch (ut
[i
].mode
) {
1513 case XFRM_MODE_TUNNEL
:
1514 case XFRM_MODE_BEET
:
1517 if (ut
[i
].family
!= prev_family
)
1521 if (ut
[i
].mode
>= XFRM_MODE_MAX
)
1524 prev_family
= ut
[i
].family
;
1526 switch (ut
[i
].family
) {
1529 #if IS_ENABLED(CONFIG_IPV6)
1537 if (!xfrm_id_proto_valid(ut
[i
].id
.proto
))
1544 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1546 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1551 struct xfrm_user_tmpl
*utmpl
= nla_data(rt
);
1552 int nr
= nla_len(rt
) / sizeof(*utmpl
);
1555 err
= validate_tmpl(nr
, utmpl
, pol
->family
);
1559 copy_templates(pol
, utmpl
, nr
);
1564 static int copy_from_user_policy_type(u8
*tp
, struct nlattr
**attrs
)
1566 struct nlattr
*rt
= attrs
[XFRMA_POLICY_TYPE
];
1567 struct xfrm_userpolicy_type
*upt
;
1568 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1576 err
= verify_policy_type(type
);
1584 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
1586 xp
->priority
= p
->priority
;
1587 xp
->index
= p
->index
;
1588 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
1589 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
1590 xp
->action
= p
->action
;
1591 xp
->flags
= p
->flags
;
1592 xp
->family
= p
->sel
.family
;
1593 /* XXX xp->share = p->share; */
1596 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
1598 memset(p
, 0, sizeof(*p
));
1599 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
1600 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
1601 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
1602 p
->priority
= xp
->priority
;
1603 p
->index
= xp
->index
;
1604 p
->sel
.family
= xp
->family
;
1606 p
->action
= xp
->action
;
1607 p
->flags
= xp
->flags
;
1608 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
1611 static struct xfrm_policy
*xfrm_policy_construct(struct net
*net
, struct xfrm_userpolicy_info
*p
, struct nlattr
**attrs
, int *errp
)
1613 struct xfrm_policy
*xp
= xfrm_policy_alloc(net
, GFP_KERNEL
);
1621 copy_from_user_policy(xp
, p
);
1623 err
= copy_from_user_policy_type(&xp
->type
, attrs
);
1627 if (!(err
= copy_from_user_tmpl(xp
, attrs
)))
1628 err
= copy_from_user_sec_ctx(xp
, attrs
);
1632 xfrm_mark_get(attrs
, &xp
->mark
);
1634 if (attrs
[XFRMA_IF_ID
])
1635 xp
->if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
1641 xfrm_policy_destroy(xp
);
1645 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1646 struct nlattr
**attrs
)
1648 struct net
*net
= sock_net(skb
->sk
);
1649 struct xfrm_userpolicy_info
*p
= nlmsg_data(nlh
);
1650 struct xfrm_policy
*xp
;
1655 err
= verify_newpolicy_info(p
);
1658 err
= verify_sec_ctx_len(attrs
);
1662 xp
= xfrm_policy_construct(net
, p
, attrs
, &err
);
1666 /* shouldn't excl be based on nlh flags??
1667 * Aha! this is anti-netlink really i.e more pfkey derived
1668 * in netlink excl is a flag and you wouldnt need
1669 * a type XFRM_MSG_UPDPOLICY - JHS */
1670 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
1671 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
1672 xfrm_audit_policy_add(xp
, err
? 0 : 1, true);
1675 security_xfrm_policy_free(xp
->security
);
1680 c
.event
= nlh
->nlmsg_type
;
1681 c
.seq
= nlh
->nlmsg_seq
;
1682 c
.portid
= nlh
->nlmsg_pid
;
1683 km_policy_notify(xp
, p
->dir
, &c
);
1690 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1692 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
1695 if (xp
->xfrm_nr
== 0)
1698 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
1699 struct xfrm_user_tmpl
*up
= &vec
[i
];
1700 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
1702 memset(up
, 0, sizeof(*up
));
1703 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
1704 up
->family
= kp
->encap_family
;
1705 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
1706 up
->reqid
= kp
->reqid
;
1707 up
->mode
= kp
->mode
;
1708 up
->share
= kp
->share
;
1709 up
->optional
= kp
->optional
;
1710 up
->aalgos
= kp
->aalgos
;
1711 up
->ealgos
= kp
->ealgos
;
1712 up
->calgos
= kp
->calgos
;
1715 return nla_put(skb
, XFRMA_TMPL
,
1716 sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
, vec
);
1719 static inline int copy_to_user_state_sec_ctx(struct xfrm_state
*x
, struct sk_buff
*skb
)
1722 return copy_sec_ctx(x
->security
, skb
);
1727 static inline int copy_to_user_sec_ctx(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1730 return copy_sec_ctx(xp
->security
, skb
);
1733 static inline unsigned int userpolicy_type_attrsize(void)
1735 #ifdef CONFIG_XFRM_SUB_POLICY
1736 return nla_total_size(sizeof(struct xfrm_userpolicy_type
));
1742 #ifdef CONFIG_XFRM_SUB_POLICY
1743 static int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1745 struct xfrm_userpolicy_type upt
;
1747 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1748 memset(&upt
, 0, sizeof(upt
));
1751 return nla_put(skb
, XFRMA_POLICY_TYPE
, sizeof(upt
), &upt
);
1755 static inline int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1761 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
1763 struct xfrm_dump_info
*sp
= ptr
;
1764 struct xfrm_userpolicy_info
*p
;
1765 struct sk_buff
*in_skb
= sp
->in_skb
;
1766 struct sk_buff
*skb
= sp
->out_skb
;
1767 struct nlmsghdr
*nlh
;
1770 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
1771 XFRM_MSG_NEWPOLICY
, sizeof(*p
), sp
->nlmsg_flags
);
1775 p
= nlmsg_data(nlh
);
1776 copy_to_user_policy(xp
, p
, dir
);
1777 err
= copy_to_user_tmpl(xp
, skb
);
1779 err
= copy_to_user_sec_ctx(xp
, skb
);
1781 err
= copy_to_user_policy_type(xp
->type
, skb
);
1783 err
= xfrm_mark_put(skb
, &xp
->mark
);
1785 err
= xfrm_if_id_put(skb
, xp
->if_id
);
1787 nlmsg_cancel(skb
, nlh
);
1790 nlmsg_end(skb
, nlh
);
1794 static int xfrm_dump_policy_done(struct netlink_callback
*cb
)
1796 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1797 struct net
*net
= sock_net(cb
->skb
->sk
);
1799 xfrm_policy_walk_done(walk
, net
);
1803 static int xfrm_dump_policy_start(struct netlink_callback
*cb
)
1805 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1807 BUILD_BUG_ON(sizeof(*walk
) > sizeof(cb
->args
));
1809 xfrm_policy_walk_init(walk
, XFRM_POLICY_TYPE_ANY
);
1813 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1815 struct net
*net
= sock_net(skb
->sk
);
1816 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1817 struct xfrm_dump_info info
;
1819 info
.in_skb
= cb
->skb
;
1821 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1822 info
.nlmsg_flags
= NLM_F_MULTI
;
1824 (void) xfrm_policy_walk(net
, walk
, dump_one_policy
, &info
);
1829 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
1830 struct xfrm_policy
*xp
,
1833 struct xfrm_dump_info info
;
1834 struct sk_buff
*skb
;
1837 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1839 return ERR_PTR(-ENOMEM
);
1841 info
.in_skb
= in_skb
;
1843 info
.nlmsg_seq
= seq
;
1844 info
.nlmsg_flags
= 0;
1846 err
= dump_one_policy(xp
, dir
, 0, &info
);
1849 return ERR_PTR(err
);
1855 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1856 struct nlattr
**attrs
)
1858 struct net
*net
= sock_net(skb
->sk
);
1859 struct xfrm_policy
*xp
;
1860 struct xfrm_userpolicy_id
*p
;
1861 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1866 u32 mark
= xfrm_mark_get(attrs
, &m
);
1869 p
= nlmsg_data(nlh
);
1870 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
1872 err
= copy_from_user_policy_type(&type
, attrs
);
1876 err
= verify_policy_dir(p
->dir
);
1880 if (attrs
[XFRMA_IF_ID
])
1881 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
1884 xp
= xfrm_policy_byid(net
, mark
, if_id
, type
, p
->dir
, p
->index
, delete, &err
);
1886 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1887 struct xfrm_sec_ctx
*ctx
;
1889 err
= verify_sec_ctx_len(attrs
);
1895 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1897 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
1901 xp
= xfrm_policy_bysel_ctx(net
, mark
, if_id
, type
, p
->dir
, &p
->sel
,
1903 security_xfrm_policy_free(ctx
);
1909 struct sk_buff
*resp_skb
;
1911 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
1912 if (IS_ERR(resp_skb
)) {
1913 err
= PTR_ERR(resp_skb
);
1915 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
,
1916 NETLINK_CB(skb
).portid
);
1919 xfrm_audit_policy_delete(xp
, err
? 0 : 1, true);
1924 c
.data
.byid
= p
->index
;
1925 c
.event
= nlh
->nlmsg_type
;
1926 c
.seq
= nlh
->nlmsg_seq
;
1927 c
.portid
= nlh
->nlmsg_pid
;
1928 km_policy_notify(xp
, p
->dir
, &c
);
1936 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1937 struct nlattr
**attrs
)
1939 struct net
*net
= sock_net(skb
->sk
);
1941 struct xfrm_usersa_flush
*p
= nlmsg_data(nlh
);
1944 err
= xfrm_state_flush(net
, p
->proto
, true, false);
1946 if (err
== -ESRCH
) /* empty table */
1950 c
.data
.proto
= p
->proto
;
1951 c
.event
= nlh
->nlmsg_type
;
1952 c
.seq
= nlh
->nlmsg_seq
;
1953 c
.portid
= nlh
->nlmsg_pid
;
1955 km_state_notify(NULL
, &c
);
1960 static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state
*x
)
1962 unsigned int replay_size
= x
->replay_esn
?
1963 xfrm_replay_state_esn_len(x
->replay_esn
) :
1964 sizeof(struct xfrm_replay_state
);
1966 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id
))
1967 + nla_total_size(replay_size
)
1968 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur
))
1969 + nla_total_size(sizeof(struct xfrm_mark
))
1970 + nla_total_size(4) /* XFRM_AE_RTHR */
1971 + nla_total_size(4); /* XFRM_AE_ETHR */
1974 static int build_aevent(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
1976 struct xfrm_aevent_id
*id
;
1977 struct nlmsghdr
*nlh
;
1980 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_NEWAE
, sizeof(*id
), 0);
1984 id
= nlmsg_data(nlh
);
1985 memset(&id
->sa_id
, 0, sizeof(id
->sa_id
));
1986 memcpy(&id
->sa_id
.daddr
, &x
->id
.daddr
, sizeof(x
->id
.daddr
));
1987 id
->sa_id
.spi
= x
->id
.spi
;
1988 id
->sa_id
.family
= x
->props
.family
;
1989 id
->sa_id
.proto
= x
->id
.proto
;
1990 memcpy(&id
->saddr
, &x
->props
.saddr
, sizeof(x
->props
.saddr
));
1991 id
->reqid
= x
->props
.reqid
;
1992 id
->flags
= c
->data
.aevent
;
1994 if (x
->replay_esn
) {
1995 err
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
1996 xfrm_replay_state_esn_len(x
->replay_esn
),
1999 err
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
2004 err
= nla_put_64bit(skb
, XFRMA_LTIME_VAL
, sizeof(x
->curlft
), &x
->curlft
,
2009 if (id
->flags
& XFRM_AE_RTHR
) {
2010 err
= nla_put_u32(skb
, XFRMA_REPLAY_THRESH
, x
->replay_maxdiff
);
2014 if (id
->flags
& XFRM_AE_ETHR
) {
2015 err
= nla_put_u32(skb
, XFRMA_ETIMER_THRESH
,
2016 x
->replay_maxage
* 10 / HZ
);
2020 err
= xfrm_mark_put(skb
, &x
->mark
);
2024 err
= xfrm_if_id_put(skb
, x
->if_id
);
2028 nlmsg_end(skb
, nlh
);
2032 nlmsg_cancel(skb
, nlh
);
2036 static int xfrm_get_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2037 struct nlattr
**attrs
)
2039 struct net
*net
= sock_net(skb
->sk
);
2040 struct xfrm_state
*x
;
2041 struct sk_buff
*r_skb
;
2046 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
2047 struct xfrm_usersa_id
*id
= &p
->sa_id
;
2049 mark
= xfrm_mark_get(attrs
, &m
);
2051 x
= xfrm_state_lookup(net
, mark
, &id
->daddr
, id
->spi
, id
->proto
, id
->family
);
2055 r_skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2056 if (r_skb
== NULL
) {
2062 * XXX: is this lock really needed - none of the other
2063 * gets lock (the concern is things getting updated
2064 * while we are still reading) - jhs
2066 spin_lock_bh(&x
->lock
);
2067 c
.data
.aevent
= p
->flags
;
2068 c
.seq
= nlh
->nlmsg_seq
;
2069 c
.portid
= nlh
->nlmsg_pid
;
2071 err
= build_aevent(r_skb
, x
, &c
);
2074 err
= nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, NETLINK_CB(skb
).portid
);
2075 spin_unlock_bh(&x
->lock
);
2080 static int xfrm_new_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2081 struct nlattr
**attrs
)
2083 struct net
*net
= sock_net(skb
->sk
);
2084 struct xfrm_state
*x
;
2089 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
2090 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
2091 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
2092 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
2093 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
2094 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
2096 if (!lt
&& !rp
&& !re
&& !et
&& !rt
)
2099 /* pedantic mode - thou shalt sayeth replaceth */
2100 if (!(nlh
->nlmsg_flags
&NLM_F_REPLACE
))
2103 mark
= xfrm_mark_get(attrs
, &m
);
2105 x
= xfrm_state_lookup(net
, mark
, &p
->sa_id
.daddr
, p
->sa_id
.spi
, p
->sa_id
.proto
, p
->sa_id
.family
);
2109 if (x
->km
.state
!= XFRM_STATE_VALID
)
2112 err
= xfrm_replay_verify_len(x
->replay_esn
, re
);
2116 spin_lock_bh(&x
->lock
);
2117 xfrm_update_ae_params(x
, attrs
, 1);
2118 spin_unlock_bh(&x
->lock
);
2120 c
.event
= nlh
->nlmsg_type
;
2121 c
.seq
= nlh
->nlmsg_seq
;
2122 c
.portid
= nlh
->nlmsg_pid
;
2123 c
.data
.aevent
= XFRM_AE_CU
;
2124 km_state_notify(x
, &c
);
2131 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2132 struct nlattr
**attrs
)
2134 struct net
*net
= sock_net(skb
->sk
);
2136 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2139 err
= copy_from_user_policy_type(&type
, attrs
);
2143 err
= xfrm_policy_flush(net
, type
, true);
2145 if (err
== -ESRCH
) /* empty table */
2151 c
.event
= nlh
->nlmsg_type
;
2152 c
.seq
= nlh
->nlmsg_seq
;
2153 c
.portid
= nlh
->nlmsg_pid
;
2155 km_policy_notify(NULL
, 0, &c
);
2159 static int xfrm_add_pol_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2160 struct nlattr
**attrs
)
2162 struct net
*net
= sock_net(skb
->sk
);
2163 struct xfrm_policy
*xp
;
2164 struct xfrm_user_polexpire
*up
= nlmsg_data(nlh
);
2165 struct xfrm_userpolicy_info
*p
= &up
->pol
;
2166 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2169 u32 mark
= xfrm_mark_get(attrs
, &m
);
2172 err
= copy_from_user_policy_type(&type
, attrs
);
2176 err
= verify_policy_dir(p
->dir
);
2180 if (attrs
[XFRMA_IF_ID
])
2181 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
2184 xp
= xfrm_policy_byid(net
, mark
, if_id
, type
, p
->dir
, p
->index
, 0, &err
);
2186 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
2187 struct xfrm_sec_ctx
*ctx
;
2189 err
= verify_sec_ctx_len(attrs
);
2195 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
2197 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
2201 xp
= xfrm_policy_bysel_ctx(net
, mark
, if_id
, type
, p
->dir
,
2202 &p
->sel
, ctx
, 0, &err
);
2203 security_xfrm_policy_free(ctx
);
2208 if (unlikely(xp
->walk
.dead
))
2213 xfrm_policy_delete(xp
, p
->dir
);
2214 xfrm_audit_policy_delete(xp
, 1, true);
2216 km_policy_expired(xp
, p
->dir
, up
->hard
, nlh
->nlmsg_pid
);
2223 static int xfrm_add_sa_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2224 struct nlattr
**attrs
)
2226 struct net
*net
= sock_net(skb
->sk
);
2227 struct xfrm_state
*x
;
2229 struct xfrm_user_expire
*ue
= nlmsg_data(nlh
);
2230 struct xfrm_usersa_info
*p
= &ue
->state
;
2232 u32 mark
= xfrm_mark_get(attrs
, &m
);
2234 x
= xfrm_state_lookup(net
, mark
, &p
->id
.daddr
, p
->id
.spi
, p
->id
.proto
, p
->family
);
2240 spin_lock_bh(&x
->lock
);
2242 if (x
->km
.state
!= XFRM_STATE_VALID
)
2244 km_state_expired(x
, ue
->hard
, nlh
->nlmsg_pid
);
2247 __xfrm_state_delete(x
);
2248 xfrm_audit_state_delete(x
, 1, true);
2252 spin_unlock_bh(&x
->lock
);
2257 static int xfrm_add_acquire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2258 struct nlattr
**attrs
)
2260 struct net
*net
= sock_net(skb
->sk
);
2261 struct xfrm_policy
*xp
;
2262 struct xfrm_user_tmpl
*ut
;
2264 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
2265 struct xfrm_mark mark
;
2267 struct xfrm_user_acquire
*ua
= nlmsg_data(nlh
);
2268 struct xfrm_state
*x
= xfrm_state_alloc(net
);
2274 xfrm_mark_get(attrs
, &mark
);
2276 err
= verify_newpolicy_info(&ua
->policy
);
2279 err
= verify_sec_ctx_len(attrs
);
2284 xp
= xfrm_policy_construct(net
, &ua
->policy
, attrs
, &err
);
2288 memcpy(&x
->id
, &ua
->id
, sizeof(ua
->id
));
2289 memcpy(&x
->props
.saddr
, &ua
->saddr
, sizeof(ua
->saddr
));
2290 memcpy(&x
->sel
, &ua
->sel
, sizeof(ua
->sel
));
2291 xp
->mark
.m
= x
->mark
.m
= mark
.m
;
2292 xp
->mark
.v
= x
->mark
.v
= mark
.v
;
2294 /* extract the templates and for each call km_key */
2295 for (i
= 0; i
< xp
->xfrm_nr
; i
++, ut
++) {
2296 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
2297 memcpy(&x
->id
, &t
->id
, sizeof(x
->id
));
2298 x
->props
.mode
= t
->mode
;
2299 x
->props
.reqid
= t
->reqid
;
2300 x
->props
.family
= ut
->family
;
2301 t
->aalgos
= ua
->aalgos
;
2302 t
->ealgos
= ua
->ealgos
;
2303 t
->calgos
= ua
->calgos
;
2304 err
= km_query(x
, t
, xp
);
2319 #ifdef CONFIG_XFRM_MIGRATE
2320 static int copy_from_user_migrate(struct xfrm_migrate
*ma
,
2321 struct xfrm_kmaddress
*k
,
2322 struct nlattr
**attrs
, int *num
)
2324 struct nlattr
*rt
= attrs
[XFRMA_MIGRATE
];
2325 struct xfrm_user_migrate
*um
;
2329 struct xfrm_user_kmaddress
*uk
;
2331 uk
= nla_data(attrs
[XFRMA_KMADDRESS
]);
2332 memcpy(&k
->local
, &uk
->local
, sizeof(k
->local
));
2333 memcpy(&k
->remote
, &uk
->remote
, sizeof(k
->remote
));
2334 k
->family
= uk
->family
;
2335 k
->reserved
= uk
->reserved
;
2339 num_migrate
= nla_len(rt
) / sizeof(*um
);
2341 if (num_migrate
<= 0 || num_migrate
> XFRM_MAX_DEPTH
)
2344 for (i
= 0; i
< num_migrate
; i
++, um
++, ma
++) {
2345 memcpy(&ma
->old_daddr
, &um
->old_daddr
, sizeof(ma
->old_daddr
));
2346 memcpy(&ma
->old_saddr
, &um
->old_saddr
, sizeof(ma
->old_saddr
));
2347 memcpy(&ma
->new_daddr
, &um
->new_daddr
, sizeof(ma
->new_daddr
));
2348 memcpy(&ma
->new_saddr
, &um
->new_saddr
, sizeof(ma
->new_saddr
));
2350 ma
->proto
= um
->proto
;
2351 ma
->mode
= um
->mode
;
2352 ma
->reqid
= um
->reqid
;
2354 ma
->old_family
= um
->old_family
;
2355 ma
->new_family
= um
->new_family
;
2362 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2363 struct nlattr
**attrs
)
2365 struct xfrm_userpolicy_id
*pi
= nlmsg_data(nlh
);
2366 struct xfrm_migrate m
[XFRM_MAX_DEPTH
];
2367 struct xfrm_kmaddress km
, *kmp
;
2371 struct net
*net
= sock_net(skb
->sk
);
2372 struct xfrm_encap_tmpl
*encap
= NULL
;
2374 if (attrs
[XFRMA_MIGRATE
] == NULL
)
2377 kmp
= attrs
[XFRMA_KMADDRESS
] ? &km
: NULL
;
2379 err
= copy_from_user_policy_type(&type
, attrs
);
2383 err
= copy_from_user_migrate((struct xfrm_migrate
*)m
, kmp
, attrs
, &n
);
2390 if (attrs
[XFRMA_ENCAP
]) {
2391 encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
2392 sizeof(*encap
), GFP_KERNEL
);
2397 err
= xfrm_migrate(&pi
->sel
, pi
->dir
, type
, m
, n
, kmp
, net
, encap
);
2404 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2405 struct nlattr
**attrs
)
2407 return -ENOPROTOOPT
;
2411 #ifdef CONFIG_XFRM_MIGRATE
2412 static int copy_to_user_migrate(const struct xfrm_migrate
*m
, struct sk_buff
*skb
)
2414 struct xfrm_user_migrate um
;
2416 memset(&um
, 0, sizeof(um
));
2417 um
.proto
= m
->proto
;
2419 um
.reqid
= m
->reqid
;
2420 um
.old_family
= m
->old_family
;
2421 memcpy(&um
.old_daddr
, &m
->old_daddr
, sizeof(um
.old_daddr
));
2422 memcpy(&um
.old_saddr
, &m
->old_saddr
, sizeof(um
.old_saddr
));
2423 um
.new_family
= m
->new_family
;
2424 memcpy(&um
.new_daddr
, &m
->new_daddr
, sizeof(um
.new_daddr
));
2425 memcpy(&um
.new_saddr
, &m
->new_saddr
, sizeof(um
.new_saddr
));
2427 return nla_put(skb
, XFRMA_MIGRATE
, sizeof(um
), &um
);
2430 static int copy_to_user_kmaddress(const struct xfrm_kmaddress
*k
, struct sk_buff
*skb
)
2432 struct xfrm_user_kmaddress uk
;
2434 memset(&uk
, 0, sizeof(uk
));
2435 uk
.family
= k
->family
;
2436 uk
.reserved
= k
->reserved
;
2437 memcpy(&uk
.local
, &k
->local
, sizeof(uk
.local
));
2438 memcpy(&uk
.remote
, &k
->remote
, sizeof(uk
.remote
));
2440 return nla_put(skb
, XFRMA_KMADDRESS
, sizeof(uk
), &uk
);
2443 static inline unsigned int xfrm_migrate_msgsize(int num_migrate
, int with_kma
,
2446 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id
))
2447 + (with_kma
? nla_total_size(sizeof(struct xfrm_kmaddress
)) : 0)
2448 + (with_encp
? nla_total_size(sizeof(struct xfrm_encap_tmpl
)) : 0)
2449 + nla_total_size(sizeof(struct xfrm_user_migrate
) * num_migrate
)
2450 + userpolicy_type_attrsize();
2453 static int build_migrate(struct sk_buff
*skb
, const struct xfrm_migrate
*m
,
2454 int num_migrate
, const struct xfrm_kmaddress
*k
,
2455 const struct xfrm_selector
*sel
,
2456 const struct xfrm_encap_tmpl
*encap
, u8 dir
, u8 type
)
2458 const struct xfrm_migrate
*mp
;
2459 struct xfrm_userpolicy_id
*pol_id
;
2460 struct nlmsghdr
*nlh
;
2463 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MIGRATE
, sizeof(*pol_id
), 0);
2467 pol_id
= nlmsg_data(nlh
);
2468 /* copy data from selector, dir, and type to the pol_id */
2469 memset(pol_id
, 0, sizeof(*pol_id
));
2470 memcpy(&pol_id
->sel
, sel
, sizeof(pol_id
->sel
));
2474 err
= copy_to_user_kmaddress(k
, skb
);
2479 err
= nla_put(skb
, XFRMA_ENCAP
, sizeof(*encap
), encap
);
2483 err
= copy_to_user_policy_type(type
, skb
);
2486 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
2487 err
= copy_to_user_migrate(mp
, skb
);
2492 nlmsg_end(skb
, nlh
);
2496 nlmsg_cancel(skb
, nlh
);
2500 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2501 const struct xfrm_migrate
*m
, int num_migrate
,
2502 const struct xfrm_kmaddress
*k
,
2503 const struct xfrm_encap_tmpl
*encap
)
2505 struct net
*net
= &init_net
;
2506 struct sk_buff
*skb
;
2509 skb
= nlmsg_new(xfrm_migrate_msgsize(num_migrate
, !!k
, !!encap
),
2515 err
= build_migrate(skb
, m
, num_migrate
, k
, sel
, encap
, dir
, type
);
2518 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MIGRATE
);
2521 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2522 const struct xfrm_migrate
*m
, int num_migrate
,
2523 const struct xfrm_kmaddress
*k
,
2524 const struct xfrm_encap_tmpl
*encap
)
2526 return -ENOPROTOOPT
;
2530 #define XMSGSIZE(type) sizeof(struct type)
2532 static const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
2533 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2534 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2535 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2536 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2537 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2538 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2539 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
2540 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
2541 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
2542 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2543 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2544 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
2545 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
2546 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = 0,
2547 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2548 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2549 [XFRM_MSG_REPORT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_report
),
2550 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2551 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2552 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2553 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2558 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1] = {
2559 [XFRMA_SA
] = { .len
= sizeof(struct xfrm_usersa_info
)},
2560 [XFRMA_POLICY
] = { .len
= sizeof(struct xfrm_userpolicy_info
)},
2561 [XFRMA_LASTUSED
] = { .type
= NLA_U64
},
2562 [XFRMA_ALG_AUTH_TRUNC
] = { .len
= sizeof(struct xfrm_algo_auth
)},
2563 [XFRMA_ALG_AEAD
] = { .len
= sizeof(struct xfrm_algo_aead
) },
2564 [XFRMA_ALG_AUTH
] = { .len
= sizeof(struct xfrm_algo
) },
2565 [XFRMA_ALG_CRYPT
] = { .len
= sizeof(struct xfrm_algo
) },
2566 [XFRMA_ALG_COMP
] = { .len
= sizeof(struct xfrm_algo
) },
2567 [XFRMA_ENCAP
] = { .len
= sizeof(struct xfrm_encap_tmpl
) },
2568 [XFRMA_TMPL
] = { .len
= sizeof(struct xfrm_user_tmpl
) },
2569 [XFRMA_SEC_CTX
] = { .len
= sizeof(struct xfrm_sec_ctx
) },
2570 [XFRMA_LTIME_VAL
] = { .len
= sizeof(struct xfrm_lifetime_cur
) },
2571 [XFRMA_REPLAY_VAL
] = { .len
= sizeof(struct xfrm_replay_state
) },
2572 [XFRMA_REPLAY_THRESH
] = { .type
= NLA_U32
},
2573 [XFRMA_ETIMER_THRESH
] = { .type
= NLA_U32
},
2574 [XFRMA_SRCADDR
] = { .len
= sizeof(xfrm_address_t
) },
2575 [XFRMA_COADDR
] = { .len
= sizeof(xfrm_address_t
) },
2576 [XFRMA_POLICY_TYPE
] = { .len
= sizeof(struct xfrm_userpolicy_type
)},
2577 [XFRMA_MIGRATE
] = { .len
= sizeof(struct xfrm_user_migrate
) },
2578 [XFRMA_KMADDRESS
] = { .len
= sizeof(struct xfrm_user_kmaddress
) },
2579 [XFRMA_MARK
] = { .len
= sizeof(struct xfrm_mark
) },
2580 [XFRMA_TFCPAD
] = { .type
= NLA_U32
},
2581 [XFRMA_REPLAY_ESN_VAL
] = { .len
= sizeof(struct xfrm_replay_state_esn
) },
2582 [XFRMA_SA_EXTRA_FLAGS
] = { .type
= NLA_U32
},
2583 [XFRMA_PROTO
] = { .type
= NLA_U8
},
2584 [XFRMA_ADDRESS_FILTER
] = { .len
= sizeof(struct xfrm_address_filter
) },
2585 [XFRMA_OFFLOAD_DEV
] = { .len
= sizeof(struct xfrm_user_offload
) },
2586 [XFRMA_SET_MARK
] = { .type
= NLA_U32
},
2587 [XFRMA_SET_MARK_MASK
] = { .type
= NLA_U32
},
2588 [XFRMA_IF_ID
] = { .type
= NLA_U32
},
2591 static const struct nla_policy xfrma_spd_policy
[XFRMA_SPD_MAX
+1] = {
2592 [XFRMA_SPD_IPV4_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
2593 [XFRMA_SPD_IPV6_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
2596 static const struct xfrm_link
{
2597 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
2598 int (*start
)(struct netlink_callback
*);
2599 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
2600 int (*done
)(struct netlink_callback
*);
2601 const struct nla_policy
*nla_pol
;
2603 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
2604 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2605 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
2606 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
2607 .dump
= xfrm_dump_sa
,
2608 .done
= xfrm_dump_sa_done
},
2609 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2610 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
2611 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
2612 .start
= xfrm_dump_policy_start
,
2613 .dump
= xfrm_dump_policy
,
2614 .done
= xfrm_dump_policy_done
},
2615 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
2616 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_acquire
},
2617 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa_expire
},
2618 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2619 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2620 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_pol_expire
},
2621 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
2622 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
2623 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_new_ae
},
2624 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_ae
},
2625 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = { .doit
= xfrm_do_migrate
},
2626 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sadinfo
},
2627 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_set_spdinfo
,
2628 .nla_pol
= xfrma_spd_policy
,
2629 .nla_max
= XFRMA_SPD_MAX
},
2630 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_spdinfo
},
2633 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2634 struct netlink_ext_ack
*extack
)
2636 struct net
*net
= sock_net(skb
->sk
);
2637 struct nlattr
*attrs
[XFRMA_MAX
+1];
2638 const struct xfrm_link
*link
;
2641 if (in_compat_syscall())
2644 type
= nlh
->nlmsg_type
;
2645 if (type
> XFRM_MSG_MAX
)
2648 type
-= XFRM_MSG_BASE
;
2649 link
= &xfrm_dispatch
[type
];
2651 /* All operations require privileges, even GET */
2652 if (!netlink_net_capable(skb
, CAP_NET_ADMIN
))
2655 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
2656 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
2657 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
2658 if (link
->dump
== NULL
)
2662 struct netlink_dump_control c
= {
2663 .start
= link
->start
,
2667 return netlink_dump_start(net
->xfrm
.nlsk
, skb
, nlh
, &c
);
2671 err
= nlmsg_parse_deprecated(nlh
, xfrm_msg_min
[type
], attrs
,
2672 link
->nla_max
? : XFRMA_MAX
,
2673 link
->nla_pol
? : xfrma_policy
, extack
);
2677 if (link
->doit
== NULL
)
2680 return link
->doit(skb
, nlh
, attrs
);
2683 static void xfrm_netlink_rcv(struct sk_buff
*skb
)
2685 struct net
*net
= sock_net(skb
->sk
);
2687 mutex_lock(&net
->xfrm
.xfrm_cfg_mutex
);
2688 netlink_rcv_skb(skb
, &xfrm_user_rcv_msg
);
2689 mutex_unlock(&net
->xfrm
.xfrm_cfg_mutex
);
2692 static inline unsigned int xfrm_expire_msgsize(void)
2694 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire
))
2695 + nla_total_size(sizeof(struct xfrm_mark
));
2698 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
2700 struct xfrm_user_expire
*ue
;
2701 struct nlmsghdr
*nlh
;
2704 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_EXPIRE
, sizeof(*ue
), 0);
2708 ue
= nlmsg_data(nlh
);
2709 copy_to_user_state(x
, &ue
->state
);
2710 ue
->hard
= (c
->data
.hard
!= 0) ? 1 : 0;
2711 /* clear the padding bytes */
2712 memset(&ue
->hard
+ 1, 0, sizeof(*ue
) - offsetofend(typeof(*ue
), hard
));
2714 err
= xfrm_mark_put(skb
, &x
->mark
);
2718 err
= xfrm_if_id_put(skb
, x
->if_id
);
2722 nlmsg_end(skb
, nlh
);
2726 static int xfrm_exp_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2728 struct net
*net
= xs_net(x
);
2729 struct sk_buff
*skb
;
2731 skb
= nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC
);
2735 if (build_expire(skb
, x
, c
) < 0) {
2740 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
2743 static int xfrm_aevent_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2745 struct net
*net
= xs_net(x
);
2746 struct sk_buff
*skb
;
2749 skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2753 err
= build_aevent(skb
, x
, c
);
2756 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_AEVENTS
);
2759 static int xfrm_notify_sa_flush(const struct km_event
*c
)
2761 struct net
*net
= c
->net
;
2762 struct xfrm_usersa_flush
*p
;
2763 struct nlmsghdr
*nlh
;
2764 struct sk_buff
*skb
;
2765 int len
= NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush
));
2767 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2771 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHSA
, sizeof(*p
), 0);
2777 p
= nlmsg_data(nlh
);
2778 p
->proto
= c
->data
.proto
;
2780 nlmsg_end(skb
, nlh
);
2782 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
2785 static inline unsigned int xfrm_sa_len(struct xfrm_state
*x
)
2789 l
+= nla_total_size(aead_len(x
->aead
));
2791 l
+= nla_total_size(sizeof(struct xfrm_algo
) +
2792 (x
->aalg
->alg_key_len
+ 7) / 8);
2793 l
+= nla_total_size(xfrm_alg_auth_len(x
->aalg
));
2796 l
+= nla_total_size(xfrm_alg_len(x
->ealg
));
2798 l
+= nla_total_size(sizeof(*x
->calg
));
2800 l
+= nla_total_size(sizeof(*x
->encap
));
2802 l
+= nla_total_size(sizeof(x
->tfcpad
));
2804 l
+= nla_total_size(xfrm_replay_state_esn_len(x
->replay_esn
));
2806 l
+= nla_total_size(sizeof(struct xfrm_replay_state
));
2808 l
+= nla_total_size(sizeof(struct xfrm_user_sec_ctx
) +
2809 x
->security
->ctx_len
);
2811 l
+= nla_total_size(sizeof(*x
->coaddr
));
2812 if (x
->props
.extra_flags
)
2813 l
+= nla_total_size(sizeof(x
->props
.extra_flags
));
2815 l
+= nla_total_size(sizeof(x
->xso
));
2816 if (x
->props
.smark
.v
| x
->props
.smark
.m
) {
2817 l
+= nla_total_size(sizeof(x
->props
.smark
.v
));
2818 l
+= nla_total_size(sizeof(x
->props
.smark
.m
));
2821 l
+= nla_total_size(sizeof(x
->if_id
));
2823 /* Must count x->lastused as it may become non-zero behind our back. */
2824 l
+= nla_total_size_64bit(sizeof(u64
));
2829 static int xfrm_notify_sa(struct xfrm_state
*x
, const struct km_event
*c
)
2831 struct net
*net
= xs_net(x
);
2832 struct xfrm_usersa_info
*p
;
2833 struct xfrm_usersa_id
*id
;
2834 struct nlmsghdr
*nlh
;
2835 struct sk_buff
*skb
;
2836 unsigned int len
= xfrm_sa_len(x
);
2837 unsigned int headlen
;
2840 headlen
= sizeof(*p
);
2841 if (c
->event
== XFRM_MSG_DELSA
) {
2842 len
+= nla_total_size(headlen
);
2843 headlen
= sizeof(*id
);
2844 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2846 len
+= NLMSG_ALIGN(headlen
);
2848 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2852 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
2857 p
= nlmsg_data(nlh
);
2858 if (c
->event
== XFRM_MSG_DELSA
) {
2859 struct nlattr
*attr
;
2861 id
= nlmsg_data(nlh
);
2862 memset(id
, 0, sizeof(*id
));
2863 memcpy(&id
->daddr
, &x
->id
.daddr
, sizeof(id
->daddr
));
2864 id
->spi
= x
->id
.spi
;
2865 id
->family
= x
->props
.family
;
2866 id
->proto
= x
->id
.proto
;
2868 attr
= nla_reserve(skb
, XFRMA_SA
, sizeof(*p
));
2875 err
= copy_to_user_state_extra(x
, p
, skb
);
2879 nlmsg_end(skb
, nlh
);
2881 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
2888 static int xfrm_send_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2892 case XFRM_MSG_EXPIRE
:
2893 return xfrm_exp_state_notify(x
, c
);
2894 case XFRM_MSG_NEWAE
:
2895 return xfrm_aevent_state_notify(x
, c
);
2896 case XFRM_MSG_DELSA
:
2897 case XFRM_MSG_UPDSA
:
2898 case XFRM_MSG_NEWSA
:
2899 return xfrm_notify_sa(x
, c
);
2900 case XFRM_MSG_FLUSHSA
:
2901 return xfrm_notify_sa_flush(c
);
2903 printk(KERN_NOTICE
"xfrm_user: Unknown SA event %d\n",
2912 static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state
*x
,
2913 struct xfrm_policy
*xp
)
2915 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire
))
2916 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2917 + nla_total_size(sizeof(struct xfrm_mark
))
2918 + nla_total_size(xfrm_user_sec_ctx_size(x
->security
))
2919 + userpolicy_type_attrsize();
2922 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
2923 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
)
2925 __u32 seq
= xfrm_get_acqseq();
2926 struct xfrm_user_acquire
*ua
;
2927 struct nlmsghdr
*nlh
;
2930 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_ACQUIRE
, sizeof(*ua
), 0);
2934 ua
= nlmsg_data(nlh
);
2935 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
2936 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
2937 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
2938 copy_to_user_policy(xp
, &ua
->policy
, XFRM_POLICY_OUT
);
2939 ua
->aalgos
= xt
->aalgos
;
2940 ua
->ealgos
= xt
->ealgos
;
2941 ua
->calgos
= xt
->calgos
;
2942 ua
->seq
= x
->km
.seq
= seq
;
2944 err
= copy_to_user_tmpl(xp
, skb
);
2946 err
= copy_to_user_state_sec_ctx(x
, skb
);
2948 err
= copy_to_user_policy_type(xp
->type
, skb
);
2950 err
= xfrm_mark_put(skb
, &xp
->mark
);
2952 err
= xfrm_if_id_put(skb
, xp
->if_id
);
2954 nlmsg_cancel(skb
, nlh
);
2958 nlmsg_end(skb
, nlh
);
2962 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
2963 struct xfrm_policy
*xp
)
2965 struct net
*net
= xs_net(x
);
2966 struct sk_buff
*skb
;
2969 skb
= nlmsg_new(xfrm_acquire_msgsize(x
, xp
), GFP_ATOMIC
);
2973 err
= build_acquire(skb
, x
, xt
, xp
);
2976 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_ACQUIRE
);
2979 /* User gives us xfrm_user_policy_info followed by an array of 0
2980 * or more templates.
2982 static struct xfrm_policy
*xfrm_compile_policy(struct sock
*sk
, int opt
,
2983 u8
*data
, int len
, int *dir
)
2985 struct net
*net
= sock_net(sk
);
2986 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
2987 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
2988 struct xfrm_policy
*xp
;
2991 switch (sk
->sk_family
) {
2993 if (opt
!= IP_XFRM_POLICY
) {
2998 #if IS_ENABLED(CONFIG_IPV6)
3000 if (opt
!= IPV6_XFRM_POLICY
) {
3013 if (len
< sizeof(*p
) ||
3014 verify_newpolicy_info(p
))
3017 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
3018 if (validate_tmpl(nr
, ut
, p
->sel
.family
))
3021 if (p
->dir
> XFRM_POLICY_OUT
)
3024 xp
= xfrm_policy_alloc(net
, GFP_ATOMIC
);
3030 copy_from_user_policy(xp
, p
);
3031 xp
->type
= XFRM_POLICY_TYPE_MAIN
;
3032 copy_templates(xp
, ut
, nr
);
3039 static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy
*xp
)
3041 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire
))
3042 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
3043 + nla_total_size(xfrm_user_sec_ctx_size(xp
->security
))
3044 + nla_total_size(sizeof(struct xfrm_mark
))
3045 + userpolicy_type_attrsize();
3048 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
3049 int dir
, const struct km_event
*c
)
3051 struct xfrm_user_polexpire
*upe
;
3052 int hard
= c
->data
.hard
;
3053 struct nlmsghdr
*nlh
;
3056 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
), 0);
3060 upe
= nlmsg_data(nlh
);
3061 copy_to_user_policy(xp
, &upe
->pol
, dir
);
3062 err
= copy_to_user_tmpl(xp
, skb
);
3064 err
= copy_to_user_sec_ctx(xp
, skb
);
3066 err
= copy_to_user_policy_type(xp
->type
, skb
);
3068 err
= xfrm_mark_put(skb
, &xp
->mark
);
3070 err
= xfrm_if_id_put(skb
, xp
->if_id
);
3072 nlmsg_cancel(skb
, nlh
);
3077 nlmsg_end(skb
, nlh
);
3081 static int xfrm_exp_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3083 struct net
*net
= xp_net(xp
);
3084 struct sk_buff
*skb
;
3087 skb
= nlmsg_new(xfrm_polexpire_msgsize(xp
), GFP_ATOMIC
);
3091 err
= build_polexpire(skb
, xp
, dir
, c
);
3094 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
3097 static int xfrm_notify_policy(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3099 unsigned int len
= nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
3100 struct net
*net
= xp_net(xp
);
3101 struct xfrm_userpolicy_info
*p
;
3102 struct xfrm_userpolicy_id
*id
;
3103 struct nlmsghdr
*nlh
;
3104 struct sk_buff
*skb
;
3105 unsigned int headlen
;
3108 headlen
= sizeof(*p
);
3109 if (c
->event
== XFRM_MSG_DELPOLICY
) {
3110 len
+= nla_total_size(headlen
);
3111 headlen
= sizeof(*id
);
3113 len
+= userpolicy_type_attrsize();
3114 len
+= nla_total_size(sizeof(struct xfrm_mark
));
3115 len
+= NLMSG_ALIGN(headlen
);
3117 skb
= nlmsg_new(len
, GFP_ATOMIC
);
3121 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
3126 p
= nlmsg_data(nlh
);
3127 if (c
->event
== XFRM_MSG_DELPOLICY
) {
3128 struct nlattr
*attr
;
3130 id
= nlmsg_data(nlh
);
3131 memset(id
, 0, sizeof(*id
));
3134 id
->index
= xp
->index
;
3136 memcpy(&id
->sel
, &xp
->selector
, sizeof(id
->sel
));
3138 attr
= nla_reserve(skb
, XFRMA_POLICY
, sizeof(*p
));
3146 copy_to_user_policy(xp
, p
, dir
);
3147 err
= copy_to_user_tmpl(xp
, skb
);
3149 err
= copy_to_user_policy_type(xp
->type
, skb
);
3151 err
= xfrm_mark_put(skb
, &xp
->mark
);
3153 err
= xfrm_if_id_put(skb
, xp
->if_id
);
3157 nlmsg_end(skb
, nlh
);
3159 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
3166 static int xfrm_notify_policy_flush(const struct km_event
*c
)
3168 struct net
*net
= c
->net
;
3169 struct nlmsghdr
*nlh
;
3170 struct sk_buff
*skb
;
3173 skb
= nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC
);
3177 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHPOLICY
, 0, 0);
3181 err
= copy_to_user_policy_type(c
->data
.type
, skb
);
3185 nlmsg_end(skb
, nlh
);
3187 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
3194 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3198 case XFRM_MSG_NEWPOLICY
:
3199 case XFRM_MSG_UPDPOLICY
:
3200 case XFRM_MSG_DELPOLICY
:
3201 return xfrm_notify_policy(xp
, dir
, c
);
3202 case XFRM_MSG_FLUSHPOLICY
:
3203 return xfrm_notify_policy_flush(c
);
3204 case XFRM_MSG_POLEXPIRE
:
3205 return xfrm_exp_policy_notify(xp
, dir
, c
);
3207 printk(KERN_NOTICE
"xfrm_user: Unknown Policy event %d\n",
3215 static inline unsigned int xfrm_report_msgsize(void)
3217 return NLMSG_ALIGN(sizeof(struct xfrm_user_report
));
3220 static int build_report(struct sk_buff
*skb
, u8 proto
,
3221 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3223 struct xfrm_user_report
*ur
;
3224 struct nlmsghdr
*nlh
;
3226 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_REPORT
, sizeof(*ur
), 0);
3230 ur
= nlmsg_data(nlh
);
3232 memcpy(&ur
->sel
, sel
, sizeof(ur
->sel
));
3235 int err
= nla_put(skb
, XFRMA_COADDR
, sizeof(*addr
), addr
);
3237 nlmsg_cancel(skb
, nlh
);
3241 nlmsg_end(skb
, nlh
);
3245 static int xfrm_send_report(struct net
*net
, u8 proto
,
3246 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3248 struct sk_buff
*skb
;
3251 skb
= nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC
);
3255 err
= build_report(skb
, proto
, sel
, addr
);
3258 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_REPORT
);
3261 static inline unsigned int xfrm_mapping_msgsize(void)
3263 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping
));
3266 static int build_mapping(struct sk_buff
*skb
, struct xfrm_state
*x
,
3267 xfrm_address_t
*new_saddr
, __be16 new_sport
)
3269 struct xfrm_user_mapping
*um
;
3270 struct nlmsghdr
*nlh
;
3272 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MAPPING
, sizeof(*um
), 0);
3276 um
= nlmsg_data(nlh
);
3278 memcpy(&um
->id
.daddr
, &x
->id
.daddr
, sizeof(um
->id
.daddr
));
3279 um
->id
.spi
= x
->id
.spi
;
3280 um
->id
.family
= x
->props
.family
;
3281 um
->id
.proto
= x
->id
.proto
;
3282 memcpy(&um
->new_saddr
, new_saddr
, sizeof(um
->new_saddr
));
3283 memcpy(&um
->old_saddr
, &x
->props
.saddr
, sizeof(um
->old_saddr
));
3284 um
->new_sport
= new_sport
;
3285 um
->old_sport
= x
->encap
->encap_sport
;
3286 um
->reqid
= x
->props
.reqid
;
3288 nlmsg_end(skb
, nlh
);
3292 static int xfrm_send_mapping(struct xfrm_state
*x
, xfrm_address_t
*ipaddr
,
3295 struct net
*net
= xs_net(x
);
3296 struct sk_buff
*skb
;
3299 if (x
->id
.proto
!= IPPROTO_ESP
)
3305 skb
= nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC
);
3309 err
= build_mapping(skb
, x
, ipaddr
, sport
);
3312 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MAPPING
);
3315 static bool xfrm_is_alive(const struct km_event
*c
)
3317 return (bool)xfrm_acquire_is_on(c
->net
);
3320 static struct xfrm_mgr netlink_mgr
= {
3321 .notify
= xfrm_send_state_notify
,
3322 .acquire
= xfrm_send_acquire
,
3323 .compile_policy
= xfrm_compile_policy
,
3324 .notify_policy
= xfrm_send_policy_notify
,
3325 .report
= xfrm_send_report
,
3326 .migrate
= xfrm_send_migrate
,
3327 .new_mapping
= xfrm_send_mapping
,
3328 .is_alive
= xfrm_is_alive
,
3331 static int __net_init
xfrm_user_net_init(struct net
*net
)
3334 struct netlink_kernel_cfg cfg
= {
3335 .groups
= XFRMNLGRP_MAX
,
3336 .input
= xfrm_netlink_rcv
,
3339 nlsk
= netlink_kernel_create(net
, NETLINK_XFRM
, &cfg
);
3342 net
->xfrm
.nlsk_stash
= nlsk
; /* Don't set to NULL */
3343 rcu_assign_pointer(net
->xfrm
.nlsk
, nlsk
);
3347 static void __net_exit
xfrm_user_net_exit(struct list_head
*net_exit_list
)
3350 list_for_each_entry(net
, net_exit_list
, exit_list
)
3351 RCU_INIT_POINTER(net
->xfrm
.nlsk
, NULL
);
3353 list_for_each_entry(net
, net_exit_list
, exit_list
)
3354 netlink_kernel_release(net
->xfrm
.nlsk_stash
);
3357 static struct pernet_operations xfrm_user_net_ops
= {
3358 .init
= xfrm_user_net_init
,
3359 .exit_batch
= xfrm_user_net_exit
,
3362 static int __init
xfrm_user_init(void)
3366 printk(KERN_INFO
"Initializing XFRM netlink socket\n");
3368 rv
= register_pernet_subsys(&xfrm_user_net_ops
);
3371 rv
= xfrm_register_km(&netlink_mgr
);
3373 unregister_pernet_subsys(&xfrm_user_net_ops
);
3377 static void __exit
xfrm_user_exit(void)
3379 xfrm_unregister_km(&netlink_mgr
);
3380 unregister_pernet_subsys(&xfrm_user_net_ops
);
3383 module_init(xfrm_user_init
);
3384 module_exit(xfrm_user_exit
);
3385 MODULE_LICENSE("GPL");
3386 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_XFRM
);