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/compat.h>
15 #include <linux/crypto.h>
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/types.h>
19 #include <linux/slab.h>
20 #include <linux/socket.h>
21 #include <linux/string.h>
22 #include <linux/net.h>
23 #include <linux/skbuff.h>
24 #include <linux/pfkeyv2.h>
25 #include <linux/ipsec.h>
26 #include <linux/init.h>
27 #include <linux/security.h>
30 #include <net/netlink.h>
32 #include <linux/uaccess.h>
33 #if IS_ENABLED(CONFIG_IPV6)
34 #include <linux/in6.h>
36 #include <linux/unaligned.h>
38 static int verify_one_alg(struct nlattr
**attrs
, enum xfrm_attr_type_t type
,
39 struct netlink_ext_ack
*extack
)
41 struct nlattr
*rt
= attrs
[type
];
42 struct xfrm_algo
*algp
;
48 if (nla_len(rt
) < (int)xfrm_alg_len(algp
)) {
49 NL_SET_ERR_MSG(extack
, "Invalid AUTH/CRYPT/COMP attribute length");
60 NL_SET_ERR_MSG(extack
, "Invalid algorithm attribute type");
64 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
68 static int verify_auth_trunc(struct nlattr
**attrs
,
69 struct netlink_ext_ack
*extack
)
71 struct nlattr
*rt
= attrs
[XFRMA_ALG_AUTH_TRUNC
];
72 struct xfrm_algo_auth
*algp
;
78 if (nla_len(rt
) < (int)xfrm_alg_auth_len(algp
)) {
79 NL_SET_ERR_MSG(extack
, "Invalid AUTH_TRUNC attribute length");
83 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
87 static int verify_aead(struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
89 struct nlattr
*rt
= attrs
[XFRMA_ALG_AEAD
];
90 struct xfrm_algo_aead
*algp
;
96 if (nla_len(rt
) < (int)aead_len(algp
)) {
97 NL_SET_ERR_MSG(extack
, "Invalid AEAD attribute length");
101 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
105 static void verify_one_addr(struct nlattr
**attrs
, enum xfrm_attr_type_t type
,
106 xfrm_address_t
**addrp
)
108 struct nlattr
*rt
= attrs
[type
];
111 *addrp
= nla_data(rt
);
114 static inline int verify_sec_ctx_len(struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
116 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
117 struct xfrm_user_sec_ctx
*uctx
;
123 if (uctx
->len
> nla_len(rt
) ||
124 uctx
->len
!= (sizeof(struct xfrm_user_sec_ctx
) + uctx
->ctx_len
)) {
125 NL_SET_ERR_MSG(extack
, "Invalid security context length");
132 static inline int verify_replay(struct xfrm_usersa_info
*p
,
133 struct nlattr
**attrs
, u8 sa_dir
,
134 struct netlink_ext_ack
*extack
)
136 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_ESN_VAL
];
137 struct xfrm_replay_state_esn
*rs
;
140 if (p
->flags
& XFRM_STATE_ESN
) {
141 NL_SET_ERR_MSG(extack
, "Missing required attribute for ESN");
149 if (rs
->bmp_len
> XFRMA_REPLAY_ESN_MAX
/ sizeof(rs
->bmp
[0]) / 8) {
150 NL_SET_ERR_MSG(extack
, "ESN bitmap length must be <= 128");
154 if (nla_len(rt
) < (int)xfrm_replay_state_esn_len(rs
) &&
155 nla_len(rt
) != sizeof(*rs
)) {
156 NL_SET_ERR_MSG(extack
, "ESN attribute is too short to fit the full bitmap length");
160 /* As only ESP and AH support ESN feature. */
161 if ((p
->id
.proto
!= IPPROTO_ESP
) && (p
->id
.proto
!= IPPROTO_AH
)) {
162 NL_SET_ERR_MSG(extack
, "ESN only supported for ESP and AH");
166 if (p
->replay_window
!= 0) {
167 NL_SET_ERR_MSG(extack
, "ESN not compatible with legacy replay_window");
171 if (sa_dir
== XFRM_SA_DIR_OUT
) {
172 if (rs
->replay_window
) {
173 NL_SET_ERR_MSG(extack
, "Replay window should be 0 for output SA");
176 if (rs
->seq
|| rs
->seq_hi
) {
177 NL_SET_ERR_MSG(extack
,
178 "Replay seq and seq_hi should be 0 for output SA");
182 NL_SET_ERR_MSG(extack
, "Replay bmp_len should 0 for output SA");
187 if (sa_dir
== XFRM_SA_DIR_IN
) {
188 if (rs
->oseq
|| rs
->oseq_hi
) {
189 NL_SET_ERR_MSG(extack
,
190 "Replay oseq and oseq_hi should be 0 for input SA");
198 static int verify_newsa_info(struct xfrm_usersa_info
*p
,
199 struct nlattr
**attrs
,
200 struct netlink_ext_ack
*extack
)
203 u8 sa_dir
= nla_get_u8_default(attrs
[XFRMA_SA_DIR
], 0);
204 u16 family
= p
->sel
.family
;
212 #if IS_ENABLED(CONFIG_IPV6)
216 NL_SET_ERR_MSG(extack
, "IPv6 support disabled");
221 NL_SET_ERR_MSG(extack
, "Invalid address family");
225 if (!family
&& !(p
->flags
& XFRM_STATE_AF_UNSPEC
))
233 if (p
->sel
.prefixlen_d
> 32 || p
->sel
.prefixlen_s
> 32) {
234 NL_SET_ERR_MSG(extack
, "Invalid prefix length in selector (must be <= 32 for IPv4)");
241 #if IS_ENABLED(CONFIG_IPV6)
242 if (p
->sel
.prefixlen_d
> 128 || p
->sel
.prefixlen_s
> 128) {
243 NL_SET_ERR_MSG(extack
, "Invalid prefix length in selector (must be <= 128 for IPv6)");
249 NL_SET_ERR_MSG(extack
, "IPv6 support disabled");
255 NL_SET_ERR_MSG(extack
, "Invalid address family in selector");
260 switch (p
->id
.proto
) {
262 if (!attrs
[XFRMA_ALG_AUTH
] &&
263 !attrs
[XFRMA_ALG_AUTH_TRUNC
]) {
264 NL_SET_ERR_MSG(extack
, "Missing required attribute for AH: AUTH_TRUNC or AUTH");
268 if (attrs
[XFRMA_ALG_AEAD
] ||
269 attrs
[XFRMA_ALG_CRYPT
] ||
270 attrs
[XFRMA_ALG_COMP
] ||
271 attrs
[XFRMA_TFCPAD
]) {
272 NL_SET_ERR_MSG(extack
, "Invalid attributes for AH: AEAD, CRYPT, COMP, TFCPAD");
278 if (attrs
[XFRMA_ALG_COMP
]) {
279 NL_SET_ERR_MSG(extack
, "Invalid attribute for ESP: COMP");
283 if (!attrs
[XFRMA_ALG_AUTH
] &&
284 !attrs
[XFRMA_ALG_AUTH_TRUNC
] &&
285 !attrs
[XFRMA_ALG_CRYPT
] &&
286 !attrs
[XFRMA_ALG_AEAD
]) {
287 NL_SET_ERR_MSG(extack
, "Missing required attribute for ESP: at least one of AUTH, AUTH_TRUNC, CRYPT, AEAD");
291 if ((attrs
[XFRMA_ALG_AUTH
] ||
292 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
293 attrs
[XFRMA_ALG_CRYPT
]) &&
294 attrs
[XFRMA_ALG_AEAD
]) {
295 NL_SET_ERR_MSG(extack
, "Invalid attribute combination for ESP: AEAD can't be used with AUTH, AUTH_TRUNC, CRYPT");
299 if (attrs
[XFRMA_TFCPAD
] &&
300 p
->mode
!= XFRM_MODE_TUNNEL
) {
301 NL_SET_ERR_MSG(extack
, "TFC padding can only be used in tunnel mode");
307 if (!attrs
[XFRMA_ALG_COMP
]) {
308 NL_SET_ERR_MSG(extack
, "Missing required attribute for COMP: COMP");
312 if (attrs
[XFRMA_ALG_AEAD
] ||
313 attrs
[XFRMA_ALG_AUTH
] ||
314 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
315 attrs
[XFRMA_ALG_CRYPT
] ||
316 attrs
[XFRMA_TFCPAD
]) {
317 NL_SET_ERR_MSG(extack
, "Invalid attributes for COMP: AEAD, AUTH, AUTH_TRUNC, CRYPT, TFCPAD");
321 if (ntohl(p
->id
.spi
) >= 0x10000) {
322 NL_SET_ERR_MSG(extack
, "SPI is too large for COMP (must be < 0x10000)");
327 #if IS_ENABLED(CONFIG_IPV6)
328 case IPPROTO_DSTOPTS
:
329 case IPPROTO_ROUTING
:
330 if (attrs
[XFRMA_ALG_COMP
] ||
331 attrs
[XFRMA_ALG_AUTH
] ||
332 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
333 attrs
[XFRMA_ALG_AEAD
] ||
334 attrs
[XFRMA_ALG_CRYPT
] ||
335 attrs
[XFRMA_ENCAP
] ||
336 attrs
[XFRMA_SEC_CTX
] ||
337 attrs
[XFRMA_TFCPAD
]) {
338 NL_SET_ERR_MSG(extack
, "Invalid attributes for DSTOPTS/ROUTING");
342 if (!attrs
[XFRMA_COADDR
]) {
343 NL_SET_ERR_MSG(extack
, "Missing required COADDR attribute for DSTOPTS/ROUTING");
350 NL_SET_ERR_MSG(extack
, "Unsupported protocol");
354 if ((err
= verify_aead(attrs
, extack
)))
356 if ((err
= verify_auth_trunc(attrs
, extack
)))
358 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_AUTH
, extack
)))
360 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_CRYPT
, extack
)))
362 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_COMP
, extack
)))
364 if ((err
= verify_sec_ctx_len(attrs
, extack
)))
366 if ((err
= verify_replay(p
, attrs
, sa_dir
, extack
)))
371 case XFRM_MODE_TRANSPORT
:
372 case XFRM_MODE_TUNNEL
:
373 case XFRM_MODE_ROUTEOPTIMIZATION
:
378 NL_SET_ERR_MSG(extack
, "Unsupported mode");
384 if (attrs
[XFRMA_MTIMER_THRESH
]) {
385 if (!attrs
[XFRMA_ENCAP
]) {
386 NL_SET_ERR_MSG(extack
, "MTIMER_THRESH attribute can only be set on ENCAP states");
391 if (sa_dir
== XFRM_SA_DIR_OUT
) {
392 NL_SET_ERR_MSG(extack
,
393 "MTIMER_THRESH attribute should not be set on output SA");
399 if (sa_dir
== XFRM_SA_DIR_OUT
) {
400 if (p
->flags
& XFRM_STATE_DECAP_DSCP
) {
401 NL_SET_ERR_MSG(extack
, "Flag DECAP_DSCP should not be set for output SA");
406 if (p
->flags
& XFRM_STATE_ICMP
) {
407 NL_SET_ERR_MSG(extack
, "Flag ICMP should not be set for output SA");
412 if (p
->flags
& XFRM_STATE_WILDRECV
) {
413 NL_SET_ERR_MSG(extack
, "Flag WILDRECV should not be set for output SA");
418 if (p
->replay_window
) {
419 NL_SET_ERR_MSG(extack
, "Replay window should be 0 for output SA");
424 if (attrs
[XFRMA_REPLAY_VAL
]) {
425 struct xfrm_replay_state
*replay
;
427 replay
= nla_data(attrs
[XFRMA_REPLAY_VAL
]);
429 if (replay
->seq
|| replay
->bitmap
) {
430 NL_SET_ERR_MSG(extack
,
431 "Replay seq and bitmap should be 0 for output SA");
438 if (sa_dir
== XFRM_SA_DIR_IN
) {
439 if (p
->flags
& XFRM_STATE_NOPMTUDISC
) {
440 NL_SET_ERR_MSG(extack
, "Flag NOPMTUDISC should not be set for input SA");
445 if (attrs
[XFRMA_SA_EXTRA_FLAGS
]) {
446 u32 xflags
= nla_get_u32(attrs
[XFRMA_SA_EXTRA_FLAGS
]);
448 if (xflags
& XFRM_SA_XFLAG_DONT_ENCAP_DSCP
) {
449 NL_SET_ERR_MSG(extack
, "Flag DONT_ENCAP_DSCP should not be set for input SA");
454 if (xflags
& XFRM_SA_XFLAG_OSEQ_MAY_WRAP
) {
455 NL_SET_ERR_MSG(extack
, "Flag OSEQ_MAY_WRAP should not be set for input SA");
463 if (!sa_dir
&& attrs
[XFRMA_SA_PCPU
]) {
464 NL_SET_ERR_MSG(extack
, "SA_PCPU only supported with SA_DIR");
473 static int attach_one_algo(struct xfrm_algo
**algpp
, u8
*props
,
474 struct xfrm_algo_desc
*(*get_byname
)(const char *, int),
475 struct nlattr
*rta
, struct netlink_ext_ack
*extack
)
477 struct xfrm_algo
*p
, *ualg
;
478 struct xfrm_algo_desc
*algo
;
483 ualg
= nla_data(rta
);
485 algo
= get_byname(ualg
->alg_name
, 1);
487 NL_SET_ERR_MSG(extack
, "Requested COMP algorithm not found");
490 *props
= algo
->desc
.sadb_alg_id
;
492 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
496 strcpy(p
->alg_name
, algo
->name
);
501 static int attach_crypt(struct xfrm_state
*x
, struct nlattr
*rta
,
502 struct netlink_ext_ack
*extack
)
504 struct xfrm_algo
*p
, *ualg
;
505 struct xfrm_algo_desc
*algo
;
510 ualg
= nla_data(rta
);
512 algo
= xfrm_ealg_get_byname(ualg
->alg_name
, 1);
514 NL_SET_ERR_MSG(extack
, "Requested CRYPT algorithm not found");
517 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
519 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
523 strcpy(p
->alg_name
, algo
->name
);
525 x
->geniv
= algo
->uinfo
.encr
.geniv
;
529 static int attach_auth(struct xfrm_algo_auth
**algpp
, u8
*props
,
530 struct nlattr
*rta
, struct netlink_ext_ack
*extack
)
532 struct xfrm_algo
*ualg
;
533 struct xfrm_algo_auth
*p
;
534 struct xfrm_algo_desc
*algo
;
539 ualg
= nla_data(rta
);
541 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
543 NL_SET_ERR_MSG(extack
, "Requested AUTH algorithm not found");
546 *props
= algo
->desc
.sadb_alg_id
;
548 p
= kmalloc(sizeof(*p
) + (ualg
->alg_key_len
+ 7) / 8, GFP_KERNEL
);
552 strcpy(p
->alg_name
, algo
->name
);
553 p
->alg_key_len
= ualg
->alg_key_len
;
554 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
555 memcpy(p
->alg_key
, ualg
->alg_key
, (ualg
->alg_key_len
+ 7) / 8);
561 static int attach_auth_trunc(struct xfrm_algo_auth
**algpp
, u8
*props
,
562 struct nlattr
*rta
, struct netlink_ext_ack
*extack
)
564 struct xfrm_algo_auth
*p
, *ualg
;
565 struct xfrm_algo_desc
*algo
;
570 ualg
= nla_data(rta
);
572 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
574 NL_SET_ERR_MSG(extack
, "Requested AUTH_TRUNC algorithm not found");
577 if (ualg
->alg_trunc_len
> algo
->uinfo
.auth
.icv_fullbits
) {
578 NL_SET_ERR_MSG(extack
, "Invalid length requested for truncated ICV");
581 *props
= algo
->desc
.sadb_alg_id
;
583 p
= kmemdup(ualg
, xfrm_alg_auth_len(ualg
), GFP_KERNEL
);
587 strcpy(p
->alg_name
, algo
->name
);
588 if (!p
->alg_trunc_len
)
589 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
595 static int attach_aead(struct xfrm_state
*x
, struct nlattr
*rta
,
596 struct netlink_ext_ack
*extack
)
598 struct xfrm_algo_aead
*p
, *ualg
;
599 struct xfrm_algo_desc
*algo
;
604 ualg
= nla_data(rta
);
606 algo
= xfrm_aead_get_byname(ualg
->alg_name
, ualg
->alg_icv_len
, 1);
608 NL_SET_ERR_MSG(extack
, "Requested AEAD algorithm not found");
611 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
613 p
= kmemdup(ualg
, aead_len(ualg
), GFP_KERNEL
);
617 strcpy(p
->alg_name
, algo
->name
);
619 x
->geniv
= algo
->uinfo
.aead
.geniv
;
623 static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn
*replay_esn
,
625 struct netlink_ext_ack
*extack
)
627 struct xfrm_replay_state_esn
*up
;
630 if (!replay_esn
|| !rp
)
634 ulen
= xfrm_replay_state_esn_len(up
);
636 /* Check the overall length and the internal bitmap length to avoid
637 * potential overflow. */
638 if (nla_len(rp
) < (int)ulen
) {
639 NL_SET_ERR_MSG(extack
, "ESN attribute is too short");
643 if (xfrm_replay_state_esn_len(replay_esn
) != ulen
) {
644 NL_SET_ERR_MSG(extack
, "New ESN size doesn't match the existing SA's ESN size");
648 if (replay_esn
->bmp_len
!= up
->bmp_len
) {
649 NL_SET_ERR_MSG(extack
, "New ESN bitmap size doesn't match the existing SA's ESN bitmap");
653 if (up
->replay_window
> up
->bmp_len
* sizeof(__u32
) * 8) {
654 NL_SET_ERR_MSG(extack
, "ESN replay window is longer than the bitmap");
661 static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn
**replay_esn
,
662 struct xfrm_replay_state_esn
**preplay_esn
,
665 struct xfrm_replay_state_esn
*p
, *pp
, *up
;
666 unsigned int klen
, ulen
;
672 klen
= xfrm_replay_state_esn_len(up
);
673 ulen
= nla_len(rta
) >= (int)klen
? klen
: sizeof(*up
);
675 p
= kzalloc(klen
, GFP_KERNEL
);
679 pp
= kzalloc(klen
, GFP_KERNEL
);
686 memcpy(pp
, up
, ulen
);
694 static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx
*xfrm_ctx
)
696 unsigned int len
= 0;
699 len
+= sizeof(struct xfrm_user_sec_ctx
);
700 len
+= xfrm_ctx
->ctx_len
;
705 static void copy_from_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
707 memcpy(&x
->id
, &p
->id
, sizeof(x
->id
));
708 memcpy(&x
->sel
, &p
->sel
, sizeof(x
->sel
));
709 memcpy(&x
->lft
, &p
->lft
, sizeof(x
->lft
));
710 x
->props
.mode
= p
->mode
;
711 x
->props
.replay_window
= min_t(unsigned int, p
->replay_window
,
712 sizeof(x
->replay
.bitmap
) * 8);
713 x
->props
.reqid
= p
->reqid
;
714 x
->props
.family
= p
->family
;
715 memcpy(&x
->props
.saddr
, &p
->saddr
, sizeof(x
->props
.saddr
));
716 x
->props
.flags
= p
->flags
;
718 if (!x
->sel
.family
&& !(p
->flags
& XFRM_STATE_AF_UNSPEC
))
719 x
->sel
.family
= p
->family
;
723 * someday when pfkey also has support, we could have the code
724 * somehow made shareable and move it to xfrm_state.c - JHS
727 static void xfrm_update_ae_params(struct xfrm_state
*x
, struct nlattr
**attrs
,
730 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
731 struct nlattr
*re
= update_esn
? attrs
[XFRMA_REPLAY_ESN_VAL
] : NULL
;
732 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
733 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
734 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
735 struct nlattr
*mt
= attrs
[XFRMA_MTIMER_THRESH
];
737 if (re
&& x
->replay_esn
&& x
->preplay_esn
) {
738 struct xfrm_replay_state_esn
*replay_esn
;
739 replay_esn
= nla_data(re
);
740 memcpy(x
->replay_esn
, replay_esn
,
741 xfrm_replay_state_esn_len(replay_esn
));
742 memcpy(x
->preplay_esn
, replay_esn
,
743 xfrm_replay_state_esn_len(replay_esn
));
747 struct xfrm_replay_state
*replay
;
748 replay
= nla_data(rp
);
749 memcpy(&x
->replay
, replay
, sizeof(*replay
));
750 memcpy(&x
->preplay
, replay
, sizeof(*replay
));
754 struct xfrm_lifetime_cur
*ltime
;
755 ltime
= nla_data(lt
);
756 x
->curlft
.bytes
= ltime
->bytes
;
757 x
->curlft
.packets
= ltime
->packets
;
758 x
->curlft
.add_time
= ltime
->add_time
;
759 x
->curlft
.use_time
= ltime
->use_time
;
763 x
->replay_maxage
= nla_get_u32(et
);
766 x
->replay_maxdiff
= nla_get_u32(rt
);
769 x
->mapping_maxage
= nla_get_u32(mt
);
772 static void xfrm_smark_init(struct nlattr
**attrs
, struct xfrm_mark
*m
)
774 if (attrs
[XFRMA_SET_MARK
]) {
775 m
->v
= nla_get_u32(attrs
[XFRMA_SET_MARK
]);
776 m
->m
= nla_get_u32_default(attrs
[XFRMA_SET_MARK_MASK
],
783 static struct xfrm_state
*xfrm_state_construct(struct net
*net
,
784 struct xfrm_usersa_info
*p
,
785 struct nlattr
**attrs
,
787 struct netlink_ext_ack
*extack
)
789 struct xfrm_state
*x
= xfrm_state_alloc(net
);
795 copy_from_user_state(x
, p
);
797 if (attrs
[XFRMA_ENCAP
]) {
798 x
->encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
799 sizeof(*x
->encap
), GFP_KERNEL
);
800 if (x
->encap
== NULL
)
804 if (attrs
[XFRMA_COADDR
]) {
805 x
->coaddr
= kmemdup(nla_data(attrs
[XFRMA_COADDR
]),
806 sizeof(*x
->coaddr
), GFP_KERNEL
);
807 if (x
->coaddr
== NULL
)
811 if (attrs
[XFRMA_SA_EXTRA_FLAGS
])
812 x
->props
.extra_flags
= nla_get_u32(attrs
[XFRMA_SA_EXTRA_FLAGS
]);
814 if ((err
= attach_aead(x
, attrs
[XFRMA_ALG_AEAD
], extack
)))
816 if ((err
= attach_auth_trunc(&x
->aalg
, &x
->props
.aalgo
,
817 attrs
[XFRMA_ALG_AUTH_TRUNC
], extack
)))
819 if (!x
->props
.aalgo
) {
820 if ((err
= attach_auth(&x
->aalg
, &x
->props
.aalgo
,
821 attrs
[XFRMA_ALG_AUTH
], extack
)))
824 if ((err
= attach_crypt(x
, attrs
[XFRMA_ALG_CRYPT
], extack
)))
826 if ((err
= attach_one_algo(&x
->calg
, &x
->props
.calgo
,
827 xfrm_calg_get_byname
,
828 attrs
[XFRMA_ALG_COMP
], extack
)))
831 if (attrs
[XFRMA_TFCPAD
])
832 x
->tfcpad
= nla_get_u32(attrs
[XFRMA_TFCPAD
]);
834 xfrm_mark_get(attrs
, &x
->mark
);
836 xfrm_smark_init(attrs
, &x
->props
.smark
);
838 if (attrs
[XFRMA_IF_ID
])
839 x
->if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
841 if (attrs
[XFRMA_SA_DIR
])
842 x
->dir
= nla_get_u8(attrs
[XFRMA_SA_DIR
]);
844 if (attrs
[XFRMA_NAT_KEEPALIVE_INTERVAL
])
845 x
->nat_keepalive_interval
=
846 nla_get_u32(attrs
[XFRMA_NAT_KEEPALIVE_INTERVAL
]);
848 if (attrs
[XFRMA_SA_PCPU
]) {
849 x
->pcpu_num
= nla_get_u32(attrs
[XFRMA_SA_PCPU
]);
850 if (x
->pcpu_num
>= num_possible_cpus())
854 err
= __xfrm_init_state(x
, false, attrs
[XFRMA_OFFLOAD_DEV
], extack
);
858 if (attrs
[XFRMA_SEC_CTX
]) {
859 err
= security_xfrm_state_alloc(x
,
860 nla_data(attrs
[XFRMA_SEC_CTX
]));
865 if ((err
= xfrm_alloc_replay_state_esn(&x
->replay_esn
, &x
->preplay_esn
,
866 attrs
[XFRMA_REPLAY_ESN_VAL
])))
870 x
->replay_maxdiff
= net
->xfrm
.sysctl_aevent_rseqth
;
871 /* sysctl_xfrm_aevent_etime is in 100ms units */
872 x
->replay_maxage
= (net
->xfrm
.sysctl_aevent_etime
*HZ
)/XFRM_AE_ETH_M
;
874 if ((err
= xfrm_init_replay(x
, extack
)))
877 /* override default values from above */
878 xfrm_update_ae_params(x
, attrs
, 0);
880 /* configure the hardware if offload is requested */
881 if (attrs
[XFRMA_OFFLOAD_DEV
]) {
882 err
= xfrm_dev_state_add(net
, x
,
883 nla_data(attrs
[XFRMA_OFFLOAD_DEV
]),
892 x
->km
.state
= XFRM_STATE_DEAD
;
899 static int xfrm_add_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
900 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
902 struct net
*net
= sock_net(skb
->sk
);
903 struct xfrm_usersa_info
*p
= nlmsg_data(nlh
);
904 struct xfrm_state
*x
;
908 err
= verify_newsa_info(p
, attrs
, extack
);
912 x
= xfrm_state_construct(net
, p
, attrs
, &err
, extack
);
917 if (nlh
->nlmsg_type
== XFRM_MSG_NEWSA
)
918 err
= xfrm_state_add(x
);
920 err
= xfrm_state_update(x
);
922 xfrm_audit_state_add(x
, err
? 0 : 1, true);
925 x
->km
.state
= XFRM_STATE_DEAD
;
926 xfrm_dev_state_delete(x
);
931 if (x
->km
.state
== XFRM_STATE_VOID
)
932 x
->km
.state
= XFRM_STATE_VALID
;
934 c
.seq
= nlh
->nlmsg_seq
;
935 c
.portid
= nlh
->nlmsg_pid
;
936 c
.event
= nlh
->nlmsg_type
;
938 km_state_notify(x
, &c
);
944 static struct xfrm_state
*xfrm_user_state_lookup(struct net
*net
,
945 struct xfrm_usersa_id
*p
,
946 struct nlattr
**attrs
,
949 struct xfrm_state
*x
= NULL
;
952 u32 mark
= xfrm_mark_get(attrs
, &m
);
954 if (xfrm_id_proto_match(p
->proto
, IPSEC_PROTO_ANY
)) {
956 x
= xfrm_state_lookup(net
, mark
, &p
->daddr
, p
->spi
, p
->proto
, p
->family
);
958 xfrm_address_t
*saddr
= NULL
;
960 verify_one_addr(attrs
, XFRMA_SRCADDR
, &saddr
);
967 x
= xfrm_state_lookup_byaddr(net
, mark
,
969 p
->proto
, p
->family
);
978 static int xfrm_del_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
979 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
981 struct net
*net
= sock_net(skb
->sk
);
982 struct xfrm_state
*x
;
985 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
987 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
991 if ((err
= security_xfrm_state_delete(x
)) != 0)
994 if (xfrm_state_kern(x
)) {
995 NL_SET_ERR_MSG(extack
, "SA is in use by tunnels");
1000 err
= xfrm_state_delete(x
);
1004 c
.seq
= nlh
->nlmsg_seq
;
1005 c
.portid
= nlh
->nlmsg_pid
;
1006 c
.event
= nlh
->nlmsg_type
;
1007 km_state_notify(x
, &c
);
1010 xfrm_audit_state_delete(x
, err
? 0 : 1, true);
1015 static void copy_to_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
1017 memset(p
, 0, sizeof(*p
));
1018 memcpy(&p
->id
, &x
->id
, sizeof(p
->id
));
1019 memcpy(&p
->sel
, &x
->sel
, sizeof(p
->sel
));
1020 memcpy(&p
->lft
, &x
->lft
, sizeof(p
->lft
));
1022 xfrm_dev_state_update_stats(x
);
1023 memcpy(&p
->curlft
, &x
->curlft
, sizeof(p
->curlft
));
1024 put_unaligned(x
->stats
.replay_window
, &p
->stats
.replay_window
);
1025 put_unaligned(x
->stats
.replay
, &p
->stats
.replay
);
1026 put_unaligned(x
->stats
.integrity_failed
, &p
->stats
.integrity_failed
);
1027 memcpy(&p
->saddr
, &x
->props
.saddr
, sizeof(p
->saddr
));
1028 p
->mode
= x
->props
.mode
;
1029 p
->replay_window
= x
->props
.replay_window
;
1030 p
->reqid
= x
->props
.reqid
;
1031 p
->family
= x
->props
.family
;
1032 p
->flags
= x
->props
.flags
;
1036 struct xfrm_dump_info
{
1037 struct sk_buff
*in_skb
;
1038 struct sk_buff
*out_skb
;
1043 static int copy_sec_ctx(struct xfrm_sec_ctx
*s
, struct sk_buff
*skb
)
1045 struct xfrm_user_sec_ctx
*uctx
;
1046 struct nlattr
*attr
;
1047 int ctx_size
= sizeof(*uctx
) + s
->ctx_len
;
1049 attr
= nla_reserve(skb
, XFRMA_SEC_CTX
, ctx_size
);
1053 uctx
= nla_data(attr
);
1054 uctx
->exttype
= XFRMA_SEC_CTX
;
1055 uctx
->len
= ctx_size
;
1056 uctx
->ctx_doi
= s
->ctx_doi
;
1057 uctx
->ctx_alg
= s
->ctx_alg
;
1058 uctx
->ctx_len
= s
->ctx_len
;
1059 memcpy(uctx
+ 1, s
->ctx_str
, s
->ctx_len
);
1064 static int copy_user_offload(struct xfrm_dev_offload
*xso
, struct sk_buff
*skb
)
1066 struct xfrm_user_offload
*xuo
;
1067 struct nlattr
*attr
;
1069 attr
= nla_reserve(skb
, XFRMA_OFFLOAD_DEV
, sizeof(*xuo
));
1073 xuo
= nla_data(attr
);
1074 memset(xuo
, 0, sizeof(*xuo
));
1075 xuo
->ifindex
= xso
->dev
->ifindex
;
1076 if (xso
->dir
== XFRM_DEV_OFFLOAD_IN
)
1077 xuo
->flags
= XFRM_OFFLOAD_INBOUND
;
1078 if (xso
->type
== XFRM_DEV_OFFLOAD_PACKET
)
1079 xuo
->flags
|= XFRM_OFFLOAD_PACKET
;
1084 static bool xfrm_redact(void)
1086 return IS_ENABLED(CONFIG_SECURITY
) &&
1087 security_locked_down(LOCKDOWN_XFRM_SECRET
);
1090 static int copy_to_user_auth(struct xfrm_algo_auth
*auth
, struct sk_buff
*skb
)
1092 struct xfrm_algo
*algo
;
1093 struct xfrm_algo_auth
*ap
;
1095 bool redact_secret
= xfrm_redact();
1097 nla
= nla_reserve(skb
, XFRMA_ALG_AUTH
,
1098 sizeof(*algo
) + (auth
->alg_key_len
+ 7) / 8);
1101 algo
= nla_data(nla
);
1102 strscpy_pad(algo
->alg_name
, auth
->alg_name
, sizeof(algo
->alg_name
));
1104 if (redact_secret
&& auth
->alg_key_len
)
1105 memset(algo
->alg_key
, 0, (auth
->alg_key_len
+ 7) / 8);
1107 memcpy(algo
->alg_key
, auth
->alg_key
,
1108 (auth
->alg_key_len
+ 7) / 8);
1109 algo
->alg_key_len
= auth
->alg_key_len
;
1111 nla
= nla_reserve(skb
, XFRMA_ALG_AUTH_TRUNC
, xfrm_alg_auth_len(auth
));
1115 strscpy_pad(ap
->alg_name
, auth
->alg_name
, sizeof(ap
->alg_name
));
1116 ap
->alg_key_len
= auth
->alg_key_len
;
1117 ap
->alg_trunc_len
= auth
->alg_trunc_len
;
1118 if (redact_secret
&& auth
->alg_key_len
)
1119 memset(ap
->alg_key
, 0, (auth
->alg_key_len
+ 7) / 8);
1121 memcpy(ap
->alg_key
, auth
->alg_key
,
1122 (auth
->alg_key_len
+ 7) / 8);
1126 static int copy_to_user_aead(struct xfrm_algo_aead
*aead
, struct sk_buff
*skb
)
1128 struct nlattr
*nla
= nla_reserve(skb
, XFRMA_ALG_AEAD
, aead_len(aead
));
1129 struct xfrm_algo_aead
*ap
;
1130 bool redact_secret
= xfrm_redact();
1136 strscpy_pad(ap
->alg_name
, aead
->alg_name
, sizeof(ap
->alg_name
));
1137 ap
->alg_key_len
= aead
->alg_key_len
;
1138 ap
->alg_icv_len
= aead
->alg_icv_len
;
1140 if (redact_secret
&& aead
->alg_key_len
)
1141 memset(ap
->alg_key
, 0, (aead
->alg_key_len
+ 7) / 8);
1143 memcpy(ap
->alg_key
, aead
->alg_key
,
1144 (aead
->alg_key_len
+ 7) / 8);
1148 static int copy_to_user_ealg(struct xfrm_algo
*ealg
, struct sk_buff
*skb
)
1150 struct xfrm_algo
*ap
;
1151 bool redact_secret
= xfrm_redact();
1152 struct nlattr
*nla
= nla_reserve(skb
, XFRMA_ALG_CRYPT
,
1153 xfrm_alg_len(ealg
));
1158 strscpy_pad(ap
->alg_name
, ealg
->alg_name
, sizeof(ap
->alg_name
));
1159 ap
->alg_key_len
= ealg
->alg_key_len
;
1161 if (redact_secret
&& ealg
->alg_key_len
)
1162 memset(ap
->alg_key
, 0, (ealg
->alg_key_len
+ 7) / 8);
1164 memcpy(ap
->alg_key
, ealg
->alg_key
,
1165 (ealg
->alg_key_len
+ 7) / 8);
1170 static int copy_to_user_calg(struct xfrm_algo
*calg
, struct sk_buff
*skb
)
1172 struct nlattr
*nla
= nla_reserve(skb
, XFRMA_ALG_COMP
, sizeof(*calg
));
1173 struct xfrm_algo
*ap
;
1179 strscpy_pad(ap
->alg_name
, calg
->alg_name
, sizeof(ap
->alg_name
));
1180 ap
->alg_key_len
= 0;
1185 static int copy_to_user_encap(struct xfrm_encap_tmpl
*ep
, struct sk_buff
*skb
)
1187 struct nlattr
*nla
= nla_reserve(skb
, XFRMA_ENCAP
, sizeof(*ep
));
1188 struct xfrm_encap_tmpl
*uep
;
1193 uep
= nla_data(nla
);
1194 memset(uep
, 0, sizeof(*uep
));
1196 uep
->encap_type
= ep
->encap_type
;
1197 uep
->encap_sport
= ep
->encap_sport
;
1198 uep
->encap_dport
= ep
->encap_dport
;
1199 uep
->encap_oa
= ep
->encap_oa
;
1204 static int xfrm_smark_put(struct sk_buff
*skb
, struct xfrm_mark
*m
)
1209 ret
= nla_put_u32(skb
, XFRMA_SET_MARK
, m
->v
);
1211 ret
= nla_put_u32(skb
, XFRMA_SET_MARK_MASK
, m
->m
);
1216 /* Don't change this without updating xfrm_sa_len! */
1217 static int copy_to_user_state_extra(struct xfrm_state
*x
,
1218 struct xfrm_usersa_info
*p
,
1219 struct sk_buff
*skb
)
1223 copy_to_user_state(x
, p
);
1225 if (x
->props
.extra_flags
) {
1226 ret
= nla_put_u32(skb
, XFRMA_SA_EXTRA_FLAGS
,
1227 x
->props
.extra_flags
);
1233 ret
= nla_put(skb
, XFRMA_COADDR
, sizeof(*x
->coaddr
), x
->coaddr
);
1238 ret
= nla_put_u64_64bit(skb
, XFRMA_LASTUSED
, x
->lastused
,
1244 ret
= copy_to_user_aead(x
->aead
, skb
);
1249 ret
= copy_to_user_auth(x
->aalg
, skb
);
1254 ret
= copy_to_user_ealg(x
->ealg
, skb
);
1259 ret
= copy_to_user_calg(x
->calg
, skb
);
1264 ret
= copy_to_user_encap(x
->encap
, skb
);
1269 ret
= nla_put_u32(skb
, XFRMA_TFCPAD
, x
->tfcpad
);
1273 ret
= xfrm_mark_put(skb
, &x
->mark
);
1277 ret
= xfrm_smark_put(skb
, &x
->props
.smark
);
1282 ret
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
1283 xfrm_replay_state_esn_len(x
->replay_esn
),
1286 ret
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
1291 ret
= copy_user_offload(&x
->xso
, skb
);
1295 ret
= nla_put_u32(skb
, XFRMA_IF_ID
, x
->if_id
);
1300 ret
= copy_sec_ctx(x
->security
, skb
);
1304 if (x
->mapping_maxage
) {
1305 ret
= nla_put_u32(skb
, XFRMA_MTIMER_THRESH
, x
->mapping_maxage
);
1309 if (x
->pcpu_num
!= UINT_MAX
) {
1310 ret
= nla_put_u32(skb
, XFRMA_SA_PCPU
, x
->pcpu_num
);
1315 ret
= nla_put_u8(skb
, XFRMA_SA_DIR
, x
->dir
);
1317 if (x
->nat_keepalive_interval
) {
1318 ret
= nla_put_u32(skb
, XFRMA_NAT_KEEPALIVE_INTERVAL
,
1319 x
->nat_keepalive_interval
);
1327 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
1329 struct xfrm_dump_info
*sp
= ptr
;
1330 struct sk_buff
*in_skb
= sp
->in_skb
;
1331 struct sk_buff
*skb
= sp
->out_skb
;
1332 struct xfrm_translator
*xtr
;
1333 struct xfrm_usersa_info
*p
;
1334 struct nlmsghdr
*nlh
;
1337 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
1338 XFRM_MSG_NEWSA
, sizeof(*p
), sp
->nlmsg_flags
);
1342 p
= nlmsg_data(nlh
);
1344 err
= copy_to_user_state_extra(x
, p
, skb
);
1346 nlmsg_cancel(skb
, nlh
);
1349 nlmsg_end(skb
, nlh
);
1351 xtr
= xfrm_get_translator();
1353 err
= xtr
->alloc_compat(skb
, nlh
);
1355 xfrm_put_translator(xtr
);
1357 nlmsg_cancel(skb
, nlh
);
1365 static int xfrm_dump_sa_done(struct netlink_callback
*cb
)
1367 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
1368 struct sock
*sk
= cb
->skb
->sk
;
1369 struct net
*net
= sock_net(sk
);
1372 xfrm_state_walk_done(walk
, net
);
1376 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1378 struct net
*net
= sock_net(skb
->sk
);
1379 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
1380 struct xfrm_dump_info info
;
1382 BUILD_BUG_ON(sizeof(struct xfrm_state_walk
) >
1383 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
1385 info
.in_skb
= cb
->skb
;
1387 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1388 info
.nlmsg_flags
= NLM_F_MULTI
;
1391 struct nlattr
*attrs
[XFRMA_MAX
+1];
1392 struct xfrm_address_filter
*filter
= NULL
;
1396 err
= nlmsg_parse_deprecated(cb
->nlh
, 0, attrs
, XFRMA_MAX
,
1397 xfrma_policy
, cb
->extack
);
1401 if (attrs
[XFRMA_ADDRESS_FILTER
]) {
1402 filter
= kmemdup(nla_data(attrs
[XFRMA_ADDRESS_FILTER
]),
1403 sizeof(*filter
), GFP_KERNEL
);
1407 /* see addr_match(), (prefix length >> 5) << 2
1408 * will be used to compare xfrm_address_t
1410 if (filter
->splen
> (sizeof(xfrm_address_t
) << 3) ||
1411 filter
->dplen
> (sizeof(xfrm_address_t
) << 3)) {
1417 if (attrs
[XFRMA_PROTO
])
1418 proto
= nla_get_u8(attrs
[XFRMA_PROTO
]);
1420 xfrm_state_walk_init(walk
, proto
, filter
);
1424 (void) xfrm_state_walk(net
, walk
, dump_one_state
, &info
);
1429 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
1430 struct xfrm_state
*x
, u32 seq
)
1432 struct xfrm_dump_info info
;
1433 struct sk_buff
*skb
;
1436 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
1438 return ERR_PTR(-ENOMEM
);
1440 info
.in_skb
= in_skb
;
1442 info
.nlmsg_seq
= seq
;
1443 info
.nlmsg_flags
= 0;
1445 err
= dump_one_state(x
, 0, &info
);
1448 return ERR_PTR(err
);
1454 /* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1455 * Must be called with RCU read lock.
1457 static inline int xfrm_nlmsg_multicast(struct net
*net
, struct sk_buff
*skb
,
1458 u32 pid
, unsigned int group
)
1460 struct sock
*nlsk
= rcu_dereference(net
->xfrm
.nlsk
);
1461 struct xfrm_translator
*xtr
;
1468 xtr
= xfrm_get_translator();
1470 int err
= xtr
->alloc_compat(skb
, nlmsg_hdr(skb
));
1472 xfrm_put_translator(xtr
);
1479 return nlmsg_multicast(nlsk
, skb
, pid
, group
, GFP_ATOMIC
);
1482 static inline unsigned int xfrm_spdinfo_msgsize(void)
1484 return NLMSG_ALIGN(4)
1485 + nla_total_size(sizeof(struct xfrmu_spdinfo
))
1486 + nla_total_size(sizeof(struct xfrmu_spdhinfo
))
1487 + nla_total_size(sizeof(struct xfrmu_spdhthresh
))
1488 + nla_total_size(sizeof(struct xfrmu_spdhthresh
));
1491 static int build_spdinfo(struct sk_buff
*skb
, struct net
*net
,
1492 u32 portid
, u32 seq
, u32 flags
)
1494 struct xfrmk_spdinfo si
;
1495 struct xfrmu_spdinfo spc
;
1496 struct xfrmu_spdhinfo sph
;
1497 struct xfrmu_spdhthresh spt4
, spt6
;
1498 struct nlmsghdr
*nlh
;
1503 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSPDINFO
, sizeof(u32
), 0);
1504 if (nlh
== NULL
) /* shouldn't really happen ... */
1507 f
= nlmsg_data(nlh
);
1509 xfrm_spd_getinfo(net
, &si
);
1510 spc
.incnt
= si
.incnt
;
1511 spc
.outcnt
= si
.outcnt
;
1512 spc
.fwdcnt
= si
.fwdcnt
;
1513 spc
.inscnt
= si
.inscnt
;
1514 spc
.outscnt
= si
.outscnt
;
1515 spc
.fwdscnt
= si
.fwdscnt
;
1516 sph
.spdhcnt
= si
.spdhcnt
;
1517 sph
.spdhmcnt
= si
.spdhmcnt
;
1520 lseq
= read_seqbegin(&net
->xfrm
.policy_hthresh
.lock
);
1522 spt4
.lbits
= net
->xfrm
.policy_hthresh
.lbits4
;
1523 spt4
.rbits
= net
->xfrm
.policy_hthresh
.rbits4
;
1524 spt6
.lbits
= net
->xfrm
.policy_hthresh
.lbits6
;
1525 spt6
.rbits
= net
->xfrm
.policy_hthresh
.rbits6
;
1526 } while (read_seqretry(&net
->xfrm
.policy_hthresh
.lock
, lseq
));
1528 err
= nla_put(skb
, XFRMA_SPD_INFO
, sizeof(spc
), &spc
);
1530 err
= nla_put(skb
, XFRMA_SPD_HINFO
, sizeof(sph
), &sph
);
1532 err
= nla_put(skb
, XFRMA_SPD_IPV4_HTHRESH
, sizeof(spt4
), &spt4
);
1534 err
= nla_put(skb
, XFRMA_SPD_IPV6_HTHRESH
, sizeof(spt6
), &spt6
);
1536 nlmsg_cancel(skb
, nlh
);
1540 nlmsg_end(skb
, nlh
);
1544 static int xfrm_set_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1545 struct nlattr
**attrs
,
1546 struct netlink_ext_ack
*extack
)
1548 struct net
*net
= sock_net(skb
->sk
);
1549 struct xfrmu_spdhthresh
*thresh4
= NULL
;
1550 struct xfrmu_spdhthresh
*thresh6
= NULL
;
1552 /* selector prefixlen thresholds to hash policies */
1553 if (attrs
[XFRMA_SPD_IPV4_HTHRESH
]) {
1554 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV4_HTHRESH
];
1556 if (nla_len(rta
) < sizeof(*thresh4
)) {
1557 NL_SET_ERR_MSG(extack
, "Invalid SPD_IPV4_HTHRESH attribute length");
1560 thresh4
= nla_data(rta
);
1561 if (thresh4
->lbits
> 32 || thresh4
->rbits
> 32) {
1562 NL_SET_ERR_MSG(extack
, "Invalid hash threshold (must be <= 32 for IPv4)");
1566 if (attrs
[XFRMA_SPD_IPV6_HTHRESH
]) {
1567 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV6_HTHRESH
];
1569 if (nla_len(rta
) < sizeof(*thresh6
)) {
1570 NL_SET_ERR_MSG(extack
, "Invalid SPD_IPV6_HTHRESH attribute length");
1573 thresh6
= nla_data(rta
);
1574 if (thresh6
->lbits
> 128 || thresh6
->rbits
> 128) {
1575 NL_SET_ERR_MSG(extack
, "Invalid hash threshold (must be <= 128 for IPv6)");
1580 if (thresh4
|| thresh6
) {
1581 write_seqlock(&net
->xfrm
.policy_hthresh
.lock
);
1583 net
->xfrm
.policy_hthresh
.lbits4
= thresh4
->lbits
;
1584 net
->xfrm
.policy_hthresh
.rbits4
= thresh4
->rbits
;
1587 net
->xfrm
.policy_hthresh
.lbits6
= thresh6
->lbits
;
1588 net
->xfrm
.policy_hthresh
.rbits6
= thresh6
->rbits
;
1590 write_sequnlock(&net
->xfrm
.policy_hthresh
.lock
);
1592 xfrm_policy_hash_rebuild(net
);
1598 static int xfrm_get_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1599 struct nlattr
**attrs
,
1600 struct netlink_ext_ack
*extack
)
1602 struct net
*net
= sock_net(skb
->sk
);
1603 struct sk_buff
*r_skb
;
1604 u32
*flags
= nlmsg_data(nlh
);
1605 u32 sportid
= NETLINK_CB(skb
).portid
;
1606 u32 seq
= nlh
->nlmsg_seq
;
1609 r_skb
= nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC
);
1613 err
= build_spdinfo(r_skb
, net
, sportid
, seq
, *flags
);
1616 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1619 static inline unsigned int xfrm_sadinfo_msgsize(void)
1621 return NLMSG_ALIGN(4)
1622 + nla_total_size(sizeof(struct xfrmu_sadhinfo
))
1623 + nla_total_size(4); /* XFRMA_SAD_CNT */
1626 static int build_sadinfo(struct sk_buff
*skb
, struct net
*net
,
1627 u32 portid
, u32 seq
, u32 flags
)
1629 struct xfrmk_sadinfo si
;
1630 struct xfrmu_sadhinfo sh
;
1631 struct nlmsghdr
*nlh
;
1635 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSADINFO
, sizeof(u32
), 0);
1636 if (nlh
== NULL
) /* shouldn't really happen ... */
1639 f
= nlmsg_data(nlh
);
1641 xfrm_sad_getinfo(net
, &si
);
1643 sh
.sadhmcnt
= si
.sadhmcnt
;
1644 sh
.sadhcnt
= si
.sadhcnt
;
1646 err
= nla_put_u32(skb
, XFRMA_SAD_CNT
, si
.sadcnt
);
1648 err
= nla_put(skb
, XFRMA_SAD_HINFO
, sizeof(sh
), &sh
);
1650 nlmsg_cancel(skb
, nlh
);
1654 nlmsg_end(skb
, nlh
);
1658 static int xfrm_get_sadinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1659 struct nlattr
**attrs
,
1660 struct netlink_ext_ack
*extack
)
1662 struct net
*net
= sock_net(skb
->sk
);
1663 struct sk_buff
*r_skb
;
1664 u32
*flags
= nlmsg_data(nlh
);
1665 u32 sportid
= NETLINK_CB(skb
).portid
;
1666 u32 seq
= nlh
->nlmsg_seq
;
1669 r_skb
= nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC
);
1673 err
= build_sadinfo(r_skb
, net
, sportid
, seq
, *flags
);
1676 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1679 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1680 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
1682 struct net
*net
= sock_net(skb
->sk
);
1683 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
1684 struct xfrm_state
*x
;
1685 struct sk_buff
*resp_skb
;
1688 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
1692 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1693 if (IS_ERR(resp_skb
)) {
1694 err
= PTR_ERR(resp_skb
);
1696 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1703 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1704 struct nlattr
**attrs
,
1705 struct netlink_ext_ack
*extack
)
1707 struct net
*net
= sock_net(skb
->sk
);
1708 struct xfrm_state
*x
;
1709 struct xfrm_userspi_info
*p
;
1710 struct xfrm_translator
*xtr
;
1711 struct sk_buff
*resp_skb
;
1712 xfrm_address_t
*daddr
;
1718 u32 pcpu_num
= UINT_MAX
;
1720 p
= nlmsg_data(nlh
);
1721 err
= verify_spi_info(p
->info
.id
.proto
, p
->min
, p
->max
, extack
);
1725 family
= p
->info
.family
;
1726 daddr
= &p
->info
.id
.daddr
;
1730 mark
= xfrm_mark_get(attrs
, &m
);
1732 if (attrs
[XFRMA_IF_ID
])
1733 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
1735 if (attrs
[XFRMA_SA_PCPU
]) {
1736 pcpu_num
= nla_get_u32(attrs
[XFRMA_SA_PCPU
]);
1737 if (pcpu_num
>= num_possible_cpus()) {
1744 x
= xfrm_find_acq_byseq(net
, mark
, p
->info
.seq
, pcpu_num
);
1745 if (x
&& !xfrm_addr_equal(&x
->id
.daddr
, daddr
, family
)) {
1752 x
= xfrm_find_acq(net
, &m
, p
->info
.mode
, p
->info
.reqid
,
1753 if_id
, pcpu_num
, p
->info
.id
.proto
, daddr
,
1758 NL_SET_ERR_MSG(extack
, "Target ACQUIRE not found");
1762 err
= xfrm_alloc_spi(x
, p
->min
, p
->max
, extack
);
1766 if (attrs
[XFRMA_SA_DIR
])
1767 x
->dir
= nla_get_u8(attrs
[XFRMA_SA_DIR
]);
1769 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1770 if (IS_ERR(resp_skb
)) {
1771 err
= PTR_ERR(resp_skb
);
1775 xtr
= xfrm_get_translator();
1777 err
= xtr
->alloc_compat(skb
, nlmsg_hdr(skb
));
1779 xfrm_put_translator(xtr
);
1781 kfree_skb(resp_skb
);
1786 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1794 static int verify_policy_dir(u8 dir
, struct netlink_ext_ack
*extack
)
1797 case XFRM_POLICY_IN
:
1798 case XFRM_POLICY_OUT
:
1799 case XFRM_POLICY_FWD
:
1803 NL_SET_ERR_MSG(extack
, "Invalid policy direction");
1810 static int verify_policy_type(u8 type
, struct netlink_ext_ack
*extack
)
1813 case XFRM_POLICY_TYPE_MAIN
:
1814 #ifdef CONFIG_XFRM_SUB_POLICY
1815 case XFRM_POLICY_TYPE_SUB
:
1820 NL_SET_ERR_MSG(extack
, "Invalid policy type");
1827 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
,
1828 struct netlink_ext_ack
*extack
)
1833 case XFRM_SHARE_ANY
:
1834 case XFRM_SHARE_SESSION
:
1835 case XFRM_SHARE_USER
:
1836 case XFRM_SHARE_UNIQUE
:
1840 NL_SET_ERR_MSG(extack
, "Invalid policy share");
1844 switch (p
->action
) {
1845 case XFRM_POLICY_ALLOW
:
1846 case XFRM_POLICY_BLOCK
:
1850 NL_SET_ERR_MSG(extack
, "Invalid policy action");
1854 switch (p
->sel
.family
) {
1856 if (p
->sel
.prefixlen_d
> 32 || p
->sel
.prefixlen_s
> 32) {
1857 NL_SET_ERR_MSG(extack
, "Invalid prefix length in selector (must be <= 32 for IPv4)");
1864 #if IS_ENABLED(CONFIG_IPV6)
1865 if (p
->sel
.prefixlen_d
> 128 || p
->sel
.prefixlen_s
> 128) {
1866 NL_SET_ERR_MSG(extack
, "Invalid prefix length in selector (must be <= 128 for IPv6)");
1872 NL_SET_ERR_MSG(extack
, "IPv6 support disabled");
1873 return -EAFNOSUPPORT
;
1877 NL_SET_ERR_MSG(extack
, "Invalid selector family");
1881 ret
= verify_policy_dir(p
->dir
, extack
);
1884 if (p
->index
&& (xfrm_policy_id2dir(p
->index
) != p
->dir
)) {
1885 NL_SET_ERR_MSG(extack
, "Policy index doesn't match direction");
1892 static int copy_from_user_sec_ctx(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1894 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1895 struct xfrm_user_sec_ctx
*uctx
;
1900 uctx
= nla_data(rt
);
1901 return security_xfrm_policy_alloc(&pol
->security
, uctx
, GFP_KERNEL
);
1904 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
1910 for (i
= 0; i
< nr
; i
++, ut
++) {
1911 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1913 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
1914 memcpy(&t
->saddr
, &ut
->saddr
,
1915 sizeof(xfrm_address_t
));
1916 t
->reqid
= ut
->reqid
;
1918 t
->share
= ut
->share
;
1919 t
->optional
= ut
->optional
;
1920 t
->aalgos
= ut
->aalgos
;
1921 t
->ealgos
= ut
->ealgos
;
1922 t
->calgos
= ut
->calgos
;
1923 /* If all masks are ~0, then we allow all algorithms. */
1924 t
->allalgs
= !~(t
->aalgos
& t
->ealgos
& t
->calgos
);
1925 t
->encap_family
= ut
->family
;
1929 static int validate_tmpl(int nr
, struct xfrm_user_tmpl
*ut
, u16 family
,
1930 int dir
, struct netlink_ext_ack
*extack
)
1935 if (nr
> XFRM_MAX_DEPTH
) {
1936 NL_SET_ERR_MSG(extack
, "Template count must be <= XFRM_MAX_DEPTH (" __stringify(XFRM_MAX_DEPTH
) ")");
1940 prev_family
= family
;
1942 for (i
= 0; i
< nr
; i
++) {
1943 /* We never validated the ut->family value, so many
1944 * applications simply leave it at zero. The check was
1945 * never made and ut->family was ignored because all
1946 * templates could be assumed to have the same family as
1947 * the policy itself. Now that we will have ipv4-in-ipv6
1948 * and ipv6-in-ipv4 tunnels, this is no longer true.
1951 ut
[i
].family
= family
;
1953 switch (ut
[i
].mode
) {
1954 case XFRM_MODE_TUNNEL
:
1955 case XFRM_MODE_BEET
:
1956 if (ut
[i
].optional
&& dir
== XFRM_POLICY_OUT
) {
1957 NL_SET_ERR_MSG(extack
, "Mode in optional template not allowed in outbound policy");
1962 if (ut
[i
].family
!= prev_family
) {
1963 NL_SET_ERR_MSG(extack
, "Mode in template doesn't support a family change");
1968 if (ut
[i
].mode
>= XFRM_MODE_MAX
) {
1969 NL_SET_ERR_MSG(extack
, "Mode in template must be < XFRM_MODE_MAX (" __stringify(XFRM_MODE_MAX
) ")");
1973 prev_family
= ut
[i
].family
;
1975 switch (ut
[i
].family
) {
1978 #if IS_ENABLED(CONFIG_IPV6)
1983 NL_SET_ERR_MSG(extack
, "Invalid family in template");
1987 if (!xfrm_id_proto_valid(ut
[i
].id
.proto
)) {
1988 NL_SET_ERR_MSG(extack
, "Invalid XFRM protocol in template");
1996 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct nlattr
**attrs
,
1997 int dir
, struct netlink_ext_ack
*extack
)
1999 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
2004 struct xfrm_user_tmpl
*utmpl
= nla_data(rt
);
2005 int nr
= nla_len(rt
) / sizeof(*utmpl
);
2008 err
= validate_tmpl(nr
, utmpl
, pol
->family
, dir
, extack
);
2012 copy_templates(pol
, utmpl
, nr
);
2017 static int copy_from_user_policy_type(u8
*tp
, struct nlattr
**attrs
,
2018 struct netlink_ext_ack
*extack
)
2020 struct nlattr
*rt
= attrs
[XFRMA_POLICY_TYPE
];
2021 struct xfrm_userpolicy_type
*upt
;
2022 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2030 err
= verify_policy_type(type
, extack
);
2038 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
2040 xp
->priority
= p
->priority
;
2041 xp
->index
= p
->index
;
2042 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
2043 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
2044 xp
->action
= p
->action
;
2045 xp
->flags
= p
->flags
;
2046 xp
->family
= p
->sel
.family
;
2047 /* XXX xp->share = p->share; */
2050 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
2052 memset(p
, 0, sizeof(*p
));
2053 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
2054 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
2055 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
2056 p
->priority
= xp
->priority
;
2057 p
->index
= xp
->index
;
2058 p
->sel
.family
= xp
->family
;
2060 p
->action
= xp
->action
;
2061 p
->flags
= xp
->flags
;
2062 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
2065 static struct xfrm_policy
*xfrm_policy_construct(struct net
*net
,
2066 struct xfrm_userpolicy_info
*p
,
2067 struct nlattr
**attrs
,
2069 struct netlink_ext_ack
*extack
)
2071 struct xfrm_policy
*xp
= xfrm_policy_alloc(net
, GFP_KERNEL
);
2079 copy_from_user_policy(xp
, p
);
2081 err
= copy_from_user_policy_type(&xp
->type
, attrs
, extack
);
2085 if (!(err
= copy_from_user_tmpl(xp
, attrs
, p
->dir
, extack
)))
2086 err
= copy_from_user_sec_ctx(xp
, attrs
);
2090 xfrm_mark_get(attrs
, &xp
->mark
);
2092 if (attrs
[XFRMA_IF_ID
])
2093 xp
->if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
2095 /* configure the hardware if offload is requested */
2096 if (attrs
[XFRMA_OFFLOAD_DEV
]) {
2097 err
= xfrm_dev_policy_add(net
, xp
,
2098 nla_data(attrs
[XFRMA_OFFLOAD_DEV
]),
2108 xfrm_policy_destroy(xp
);
2112 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2113 struct nlattr
**attrs
,
2114 struct netlink_ext_ack
*extack
)
2116 struct net
*net
= sock_net(skb
->sk
);
2117 struct xfrm_userpolicy_info
*p
= nlmsg_data(nlh
);
2118 struct xfrm_policy
*xp
;
2123 err
= verify_newpolicy_info(p
, extack
);
2126 err
= verify_sec_ctx_len(attrs
, extack
);
2130 xp
= xfrm_policy_construct(net
, p
, attrs
, &err
, extack
);
2134 /* shouldn't excl be based on nlh flags??
2135 * Aha! this is anti-netlink really i.e more pfkey derived
2136 * in netlink excl is a flag and you wouldn't need
2137 * a type XFRM_MSG_UPDPOLICY - JHS */
2138 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
2139 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
2140 xfrm_audit_policy_add(xp
, err
? 0 : 1, true);
2143 xfrm_dev_policy_delete(xp
);
2144 xfrm_dev_policy_free(xp
);
2145 security_xfrm_policy_free(xp
->security
);
2150 c
.event
= nlh
->nlmsg_type
;
2151 c
.seq
= nlh
->nlmsg_seq
;
2152 c
.portid
= nlh
->nlmsg_pid
;
2153 km_policy_notify(xp
, p
->dir
, &c
);
2160 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
2162 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
2165 if (xp
->xfrm_nr
== 0)
2168 if (xp
->xfrm_nr
> XFRM_MAX_DEPTH
)
2171 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
2172 struct xfrm_user_tmpl
*up
= &vec
[i
];
2173 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
2175 memset(up
, 0, sizeof(*up
));
2176 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
2177 up
->family
= kp
->encap_family
;
2178 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
2179 up
->reqid
= kp
->reqid
;
2180 up
->mode
= kp
->mode
;
2181 up
->share
= kp
->share
;
2182 up
->optional
= kp
->optional
;
2183 up
->aalgos
= kp
->aalgos
;
2184 up
->ealgos
= kp
->ealgos
;
2185 up
->calgos
= kp
->calgos
;
2188 return nla_put(skb
, XFRMA_TMPL
,
2189 sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
, vec
);
2192 static inline int copy_to_user_state_sec_ctx(struct xfrm_state
*x
, struct sk_buff
*skb
)
2195 return copy_sec_ctx(x
->security
, skb
);
2200 static inline int copy_to_user_sec_ctx(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
2203 return copy_sec_ctx(xp
->security
, skb
);
2206 static inline unsigned int userpolicy_type_attrsize(void)
2208 #ifdef CONFIG_XFRM_SUB_POLICY
2209 return nla_total_size(sizeof(struct xfrm_userpolicy_type
));
2215 #ifdef CONFIG_XFRM_SUB_POLICY
2216 static int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
2218 struct xfrm_userpolicy_type upt
;
2220 /* Sadly there are two holes in struct xfrm_userpolicy_type */
2221 memset(&upt
, 0, sizeof(upt
));
2224 return nla_put(skb
, XFRMA_POLICY_TYPE
, sizeof(upt
), &upt
);
2228 static inline int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
2234 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
2236 struct xfrm_dump_info
*sp
= ptr
;
2237 struct xfrm_userpolicy_info
*p
;
2238 struct sk_buff
*in_skb
= sp
->in_skb
;
2239 struct sk_buff
*skb
= sp
->out_skb
;
2240 struct xfrm_translator
*xtr
;
2241 struct nlmsghdr
*nlh
;
2244 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
2245 XFRM_MSG_NEWPOLICY
, sizeof(*p
), sp
->nlmsg_flags
);
2249 p
= nlmsg_data(nlh
);
2250 copy_to_user_policy(xp
, p
, dir
);
2251 err
= copy_to_user_tmpl(xp
, skb
);
2253 err
= copy_to_user_sec_ctx(xp
, skb
);
2255 err
= copy_to_user_policy_type(xp
->type
, skb
);
2257 err
= xfrm_mark_put(skb
, &xp
->mark
);
2259 err
= xfrm_if_id_put(skb
, xp
->if_id
);
2260 if (!err
&& xp
->xdo
.dev
)
2261 err
= copy_user_offload(&xp
->xdo
, skb
);
2263 nlmsg_cancel(skb
, nlh
);
2266 nlmsg_end(skb
, nlh
);
2268 xtr
= xfrm_get_translator();
2270 err
= xtr
->alloc_compat(skb
, nlh
);
2272 xfrm_put_translator(xtr
);
2274 nlmsg_cancel(skb
, nlh
);
2282 static int xfrm_dump_policy_done(struct netlink_callback
*cb
)
2284 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
2285 struct net
*net
= sock_net(cb
->skb
->sk
);
2287 xfrm_policy_walk_done(walk
, net
);
2291 static int xfrm_dump_policy_start(struct netlink_callback
*cb
)
2293 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
2295 BUILD_BUG_ON(sizeof(*walk
) > sizeof(cb
->args
));
2297 xfrm_policy_walk_init(walk
, XFRM_POLICY_TYPE_ANY
);
2301 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2303 struct net
*net
= sock_net(skb
->sk
);
2304 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
2305 struct xfrm_dump_info info
;
2307 info
.in_skb
= cb
->skb
;
2309 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
2310 info
.nlmsg_flags
= NLM_F_MULTI
;
2312 (void) xfrm_policy_walk(net
, walk
, dump_one_policy
, &info
);
2317 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
2318 struct xfrm_policy
*xp
,
2321 struct xfrm_dump_info info
;
2322 struct sk_buff
*skb
;
2325 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2327 return ERR_PTR(-ENOMEM
);
2329 info
.in_skb
= in_skb
;
2331 info
.nlmsg_seq
= seq
;
2332 info
.nlmsg_flags
= 0;
2334 err
= dump_one_policy(xp
, dir
, 0, &info
);
2337 return ERR_PTR(err
);
2343 static int xfrm_notify_userpolicy(struct net
*net
)
2345 struct xfrm_userpolicy_default
*up
;
2346 int len
= NLMSG_ALIGN(sizeof(*up
));
2347 struct nlmsghdr
*nlh
;
2348 struct sk_buff
*skb
;
2351 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2355 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_GETDEFAULT
, sizeof(*up
), 0);
2361 up
= nlmsg_data(nlh
);
2362 up
->in
= net
->xfrm
.policy_default
[XFRM_POLICY_IN
];
2363 up
->fwd
= net
->xfrm
.policy_default
[XFRM_POLICY_FWD
];
2364 up
->out
= net
->xfrm
.policy_default
[XFRM_POLICY_OUT
];
2366 nlmsg_end(skb
, nlh
);
2369 err
= xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
2375 static bool xfrm_userpolicy_is_valid(__u8 policy
)
2377 return policy
== XFRM_USERPOLICY_BLOCK
||
2378 policy
== XFRM_USERPOLICY_ACCEPT
;
2381 static int xfrm_set_default(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2382 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
2384 struct net
*net
= sock_net(skb
->sk
);
2385 struct xfrm_userpolicy_default
*up
= nlmsg_data(nlh
);
2387 if (xfrm_userpolicy_is_valid(up
->in
))
2388 net
->xfrm
.policy_default
[XFRM_POLICY_IN
] = up
->in
;
2390 if (xfrm_userpolicy_is_valid(up
->fwd
))
2391 net
->xfrm
.policy_default
[XFRM_POLICY_FWD
] = up
->fwd
;
2393 if (xfrm_userpolicy_is_valid(up
->out
))
2394 net
->xfrm
.policy_default
[XFRM_POLICY_OUT
] = up
->out
;
2396 rt_genid_bump_all(net
);
2398 xfrm_notify_userpolicy(net
);
2402 static int xfrm_get_default(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2403 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
2405 struct sk_buff
*r_skb
;
2406 struct nlmsghdr
*r_nlh
;
2407 struct net
*net
= sock_net(skb
->sk
);
2408 struct xfrm_userpolicy_default
*r_up
;
2409 int len
= NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_default
));
2410 u32 portid
= NETLINK_CB(skb
).portid
;
2411 u32 seq
= nlh
->nlmsg_seq
;
2413 r_skb
= nlmsg_new(len
, GFP_ATOMIC
);
2417 r_nlh
= nlmsg_put(r_skb
, portid
, seq
, XFRM_MSG_GETDEFAULT
, sizeof(*r_up
), 0);
2423 r_up
= nlmsg_data(r_nlh
);
2424 r_up
->in
= net
->xfrm
.policy_default
[XFRM_POLICY_IN
];
2425 r_up
->fwd
= net
->xfrm
.policy_default
[XFRM_POLICY_FWD
];
2426 r_up
->out
= net
->xfrm
.policy_default
[XFRM_POLICY_OUT
];
2427 nlmsg_end(r_skb
, r_nlh
);
2429 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, portid
);
2432 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2433 struct nlattr
**attrs
,
2434 struct netlink_ext_ack
*extack
)
2436 struct net
*net
= sock_net(skb
->sk
);
2437 struct xfrm_policy
*xp
;
2438 struct xfrm_userpolicy_id
*p
;
2439 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2446 p
= nlmsg_data(nlh
);
2447 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
2449 err
= copy_from_user_policy_type(&type
, attrs
, extack
);
2453 err
= verify_policy_dir(p
->dir
, extack
);
2457 if (attrs
[XFRMA_IF_ID
])
2458 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
2460 xfrm_mark_get(attrs
, &m
);
2463 xp
= xfrm_policy_byid(net
, &m
, if_id
, type
, p
->dir
,
2464 p
->index
, delete, &err
);
2466 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
2467 struct xfrm_sec_ctx
*ctx
;
2469 err
= verify_sec_ctx_len(attrs
, extack
);
2475 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
2477 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
2481 xp
= xfrm_policy_bysel_ctx(net
, &m
, if_id
, type
, p
->dir
,
2482 &p
->sel
, ctx
, delete, &err
);
2483 security_xfrm_policy_free(ctx
);
2489 struct sk_buff
*resp_skb
;
2491 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
2492 if (IS_ERR(resp_skb
)) {
2493 err
= PTR_ERR(resp_skb
);
2495 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
,
2496 NETLINK_CB(skb
).portid
);
2499 xfrm_audit_policy_delete(xp
, err
? 0 : 1, true);
2504 c
.data
.byid
= p
->index
;
2505 c
.event
= nlh
->nlmsg_type
;
2506 c
.seq
= nlh
->nlmsg_seq
;
2507 c
.portid
= nlh
->nlmsg_pid
;
2508 km_policy_notify(xp
, p
->dir
, &c
);
2516 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2517 struct nlattr
**attrs
,
2518 struct netlink_ext_ack
*extack
)
2520 struct net
*net
= sock_net(skb
->sk
);
2522 struct xfrm_usersa_flush
*p
= nlmsg_data(nlh
);
2525 err
= xfrm_state_flush(net
, p
->proto
, true, false);
2527 if (err
== -ESRCH
) /* empty table */
2531 c
.data
.proto
= p
->proto
;
2532 c
.event
= nlh
->nlmsg_type
;
2533 c
.seq
= nlh
->nlmsg_seq
;
2534 c
.portid
= nlh
->nlmsg_pid
;
2536 km_state_notify(NULL
, &c
);
2541 static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state
*x
)
2543 unsigned int replay_size
= x
->replay_esn
?
2544 xfrm_replay_state_esn_len(x
->replay_esn
) :
2545 sizeof(struct xfrm_replay_state
);
2547 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id
))
2548 + nla_total_size(replay_size
)
2549 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur
))
2550 + nla_total_size(sizeof(struct xfrm_mark
))
2551 + nla_total_size(4) /* XFRM_AE_RTHR */
2552 + nla_total_size(4) /* XFRM_AE_ETHR */
2553 + nla_total_size(sizeof(x
->dir
)) /* XFRMA_SA_DIR */
2554 + nla_total_size(4); /* XFRMA_SA_PCPU */
2557 static int build_aevent(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
2559 struct xfrm_aevent_id
*id
;
2560 struct nlmsghdr
*nlh
;
2563 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_NEWAE
, sizeof(*id
), 0);
2567 id
= nlmsg_data(nlh
);
2568 memset(&id
->sa_id
, 0, sizeof(id
->sa_id
));
2569 memcpy(&id
->sa_id
.daddr
, &x
->id
.daddr
, sizeof(x
->id
.daddr
));
2570 id
->sa_id
.spi
= x
->id
.spi
;
2571 id
->sa_id
.family
= x
->props
.family
;
2572 id
->sa_id
.proto
= x
->id
.proto
;
2573 memcpy(&id
->saddr
, &x
->props
.saddr
, sizeof(x
->props
.saddr
));
2574 id
->reqid
= x
->props
.reqid
;
2575 id
->flags
= c
->data
.aevent
;
2577 if (x
->replay_esn
) {
2578 err
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
2579 xfrm_replay_state_esn_len(x
->replay_esn
),
2582 err
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
2587 err
= nla_put_64bit(skb
, XFRMA_LTIME_VAL
, sizeof(x
->curlft
), &x
->curlft
,
2592 if (id
->flags
& XFRM_AE_RTHR
) {
2593 err
= nla_put_u32(skb
, XFRMA_REPLAY_THRESH
, x
->replay_maxdiff
);
2597 if (id
->flags
& XFRM_AE_ETHR
) {
2598 err
= nla_put_u32(skb
, XFRMA_ETIMER_THRESH
,
2599 x
->replay_maxage
* 10 / HZ
);
2603 err
= xfrm_mark_put(skb
, &x
->mark
);
2607 err
= xfrm_if_id_put(skb
, x
->if_id
);
2610 if (x
->pcpu_num
!= UINT_MAX
) {
2611 err
= nla_put_u32(skb
, XFRMA_SA_PCPU
, x
->pcpu_num
);
2617 err
= nla_put_u8(skb
, XFRMA_SA_DIR
, x
->dir
);
2622 nlmsg_end(skb
, nlh
);
2626 nlmsg_cancel(skb
, nlh
);
2630 static int xfrm_get_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2631 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
2633 struct net
*net
= sock_net(skb
->sk
);
2634 struct xfrm_state
*x
;
2635 struct sk_buff
*r_skb
;
2640 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
2641 struct xfrm_usersa_id
*id
= &p
->sa_id
;
2643 mark
= xfrm_mark_get(attrs
, &m
);
2645 x
= xfrm_state_lookup(net
, mark
, &id
->daddr
, id
->spi
, id
->proto
, id
->family
);
2649 r_skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2650 if (r_skb
== NULL
) {
2656 * XXX: is this lock really needed - none of the other
2657 * gets lock (the concern is things getting updated
2658 * while we are still reading) - jhs
2660 spin_lock_bh(&x
->lock
);
2661 c
.data
.aevent
= p
->flags
;
2662 c
.seq
= nlh
->nlmsg_seq
;
2663 c
.portid
= nlh
->nlmsg_pid
;
2665 err
= build_aevent(r_skb
, x
, &c
);
2668 err
= nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, NETLINK_CB(skb
).portid
);
2669 spin_unlock_bh(&x
->lock
);
2674 static int xfrm_new_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2675 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
2677 struct net
*net
= sock_net(skb
->sk
);
2678 struct xfrm_state
*x
;
2683 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
2684 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
2685 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
2686 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
2687 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
2688 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
2690 if (!lt
&& !rp
&& !re
&& !et
&& !rt
) {
2691 NL_SET_ERR_MSG(extack
, "Missing required attribute for AE");
2695 /* pedantic mode - thou shalt sayeth replaceth */
2696 if (!(nlh
->nlmsg_flags
& NLM_F_REPLACE
)) {
2697 NL_SET_ERR_MSG(extack
, "NLM_F_REPLACE flag is required");
2701 mark
= xfrm_mark_get(attrs
, &m
);
2703 x
= xfrm_state_lookup(net
, mark
, &p
->sa_id
.daddr
, p
->sa_id
.spi
, p
->sa_id
.proto
, p
->sa_id
.family
);
2707 if (x
->km
.state
!= XFRM_STATE_VALID
) {
2708 NL_SET_ERR_MSG(extack
, "SA must be in VALID state");
2712 err
= xfrm_replay_verify_len(x
->replay_esn
, re
, extack
);
2716 spin_lock_bh(&x
->lock
);
2717 xfrm_update_ae_params(x
, attrs
, 1);
2718 spin_unlock_bh(&x
->lock
);
2720 c
.event
= nlh
->nlmsg_type
;
2721 c
.seq
= nlh
->nlmsg_seq
;
2722 c
.portid
= nlh
->nlmsg_pid
;
2723 c
.data
.aevent
= XFRM_AE_CU
;
2724 km_state_notify(x
, &c
);
2731 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2732 struct nlattr
**attrs
,
2733 struct netlink_ext_ack
*extack
)
2735 struct net
*net
= sock_net(skb
->sk
);
2737 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2740 err
= copy_from_user_policy_type(&type
, attrs
, extack
);
2744 err
= xfrm_policy_flush(net
, type
, true);
2746 if (err
== -ESRCH
) /* empty table */
2752 c
.event
= nlh
->nlmsg_type
;
2753 c
.seq
= nlh
->nlmsg_seq
;
2754 c
.portid
= nlh
->nlmsg_pid
;
2756 km_policy_notify(NULL
, 0, &c
);
2760 static int xfrm_add_pol_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2761 struct nlattr
**attrs
,
2762 struct netlink_ext_ack
*extack
)
2764 struct net
*net
= sock_net(skb
->sk
);
2765 struct xfrm_policy
*xp
;
2766 struct xfrm_user_polexpire
*up
= nlmsg_data(nlh
);
2767 struct xfrm_userpolicy_info
*p
= &up
->pol
;
2768 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2773 err
= copy_from_user_policy_type(&type
, attrs
, extack
);
2777 err
= verify_policy_dir(p
->dir
, extack
);
2781 if (attrs
[XFRMA_IF_ID
])
2782 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
2784 xfrm_mark_get(attrs
, &m
);
2787 xp
= xfrm_policy_byid(net
, &m
, if_id
, type
, p
->dir
, p
->index
,
2790 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
2791 struct xfrm_sec_ctx
*ctx
;
2793 err
= verify_sec_ctx_len(attrs
, extack
);
2799 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
2801 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
2805 xp
= xfrm_policy_bysel_ctx(net
, &m
, if_id
, type
, p
->dir
,
2806 &p
->sel
, ctx
, 0, &err
);
2807 security_xfrm_policy_free(ctx
);
2812 if (unlikely(xp
->walk
.dead
))
2817 xfrm_policy_delete(xp
, p
->dir
);
2818 xfrm_audit_policy_delete(xp
, 1, true);
2820 km_policy_expired(xp
, p
->dir
, up
->hard
, nlh
->nlmsg_pid
);
2827 static int xfrm_add_sa_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2828 struct nlattr
**attrs
,
2829 struct netlink_ext_ack
*extack
)
2831 struct net
*net
= sock_net(skb
->sk
);
2832 struct xfrm_state
*x
;
2834 struct xfrm_user_expire
*ue
= nlmsg_data(nlh
);
2835 struct xfrm_usersa_info
*p
= &ue
->state
;
2837 u32 mark
= xfrm_mark_get(attrs
, &m
);
2839 x
= xfrm_state_lookup(net
, mark
, &p
->id
.daddr
, p
->id
.spi
, p
->id
.proto
, p
->family
);
2845 spin_lock_bh(&x
->lock
);
2847 if (x
->km
.state
!= XFRM_STATE_VALID
) {
2848 NL_SET_ERR_MSG(extack
, "SA must be in VALID state");
2852 km_state_expired(x
, ue
->hard
, nlh
->nlmsg_pid
);
2855 __xfrm_state_delete(x
);
2856 xfrm_audit_state_delete(x
, 1, true);
2860 spin_unlock_bh(&x
->lock
);
2865 static int xfrm_add_acquire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2866 struct nlattr
**attrs
,
2867 struct netlink_ext_ack
*extack
)
2869 struct net
*net
= sock_net(skb
->sk
);
2870 struct xfrm_policy
*xp
;
2871 struct xfrm_user_tmpl
*ut
;
2873 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
2874 struct xfrm_mark mark
;
2876 struct xfrm_user_acquire
*ua
= nlmsg_data(nlh
);
2877 struct xfrm_state
*x
= xfrm_state_alloc(net
);
2883 xfrm_mark_get(attrs
, &mark
);
2885 if (attrs
[XFRMA_SA_PCPU
]) {
2886 x
->pcpu_num
= nla_get_u32(attrs
[XFRMA_SA_PCPU
]);
2888 if (x
->pcpu_num
>= num_possible_cpus())
2892 err
= verify_newpolicy_info(&ua
->policy
, extack
);
2895 err
= verify_sec_ctx_len(attrs
, extack
);
2900 xp
= xfrm_policy_construct(net
, &ua
->policy
, attrs
, &err
, extack
);
2904 memcpy(&x
->id
, &ua
->id
, sizeof(ua
->id
));
2905 memcpy(&x
->props
.saddr
, &ua
->saddr
, sizeof(ua
->saddr
));
2906 memcpy(&x
->sel
, &ua
->sel
, sizeof(ua
->sel
));
2907 xp
->mark
.m
= x
->mark
.m
= mark
.m
;
2908 xp
->mark
.v
= x
->mark
.v
= mark
.v
;
2910 /* extract the templates and for each call km_key */
2911 for (i
= 0; i
< xp
->xfrm_nr
; i
++, ut
++) {
2912 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
2913 memcpy(&x
->id
, &t
->id
, sizeof(x
->id
));
2914 x
->props
.mode
= t
->mode
;
2915 x
->props
.reqid
= t
->reqid
;
2916 x
->props
.family
= ut
->family
;
2917 t
->aalgos
= ua
->aalgos
;
2918 t
->ealgos
= ua
->ealgos
;
2919 t
->calgos
= ua
->calgos
;
2920 err
= km_query(x
, t
, xp
);
2935 #ifdef CONFIG_XFRM_MIGRATE
2936 static int copy_from_user_migrate(struct xfrm_migrate
*ma
,
2937 struct xfrm_kmaddress
*k
,
2938 struct nlattr
**attrs
, int *num
,
2939 struct netlink_ext_ack
*extack
)
2941 struct nlattr
*rt
= attrs
[XFRMA_MIGRATE
];
2942 struct xfrm_user_migrate
*um
;
2946 struct xfrm_user_kmaddress
*uk
;
2948 uk
= nla_data(attrs
[XFRMA_KMADDRESS
]);
2949 memcpy(&k
->local
, &uk
->local
, sizeof(k
->local
));
2950 memcpy(&k
->remote
, &uk
->remote
, sizeof(k
->remote
));
2951 k
->family
= uk
->family
;
2952 k
->reserved
= uk
->reserved
;
2956 num_migrate
= nla_len(rt
) / sizeof(*um
);
2958 if (num_migrate
<= 0 || num_migrate
> XFRM_MAX_DEPTH
) {
2959 NL_SET_ERR_MSG(extack
, "Invalid number of SAs to migrate, must be 0 < num <= XFRM_MAX_DEPTH (6)");
2963 for (i
= 0; i
< num_migrate
; i
++, um
++, ma
++) {
2964 memcpy(&ma
->old_daddr
, &um
->old_daddr
, sizeof(ma
->old_daddr
));
2965 memcpy(&ma
->old_saddr
, &um
->old_saddr
, sizeof(ma
->old_saddr
));
2966 memcpy(&ma
->new_daddr
, &um
->new_daddr
, sizeof(ma
->new_daddr
));
2967 memcpy(&ma
->new_saddr
, &um
->new_saddr
, sizeof(ma
->new_saddr
));
2969 ma
->proto
= um
->proto
;
2970 ma
->mode
= um
->mode
;
2971 ma
->reqid
= um
->reqid
;
2973 ma
->old_family
= um
->old_family
;
2974 ma
->new_family
= um
->new_family
;
2981 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2982 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
2984 struct xfrm_userpolicy_id
*pi
= nlmsg_data(nlh
);
2985 struct xfrm_migrate m
[XFRM_MAX_DEPTH
];
2986 struct xfrm_kmaddress km
, *kmp
;
2990 struct net
*net
= sock_net(skb
->sk
);
2991 struct xfrm_encap_tmpl
*encap
= NULL
;
2994 if (!attrs
[XFRMA_MIGRATE
]) {
2995 NL_SET_ERR_MSG(extack
, "Missing required MIGRATE attribute");
2999 kmp
= attrs
[XFRMA_KMADDRESS
] ? &km
: NULL
;
3001 err
= copy_from_user_policy_type(&type
, attrs
, extack
);
3005 err
= copy_from_user_migrate(m
, kmp
, attrs
, &n
, extack
);
3012 if (attrs
[XFRMA_ENCAP
]) {
3013 encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
3014 sizeof(*encap
), GFP_KERNEL
);
3019 if (attrs
[XFRMA_IF_ID
])
3020 if_id
= nla_get_u32(attrs
[XFRMA_IF_ID
]);
3022 err
= xfrm_migrate(&pi
->sel
, pi
->dir
, type
, m
, n
, kmp
, net
, encap
,
3030 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
3031 struct nlattr
**attrs
, struct netlink_ext_ack
*extack
)
3033 return -ENOPROTOOPT
;
3037 #ifdef CONFIG_XFRM_MIGRATE
3038 static int copy_to_user_migrate(const struct xfrm_migrate
*m
, struct sk_buff
*skb
)
3040 struct xfrm_user_migrate um
;
3042 memset(&um
, 0, sizeof(um
));
3043 um
.proto
= m
->proto
;
3045 um
.reqid
= m
->reqid
;
3046 um
.old_family
= m
->old_family
;
3047 memcpy(&um
.old_daddr
, &m
->old_daddr
, sizeof(um
.old_daddr
));
3048 memcpy(&um
.old_saddr
, &m
->old_saddr
, sizeof(um
.old_saddr
));
3049 um
.new_family
= m
->new_family
;
3050 memcpy(&um
.new_daddr
, &m
->new_daddr
, sizeof(um
.new_daddr
));
3051 memcpy(&um
.new_saddr
, &m
->new_saddr
, sizeof(um
.new_saddr
));
3053 return nla_put(skb
, XFRMA_MIGRATE
, sizeof(um
), &um
);
3056 static int copy_to_user_kmaddress(const struct xfrm_kmaddress
*k
, struct sk_buff
*skb
)
3058 struct xfrm_user_kmaddress uk
;
3060 memset(&uk
, 0, sizeof(uk
));
3061 uk
.family
= k
->family
;
3062 uk
.reserved
= k
->reserved
;
3063 memcpy(&uk
.local
, &k
->local
, sizeof(uk
.local
));
3064 memcpy(&uk
.remote
, &k
->remote
, sizeof(uk
.remote
));
3066 return nla_put(skb
, XFRMA_KMADDRESS
, sizeof(uk
), &uk
);
3069 static inline unsigned int xfrm_migrate_msgsize(int num_migrate
, int with_kma
,
3072 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id
))
3073 + (with_kma
? nla_total_size(sizeof(struct xfrm_kmaddress
)) : 0)
3074 + (with_encp
? nla_total_size(sizeof(struct xfrm_encap_tmpl
)) : 0)
3075 + nla_total_size(sizeof(struct xfrm_user_migrate
) * num_migrate
)
3076 + userpolicy_type_attrsize();
3079 static int build_migrate(struct sk_buff
*skb
, const struct xfrm_migrate
*m
,
3080 int num_migrate
, const struct xfrm_kmaddress
*k
,
3081 const struct xfrm_selector
*sel
,
3082 const struct xfrm_encap_tmpl
*encap
, u8 dir
, u8 type
)
3084 const struct xfrm_migrate
*mp
;
3085 struct xfrm_userpolicy_id
*pol_id
;
3086 struct nlmsghdr
*nlh
;
3089 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MIGRATE
, sizeof(*pol_id
), 0);
3093 pol_id
= nlmsg_data(nlh
);
3094 /* copy data from selector, dir, and type to the pol_id */
3095 memset(pol_id
, 0, sizeof(*pol_id
));
3096 memcpy(&pol_id
->sel
, sel
, sizeof(pol_id
->sel
));
3100 err
= copy_to_user_kmaddress(k
, skb
);
3105 err
= nla_put(skb
, XFRMA_ENCAP
, sizeof(*encap
), encap
);
3109 err
= copy_to_user_policy_type(type
, skb
);
3112 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
3113 err
= copy_to_user_migrate(mp
, skb
);
3118 nlmsg_end(skb
, nlh
);
3122 nlmsg_cancel(skb
, nlh
);
3126 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
3127 const struct xfrm_migrate
*m
, int num_migrate
,
3128 const struct xfrm_kmaddress
*k
,
3129 const struct xfrm_encap_tmpl
*encap
)
3131 struct net
*net
= &init_net
;
3132 struct sk_buff
*skb
;
3135 skb
= nlmsg_new(xfrm_migrate_msgsize(num_migrate
, !!k
, !!encap
),
3141 err
= build_migrate(skb
, m
, num_migrate
, k
, sel
, encap
, dir
, type
);
3144 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MIGRATE
);
3147 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
3148 const struct xfrm_migrate
*m
, int num_migrate
,
3149 const struct xfrm_kmaddress
*k
,
3150 const struct xfrm_encap_tmpl
*encap
)
3152 return -ENOPROTOOPT
;
3156 #define XMSGSIZE(type) sizeof(struct type)
3158 const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
3159 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
3160 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
3161 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
3162 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
3163 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
3164 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
3165 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
3166 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
3167 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
3168 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
3169 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
3170 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
3171 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
3172 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = 0,
3173 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
3174 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
3175 [XFRM_MSG_REPORT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_report
),
3176 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
3177 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
3178 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
3179 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
3180 [XFRM_MSG_SETDEFAULT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_default
),
3181 [XFRM_MSG_GETDEFAULT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_default
),
3183 EXPORT_SYMBOL_GPL(xfrm_msg_min
);
3187 const struct nla_policy xfrma_policy
[XFRMA_MAX
+1] = {
3188 [XFRMA_UNSPEC
] = { .strict_start_type
= XFRMA_SA_DIR
},
3189 [XFRMA_SA
] = { .len
= sizeof(struct xfrm_usersa_info
)},
3190 [XFRMA_POLICY
] = { .len
= sizeof(struct xfrm_userpolicy_info
)},
3191 [XFRMA_LASTUSED
] = { .type
= NLA_U64
},
3192 [XFRMA_ALG_AUTH_TRUNC
] = { .len
= sizeof(struct xfrm_algo_auth
)},
3193 [XFRMA_ALG_AEAD
] = { .len
= sizeof(struct xfrm_algo_aead
) },
3194 [XFRMA_ALG_AUTH
] = { .len
= sizeof(struct xfrm_algo
) },
3195 [XFRMA_ALG_CRYPT
] = { .len
= sizeof(struct xfrm_algo
) },
3196 [XFRMA_ALG_COMP
] = { .len
= sizeof(struct xfrm_algo
) },
3197 [XFRMA_ENCAP
] = { .len
= sizeof(struct xfrm_encap_tmpl
) },
3198 [XFRMA_TMPL
] = { .len
= sizeof(struct xfrm_user_tmpl
) },
3199 [XFRMA_SEC_CTX
] = { .len
= sizeof(struct xfrm_user_sec_ctx
) },
3200 [XFRMA_LTIME_VAL
] = { .len
= sizeof(struct xfrm_lifetime_cur
) },
3201 [XFRMA_REPLAY_VAL
] = { .len
= sizeof(struct xfrm_replay_state
) },
3202 [XFRMA_REPLAY_THRESH
] = { .type
= NLA_U32
},
3203 [XFRMA_ETIMER_THRESH
] = { .type
= NLA_U32
},
3204 [XFRMA_SRCADDR
] = { .len
= sizeof(xfrm_address_t
) },
3205 [XFRMA_COADDR
] = { .len
= sizeof(xfrm_address_t
) },
3206 [XFRMA_POLICY_TYPE
] = { .len
= sizeof(struct xfrm_userpolicy_type
)},
3207 [XFRMA_MIGRATE
] = { .len
= sizeof(struct xfrm_user_migrate
) },
3208 [XFRMA_KMADDRESS
] = { .len
= sizeof(struct xfrm_user_kmaddress
) },
3209 [XFRMA_MARK
] = { .len
= sizeof(struct xfrm_mark
) },
3210 [XFRMA_TFCPAD
] = { .type
= NLA_U32
},
3211 [XFRMA_REPLAY_ESN_VAL
] = { .len
= sizeof(struct xfrm_replay_state_esn
) },
3212 [XFRMA_SA_EXTRA_FLAGS
] = { .type
= NLA_U32
},
3213 [XFRMA_PROTO
] = { .type
= NLA_U8
},
3214 [XFRMA_ADDRESS_FILTER
] = { .len
= sizeof(struct xfrm_address_filter
) },
3215 [XFRMA_OFFLOAD_DEV
] = { .len
= sizeof(struct xfrm_user_offload
) },
3216 [XFRMA_SET_MARK
] = { .type
= NLA_U32
},
3217 [XFRMA_SET_MARK_MASK
] = { .type
= NLA_U32
},
3218 [XFRMA_IF_ID
] = { .type
= NLA_U32
},
3219 [XFRMA_MTIMER_THRESH
] = { .type
= NLA_U32
},
3220 [XFRMA_SA_DIR
] = NLA_POLICY_RANGE(NLA_U8
, XFRM_SA_DIR_IN
, XFRM_SA_DIR_OUT
),
3221 [XFRMA_NAT_KEEPALIVE_INTERVAL
] = { .type
= NLA_U32
},
3222 [XFRMA_SA_PCPU
] = { .type
= NLA_U32
},
3224 EXPORT_SYMBOL_GPL(xfrma_policy
);
3226 static const struct nla_policy xfrma_spd_policy
[XFRMA_SPD_MAX
+1] = {
3227 [XFRMA_SPD_IPV4_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
3228 [XFRMA_SPD_IPV6_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
3231 static const struct xfrm_link
{
3232 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**,
3233 struct netlink_ext_ack
*);
3234 int (*start
)(struct netlink_callback
*);
3235 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
3236 int (*done
)(struct netlink_callback
*);
3237 const struct nla_policy
*nla_pol
;
3239 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
3240 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
3241 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
3242 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
3243 .dump
= xfrm_dump_sa
,
3244 .done
= xfrm_dump_sa_done
},
3245 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
3246 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
3247 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
3248 .start
= xfrm_dump_policy_start
,
3249 .dump
= xfrm_dump_policy
,
3250 .done
= xfrm_dump_policy_done
},
3251 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
3252 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_acquire
},
3253 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa_expire
},
3254 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
3255 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
3256 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_pol_expire
},
3257 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
3258 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
3259 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_new_ae
},
3260 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_ae
},
3261 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = { .doit
= xfrm_do_migrate
},
3262 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sadinfo
},
3263 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_set_spdinfo
,
3264 .nla_pol
= xfrma_spd_policy
,
3265 .nla_max
= XFRMA_SPD_MAX
},
3266 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_spdinfo
},
3267 [XFRM_MSG_SETDEFAULT
- XFRM_MSG_BASE
] = { .doit
= xfrm_set_default
},
3268 [XFRM_MSG_GETDEFAULT
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_default
},
3271 static int xfrm_reject_unused_attr(int type
, struct nlattr
**attrs
,
3272 struct netlink_ext_ack
*extack
)
3274 if (attrs
[XFRMA_SA_DIR
]) {
3276 case XFRM_MSG_NEWSA
:
3277 case XFRM_MSG_UPDSA
:
3278 case XFRM_MSG_ALLOCSPI
:
3281 NL_SET_ERR_MSG(extack
, "Invalid attribute SA_DIR");
3286 if (attrs
[XFRMA_SA_PCPU
]) {
3288 case XFRM_MSG_NEWSA
:
3289 case XFRM_MSG_UPDSA
:
3290 case XFRM_MSG_ALLOCSPI
:
3291 case XFRM_MSG_ACQUIRE
:
3295 NL_SET_ERR_MSG(extack
, "Invalid attribute SA_PCPU");
3303 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
3304 struct netlink_ext_ack
*extack
)
3306 struct net
*net
= sock_net(skb
->sk
);
3307 struct nlattr
*attrs
[XFRMA_MAX
+1];
3308 const struct xfrm_link
*link
;
3309 struct nlmsghdr
*nlh64
= NULL
;
3312 type
= nlh
->nlmsg_type
;
3313 if (type
> XFRM_MSG_MAX
)
3316 type
-= XFRM_MSG_BASE
;
3317 link
= &xfrm_dispatch
[type
];
3319 /* All operations require privileges, even GET */
3320 if (!netlink_net_capable(skb
, CAP_NET_ADMIN
))
3323 if (in_compat_syscall()) {
3324 struct xfrm_translator
*xtr
= xfrm_get_translator();
3329 nlh64
= xtr
->rcv_msg_compat(nlh
, link
->nla_max
,
3330 link
->nla_pol
, extack
);
3331 xfrm_put_translator(xtr
);
3333 return PTR_ERR(nlh64
);
3338 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
3339 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
3340 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
3341 struct netlink_dump_control c
= {
3342 .start
= link
->start
,
3347 if (link
->dump
== NULL
) {
3352 err
= netlink_dump_start(net
->xfrm
.nlsk
, skb
, nlh
, &c
);
3356 err
= nlmsg_parse_deprecated(nlh
, xfrm_msg_min
[type
], attrs
,
3357 link
->nla_max
? : XFRMA_MAX
,
3358 link
->nla_pol
? : xfrma_policy
, extack
);
3362 if (!link
->nla_pol
|| link
->nla_pol
== xfrma_policy
) {
3363 err
= xfrm_reject_unused_attr((type
+ XFRM_MSG_BASE
), attrs
, extack
);
3368 if (link
->doit
== NULL
) {
3373 err
= link
->doit(skb
, nlh
, attrs
, extack
);
3375 /* We need to free skb allocated in xfrm_alloc_compat() before
3376 * returning from this function, because consume_skb() won't take
3377 * care of frag_list since netlink destructor sets
3378 * sbk->head to NULL. (see netlink_skb_destructor())
3380 if (skb_has_frag_list(skb
)) {
3381 kfree_skb(skb_shinfo(skb
)->frag_list
);
3382 skb_shinfo(skb
)->frag_list
= NULL
;
3390 static void xfrm_netlink_rcv(struct sk_buff
*skb
)
3392 struct net
*net
= sock_net(skb
->sk
);
3394 mutex_lock(&net
->xfrm
.xfrm_cfg_mutex
);
3395 netlink_rcv_skb(skb
, &xfrm_user_rcv_msg
);
3396 mutex_unlock(&net
->xfrm
.xfrm_cfg_mutex
);
3399 static inline unsigned int xfrm_expire_msgsize(void)
3401 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire
)) +
3402 nla_total_size(sizeof(struct xfrm_mark
)) +
3403 nla_total_size(sizeof_field(struct xfrm_state
, dir
)) +
3404 nla_total_size(4); /* XFRMA_SA_PCPU */
3407 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
3409 struct xfrm_user_expire
*ue
;
3410 struct nlmsghdr
*nlh
;
3413 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_EXPIRE
, sizeof(*ue
), 0);
3417 ue
= nlmsg_data(nlh
);
3418 copy_to_user_state(x
, &ue
->state
);
3419 ue
->hard
= (c
->data
.hard
!= 0) ? 1 : 0;
3420 /* clear the padding bytes */
3421 memset_after(ue
, 0, hard
);
3423 err
= xfrm_mark_put(skb
, &x
->mark
);
3427 err
= xfrm_if_id_put(skb
, x
->if_id
);
3430 if (x
->pcpu_num
!= UINT_MAX
) {
3431 err
= nla_put_u32(skb
, XFRMA_SA_PCPU
, x
->pcpu_num
);
3437 err
= nla_put_u8(skb
, XFRMA_SA_DIR
, x
->dir
);
3442 nlmsg_end(skb
, nlh
);
3446 static int xfrm_exp_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
3448 struct net
*net
= xs_net(x
);
3449 struct sk_buff
*skb
;
3451 skb
= nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC
);
3455 if (build_expire(skb
, x
, c
) < 0) {
3460 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
3463 static int xfrm_aevent_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
3465 struct net
*net
= xs_net(x
);
3466 struct sk_buff
*skb
;
3469 skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
3473 err
= build_aevent(skb
, x
, c
);
3476 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_AEVENTS
);
3479 static int xfrm_notify_sa_flush(const struct km_event
*c
)
3481 struct net
*net
= c
->net
;
3482 struct xfrm_usersa_flush
*p
;
3483 struct nlmsghdr
*nlh
;
3484 struct sk_buff
*skb
;
3485 int len
= NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush
));
3487 skb
= nlmsg_new(len
, GFP_ATOMIC
);
3491 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHSA
, sizeof(*p
), 0);
3497 p
= nlmsg_data(nlh
);
3498 p
->proto
= c
->data
.proto
;
3500 nlmsg_end(skb
, nlh
);
3502 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
3505 static inline unsigned int xfrm_sa_len(struct xfrm_state
*x
)
3509 l
+= nla_total_size(aead_len(x
->aead
));
3511 l
+= nla_total_size(sizeof(struct xfrm_algo
) +
3512 (x
->aalg
->alg_key_len
+ 7) / 8);
3513 l
+= nla_total_size(xfrm_alg_auth_len(x
->aalg
));
3516 l
+= nla_total_size(xfrm_alg_len(x
->ealg
));
3518 l
+= nla_total_size(sizeof(*x
->calg
));
3520 l
+= nla_total_size(sizeof(*x
->encap
));
3522 l
+= nla_total_size(sizeof(x
->tfcpad
));
3524 l
+= nla_total_size(xfrm_replay_state_esn_len(x
->replay_esn
));
3526 l
+= nla_total_size(sizeof(struct xfrm_replay_state
));
3528 l
+= nla_total_size(sizeof(struct xfrm_user_sec_ctx
) +
3529 x
->security
->ctx_len
);
3531 l
+= nla_total_size(sizeof(*x
->coaddr
));
3532 if (x
->props
.extra_flags
)
3533 l
+= nla_total_size(sizeof(x
->props
.extra_flags
));
3535 l
+= nla_total_size(sizeof(struct xfrm_user_offload
));
3536 if (x
->props
.smark
.v
| x
->props
.smark
.m
) {
3537 l
+= nla_total_size(sizeof(x
->props
.smark
.v
));
3538 l
+= nla_total_size(sizeof(x
->props
.smark
.m
));
3541 l
+= nla_total_size(sizeof(x
->if_id
));
3543 l
+= nla_total_size(sizeof(x
->pcpu_num
));
3545 /* Must count x->lastused as it may become non-zero behind our back. */
3546 l
+= nla_total_size_64bit(sizeof(u64
));
3548 if (x
->mapping_maxage
)
3549 l
+= nla_total_size(sizeof(x
->mapping_maxage
));
3552 l
+= nla_total_size(sizeof(x
->dir
));
3554 if (x
->nat_keepalive_interval
)
3555 l
+= nla_total_size(sizeof(x
->nat_keepalive_interval
));
3560 static int xfrm_notify_sa(struct xfrm_state
*x
, const struct km_event
*c
)
3562 struct net
*net
= xs_net(x
);
3563 struct xfrm_usersa_info
*p
;
3564 struct xfrm_usersa_id
*id
;
3565 struct nlmsghdr
*nlh
;
3566 struct sk_buff
*skb
;
3567 unsigned int len
= xfrm_sa_len(x
);
3568 unsigned int headlen
;
3571 headlen
= sizeof(*p
);
3572 if (c
->event
== XFRM_MSG_DELSA
) {
3573 len
+= nla_total_size(headlen
);
3574 headlen
= sizeof(*id
);
3575 len
+= nla_total_size(sizeof(struct xfrm_mark
));
3577 len
+= NLMSG_ALIGN(headlen
);
3579 skb
= nlmsg_new(len
, GFP_ATOMIC
);
3583 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
3588 p
= nlmsg_data(nlh
);
3589 if (c
->event
== XFRM_MSG_DELSA
) {
3590 struct nlattr
*attr
;
3592 id
= nlmsg_data(nlh
);
3593 memset(id
, 0, sizeof(*id
));
3594 memcpy(&id
->daddr
, &x
->id
.daddr
, sizeof(id
->daddr
));
3595 id
->spi
= x
->id
.spi
;
3596 id
->family
= x
->props
.family
;
3597 id
->proto
= x
->id
.proto
;
3599 attr
= nla_reserve(skb
, XFRMA_SA
, sizeof(*p
));
3606 err
= copy_to_user_state_extra(x
, p
, skb
);
3610 nlmsg_end(skb
, nlh
);
3612 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
3619 static int xfrm_send_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
3623 case XFRM_MSG_EXPIRE
:
3624 return xfrm_exp_state_notify(x
, c
);
3625 case XFRM_MSG_NEWAE
:
3626 return xfrm_aevent_state_notify(x
, c
);
3627 case XFRM_MSG_DELSA
:
3628 case XFRM_MSG_UPDSA
:
3629 case XFRM_MSG_NEWSA
:
3630 return xfrm_notify_sa(x
, c
);
3631 case XFRM_MSG_FLUSHSA
:
3632 return xfrm_notify_sa_flush(c
);
3634 printk(KERN_NOTICE
"xfrm_user: Unknown SA event %d\n",
3643 static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state
*x
,
3644 struct xfrm_policy
*xp
)
3646 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire
))
3647 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
3648 + nla_total_size(sizeof(struct xfrm_mark
))
3649 + nla_total_size(xfrm_user_sec_ctx_size(x
->security
))
3650 + nla_total_size(4) /* XFRMA_SA_PCPU */
3651 + userpolicy_type_attrsize();
3654 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
3655 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
)
3657 __u32 seq
= xfrm_get_acqseq();
3658 struct xfrm_user_acquire
*ua
;
3659 struct nlmsghdr
*nlh
;
3662 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_ACQUIRE
, sizeof(*ua
), 0);
3666 ua
= nlmsg_data(nlh
);
3667 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
3668 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
3669 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
3670 copy_to_user_policy(xp
, &ua
->policy
, XFRM_POLICY_OUT
);
3671 ua
->aalgos
= xt
->aalgos
;
3672 ua
->ealgos
= xt
->ealgos
;
3673 ua
->calgos
= xt
->calgos
;
3674 ua
->seq
= x
->km
.seq
= seq
;
3676 err
= copy_to_user_tmpl(xp
, skb
);
3678 err
= copy_to_user_state_sec_ctx(x
, skb
);
3680 err
= copy_to_user_policy_type(xp
->type
, skb
);
3682 err
= xfrm_mark_put(skb
, &xp
->mark
);
3684 err
= xfrm_if_id_put(skb
, xp
->if_id
);
3685 if (!err
&& xp
->xdo
.dev
)
3686 err
= copy_user_offload(&xp
->xdo
, skb
);
3687 if (!err
&& x
->pcpu_num
!= UINT_MAX
)
3688 err
= nla_put_u32(skb
, XFRMA_SA_PCPU
, x
->pcpu_num
);
3690 nlmsg_cancel(skb
, nlh
);
3694 nlmsg_end(skb
, nlh
);
3698 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
3699 struct xfrm_policy
*xp
)
3701 struct net
*net
= xs_net(x
);
3702 struct sk_buff
*skb
;
3705 skb
= nlmsg_new(xfrm_acquire_msgsize(x
, xp
), GFP_ATOMIC
);
3709 err
= build_acquire(skb
, x
, xt
, xp
);
3712 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_ACQUIRE
);
3715 /* User gives us xfrm_user_policy_info followed by an array of 0
3716 * or more templates.
3718 static struct xfrm_policy
*xfrm_compile_policy(struct sock
*sk
, int opt
,
3719 u8
*data
, int len
, int *dir
)
3721 struct net
*net
= sock_net(sk
);
3722 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
3723 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
3724 struct xfrm_policy
*xp
;
3727 switch (sk
->sk_family
) {
3729 if (opt
!= IP_XFRM_POLICY
) {
3734 #if IS_ENABLED(CONFIG_IPV6)
3736 if (opt
!= IPV6_XFRM_POLICY
) {
3749 if (len
< sizeof(*p
) ||
3750 verify_newpolicy_info(p
, NULL
))
3753 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
3754 if (validate_tmpl(nr
, ut
, p
->sel
.family
, p
->dir
, NULL
))
3757 if (p
->dir
> XFRM_POLICY_OUT
)
3760 xp
= xfrm_policy_alloc(net
, GFP_ATOMIC
);
3766 copy_from_user_policy(xp
, p
);
3767 xp
->type
= XFRM_POLICY_TYPE_MAIN
;
3768 copy_templates(xp
, ut
, nr
);
3775 static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy
*xp
)
3777 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire
))
3778 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
3779 + nla_total_size(xfrm_user_sec_ctx_size(xp
->security
))
3780 + nla_total_size(sizeof(struct xfrm_mark
))
3781 + userpolicy_type_attrsize();
3784 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
3785 int dir
, const struct km_event
*c
)
3787 struct xfrm_user_polexpire
*upe
;
3788 int hard
= c
->data
.hard
;
3789 struct nlmsghdr
*nlh
;
3792 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
), 0);
3796 upe
= nlmsg_data(nlh
);
3797 copy_to_user_policy(xp
, &upe
->pol
, dir
);
3798 err
= copy_to_user_tmpl(xp
, skb
);
3800 err
= copy_to_user_sec_ctx(xp
, skb
);
3802 err
= copy_to_user_policy_type(xp
->type
, skb
);
3804 err
= xfrm_mark_put(skb
, &xp
->mark
);
3806 err
= xfrm_if_id_put(skb
, xp
->if_id
);
3807 if (!err
&& xp
->xdo
.dev
)
3808 err
= copy_user_offload(&xp
->xdo
, skb
);
3810 nlmsg_cancel(skb
, nlh
);
3815 nlmsg_end(skb
, nlh
);
3819 static int xfrm_exp_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3821 struct net
*net
= xp_net(xp
);
3822 struct sk_buff
*skb
;
3825 skb
= nlmsg_new(xfrm_polexpire_msgsize(xp
), GFP_ATOMIC
);
3829 err
= build_polexpire(skb
, xp
, dir
, c
);
3832 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
3835 static int xfrm_notify_policy(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3837 unsigned int len
= nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
3838 struct net
*net
= xp_net(xp
);
3839 struct xfrm_userpolicy_info
*p
;
3840 struct xfrm_userpolicy_id
*id
;
3841 struct nlmsghdr
*nlh
;
3842 struct sk_buff
*skb
;
3843 unsigned int headlen
;
3846 headlen
= sizeof(*p
);
3847 if (c
->event
== XFRM_MSG_DELPOLICY
) {
3848 len
+= nla_total_size(headlen
);
3849 headlen
= sizeof(*id
);
3851 len
+= userpolicy_type_attrsize();
3852 len
+= nla_total_size(sizeof(struct xfrm_mark
));
3853 len
+= NLMSG_ALIGN(headlen
);
3855 skb
= nlmsg_new(len
, GFP_ATOMIC
);
3859 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
3864 p
= nlmsg_data(nlh
);
3865 if (c
->event
== XFRM_MSG_DELPOLICY
) {
3866 struct nlattr
*attr
;
3868 id
= nlmsg_data(nlh
);
3869 memset(id
, 0, sizeof(*id
));
3872 id
->index
= xp
->index
;
3874 memcpy(&id
->sel
, &xp
->selector
, sizeof(id
->sel
));
3876 attr
= nla_reserve(skb
, XFRMA_POLICY
, sizeof(*p
));
3884 copy_to_user_policy(xp
, p
, dir
);
3885 err
= copy_to_user_tmpl(xp
, skb
);
3887 err
= copy_to_user_policy_type(xp
->type
, skb
);
3889 err
= xfrm_mark_put(skb
, &xp
->mark
);
3891 err
= xfrm_if_id_put(skb
, xp
->if_id
);
3892 if (!err
&& xp
->xdo
.dev
)
3893 err
= copy_user_offload(&xp
->xdo
, skb
);
3897 nlmsg_end(skb
, nlh
);
3899 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
3906 static int xfrm_notify_policy_flush(const struct km_event
*c
)
3908 struct net
*net
= c
->net
;
3909 struct nlmsghdr
*nlh
;
3910 struct sk_buff
*skb
;
3913 skb
= nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC
);
3917 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHPOLICY
, 0, 0);
3921 err
= copy_to_user_policy_type(c
->data
.type
, skb
);
3925 nlmsg_end(skb
, nlh
);
3927 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
3934 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3938 case XFRM_MSG_NEWPOLICY
:
3939 case XFRM_MSG_UPDPOLICY
:
3940 case XFRM_MSG_DELPOLICY
:
3941 return xfrm_notify_policy(xp
, dir
, c
);
3942 case XFRM_MSG_FLUSHPOLICY
:
3943 return xfrm_notify_policy_flush(c
);
3944 case XFRM_MSG_POLEXPIRE
:
3945 return xfrm_exp_policy_notify(xp
, dir
, c
);
3947 printk(KERN_NOTICE
"xfrm_user: Unknown Policy event %d\n",
3955 static inline unsigned int xfrm_report_msgsize(void)
3957 return NLMSG_ALIGN(sizeof(struct xfrm_user_report
));
3960 static int build_report(struct sk_buff
*skb
, u8 proto
,
3961 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3963 struct xfrm_user_report
*ur
;
3964 struct nlmsghdr
*nlh
;
3966 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_REPORT
, sizeof(*ur
), 0);
3970 ur
= nlmsg_data(nlh
);
3972 memcpy(&ur
->sel
, sel
, sizeof(ur
->sel
));
3975 int err
= nla_put(skb
, XFRMA_COADDR
, sizeof(*addr
), addr
);
3977 nlmsg_cancel(skb
, nlh
);
3981 nlmsg_end(skb
, nlh
);
3985 static int xfrm_send_report(struct net
*net
, u8 proto
,
3986 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3988 struct sk_buff
*skb
;
3991 skb
= nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC
);
3995 err
= build_report(skb
, proto
, sel
, addr
);
3998 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_REPORT
);
4001 static inline unsigned int xfrm_mapping_msgsize(void)
4003 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping
));
4006 static int build_mapping(struct sk_buff
*skb
, struct xfrm_state
*x
,
4007 xfrm_address_t
*new_saddr
, __be16 new_sport
)
4009 struct xfrm_user_mapping
*um
;
4010 struct nlmsghdr
*nlh
;
4012 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MAPPING
, sizeof(*um
), 0);
4016 um
= nlmsg_data(nlh
);
4018 memcpy(&um
->id
.daddr
, &x
->id
.daddr
, sizeof(um
->id
.daddr
));
4019 um
->id
.spi
= x
->id
.spi
;
4020 um
->id
.family
= x
->props
.family
;
4021 um
->id
.proto
= x
->id
.proto
;
4022 memcpy(&um
->new_saddr
, new_saddr
, sizeof(um
->new_saddr
));
4023 memcpy(&um
->old_saddr
, &x
->props
.saddr
, sizeof(um
->old_saddr
));
4024 um
->new_sport
= new_sport
;
4025 um
->old_sport
= x
->encap
->encap_sport
;
4026 um
->reqid
= x
->props
.reqid
;
4028 nlmsg_end(skb
, nlh
);
4032 static int xfrm_send_mapping(struct xfrm_state
*x
, xfrm_address_t
*ipaddr
,
4035 struct net
*net
= xs_net(x
);
4036 struct sk_buff
*skb
;
4039 if (x
->id
.proto
!= IPPROTO_ESP
)
4045 skb
= nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC
);
4049 err
= build_mapping(skb
, x
, ipaddr
, sport
);
4052 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MAPPING
);
4055 static bool xfrm_is_alive(const struct km_event
*c
)
4057 return (bool)xfrm_acquire_is_on(c
->net
);
4060 static struct xfrm_mgr netlink_mgr
= {
4061 .notify
= xfrm_send_state_notify
,
4062 .acquire
= xfrm_send_acquire
,
4063 .compile_policy
= xfrm_compile_policy
,
4064 .notify_policy
= xfrm_send_policy_notify
,
4065 .report
= xfrm_send_report
,
4066 .migrate
= xfrm_send_migrate
,
4067 .new_mapping
= xfrm_send_mapping
,
4068 .is_alive
= xfrm_is_alive
,
4071 static int __net_init
xfrm_user_net_init(struct net
*net
)
4074 struct netlink_kernel_cfg cfg
= {
4075 .groups
= XFRMNLGRP_MAX
,
4076 .input
= xfrm_netlink_rcv
,
4079 nlsk
= netlink_kernel_create(net
, NETLINK_XFRM
, &cfg
);
4082 net
->xfrm
.nlsk_stash
= nlsk
; /* Don't set to NULL */
4083 rcu_assign_pointer(net
->xfrm
.nlsk
, nlsk
);
4087 static void __net_exit
xfrm_user_net_pre_exit(struct net
*net
)
4089 RCU_INIT_POINTER(net
->xfrm
.nlsk
, NULL
);
4092 static void __net_exit
xfrm_user_net_exit(struct list_head
*net_exit_list
)
4096 list_for_each_entry(net
, net_exit_list
, exit_list
)
4097 netlink_kernel_release(net
->xfrm
.nlsk_stash
);
4100 static struct pernet_operations xfrm_user_net_ops
= {
4101 .init
= xfrm_user_net_init
,
4102 .pre_exit
= xfrm_user_net_pre_exit
,
4103 .exit_batch
= xfrm_user_net_exit
,
4106 static int __init
xfrm_user_init(void)
4110 printk(KERN_INFO
"Initializing XFRM netlink socket\n");
4112 rv
= register_pernet_subsys(&xfrm_user_net_ops
);
4115 xfrm_register_km(&netlink_mgr
);
4119 static void __exit
xfrm_user_exit(void)
4121 xfrm_unregister_km(&netlink_mgr
);
4122 unregister_pernet_subsys(&xfrm_user_net_ops
);
4125 module_init(xfrm_user_init
);
4126 module_exit(xfrm_user_exit
);
4127 MODULE_DESCRIPTION("XFRM User interface");
4128 MODULE_LICENSE("GPL");
4129 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_XFRM
);