1 /* xfrm_user.c: User interface to configure xfrm engine.
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
13 #include <linux/crypto.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/slab.h>
18 #include <linux/socket.h>
19 #include <linux/string.h>
20 #include <linux/net.h>
21 #include <linux/skbuff.h>
22 #include <linux/pfkeyv2.h>
23 #include <linux/ipsec.h>
24 #include <linux/init.h>
25 #include <linux/security.h>
28 #include <net/netlink.h>
30 #include <linux/uaccess.h>
31 #if IS_ENABLED(CONFIG_IPV6)
32 #include <linux/in6.h>
34 #include <asm/unaligned.h>
36 static int verify_one_alg(struct nlattr
**attrs
, enum xfrm_attr_type_t type
)
38 struct nlattr
*rt
= attrs
[type
];
39 struct xfrm_algo
*algp
;
45 if (nla_len(rt
) < (int)xfrm_alg_len(algp
))
58 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
62 static int verify_auth_trunc(struct nlattr
**attrs
)
64 struct nlattr
*rt
= attrs
[XFRMA_ALG_AUTH_TRUNC
];
65 struct xfrm_algo_auth
*algp
;
71 if (nla_len(rt
) < (int)xfrm_alg_auth_len(algp
))
74 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
78 static int verify_aead(struct nlattr
**attrs
)
80 struct nlattr
*rt
= attrs
[XFRMA_ALG_AEAD
];
81 struct xfrm_algo_aead
*algp
;
87 if (nla_len(rt
) < (int)aead_len(algp
))
90 algp
->alg_name
[sizeof(algp
->alg_name
) - 1] = '\0';
94 static void verify_one_addr(struct nlattr
**attrs
, enum xfrm_attr_type_t type
,
95 xfrm_address_t
**addrp
)
97 struct nlattr
*rt
= attrs
[type
];
100 *addrp
= nla_data(rt
);
103 static inline int verify_sec_ctx_len(struct nlattr
**attrs
)
105 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
106 struct xfrm_user_sec_ctx
*uctx
;
112 if (uctx
->len
!= (sizeof(struct xfrm_user_sec_ctx
) + uctx
->ctx_len
))
118 static inline int verify_replay(struct xfrm_usersa_info
*p
,
119 struct nlattr
**attrs
)
121 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_ESN_VAL
];
122 struct xfrm_replay_state_esn
*rs
;
125 return (p
->flags
& XFRM_STATE_ESN
) ? -EINVAL
: 0;
129 if (rs
->bmp_len
> XFRMA_REPLAY_ESN_MAX
/ sizeof(rs
->bmp
[0]) / 8)
132 if (nla_len(rt
) < (int)xfrm_replay_state_esn_len(rs
) &&
133 nla_len(rt
) != sizeof(*rs
))
136 /* As only ESP and AH support ESN feature. */
137 if ((p
->id
.proto
!= IPPROTO_ESP
) && (p
->id
.proto
!= IPPROTO_AH
))
140 if (p
->replay_window
!= 0)
146 static int verify_newsa_info(struct xfrm_usersa_info
*p
,
147 struct nlattr
**attrs
)
157 #if IS_ENABLED(CONFIG_IPV6)
169 switch (p
->id
.proto
) {
171 if ((!attrs
[XFRMA_ALG_AUTH
] &&
172 !attrs
[XFRMA_ALG_AUTH_TRUNC
]) ||
173 attrs
[XFRMA_ALG_AEAD
] ||
174 attrs
[XFRMA_ALG_CRYPT
] ||
175 attrs
[XFRMA_ALG_COMP
] ||
181 if (attrs
[XFRMA_ALG_COMP
])
183 if (!attrs
[XFRMA_ALG_AUTH
] &&
184 !attrs
[XFRMA_ALG_AUTH_TRUNC
] &&
185 !attrs
[XFRMA_ALG_CRYPT
] &&
186 !attrs
[XFRMA_ALG_AEAD
])
188 if ((attrs
[XFRMA_ALG_AUTH
] ||
189 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
190 attrs
[XFRMA_ALG_CRYPT
]) &&
191 attrs
[XFRMA_ALG_AEAD
])
193 if (attrs
[XFRMA_TFCPAD
] &&
194 p
->mode
!= XFRM_MODE_TUNNEL
)
199 if (!attrs
[XFRMA_ALG_COMP
] ||
200 attrs
[XFRMA_ALG_AEAD
] ||
201 attrs
[XFRMA_ALG_AUTH
] ||
202 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
203 attrs
[XFRMA_ALG_CRYPT
] ||
204 attrs
[XFRMA_TFCPAD
] ||
205 (ntohl(p
->id
.spi
) >= 0x10000))
209 #if IS_ENABLED(CONFIG_IPV6)
210 case IPPROTO_DSTOPTS
:
211 case IPPROTO_ROUTING
:
212 if (attrs
[XFRMA_ALG_COMP
] ||
213 attrs
[XFRMA_ALG_AUTH
] ||
214 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
215 attrs
[XFRMA_ALG_AEAD
] ||
216 attrs
[XFRMA_ALG_CRYPT
] ||
217 attrs
[XFRMA_ENCAP
] ||
218 attrs
[XFRMA_SEC_CTX
] ||
219 attrs
[XFRMA_TFCPAD
] ||
220 !attrs
[XFRMA_COADDR
])
229 if ((err
= verify_aead(attrs
)))
231 if ((err
= verify_auth_trunc(attrs
)))
233 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_AUTH
)))
235 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_CRYPT
)))
237 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_COMP
)))
239 if ((err
= verify_sec_ctx_len(attrs
)))
241 if ((err
= verify_replay(p
, attrs
)))
246 case XFRM_MODE_TRANSPORT
:
247 case XFRM_MODE_TUNNEL
:
248 case XFRM_MODE_ROUTEOPTIMIZATION
:
262 static int attach_one_algo(struct xfrm_algo
**algpp
, u8
*props
,
263 struct xfrm_algo_desc
*(*get_byname
)(const char *, int),
266 struct xfrm_algo
*p
, *ualg
;
267 struct xfrm_algo_desc
*algo
;
272 ualg
= nla_data(rta
);
274 algo
= get_byname(ualg
->alg_name
, 1);
277 *props
= algo
->desc
.sadb_alg_id
;
279 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
283 strcpy(p
->alg_name
, algo
->name
);
288 static int attach_crypt(struct xfrm_state
*x
, struct nlattr
*rta
)
290 struct xfrm_algo
*p
, *ualg
;
291 struct xfrm_algo_desc
*algo
;
296 ualg
= nla_data(rta
);
298 algo
= xfrm_ealg_get_byname(ualg
->alg_name
, 1);
301 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
303 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
307 strcpy(p
->alg_name
, algo
->name
);
309 x
->geniv
= algo
->uinfo
.encr
.geniv
;
313 static int attach_auth(struct xfrm_algo_auth
**algpp
, u8
*props
,
316 struct xfrm_algo
*ualg
;
317 struct xfrm_algo_auth
*p
;
318 struct xfrm_algo_desc
*algo
;
323 ualg
= nla_data(rta
);
325 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
328 *props
= algo
->desc
.sadb_alg_id
;
330 p
= kmalloc(sizeof(*p
) + (ualg
->alg_key_len
+ 7) / 8, GFP_KERNEL
);
334 strcpy(p
->alg_name
, algo
->name
);
335 p
->alg_key_len
= ualg
->alg_key_len
;
336 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
337 memcpy(p
->alg_key
, ualg
->alg_key
, (ualg
->alg_key_len
+ 7) / 8);
343 static int attach_auth_trunc(struct xfrm_algo_auth
**algpp
, u8
*props
,
346 struct xfrm_algo_auth
*p
, *ualg
;
347 struct xfrm_algo_desc
*algo
;
352 ualg
= nla_data(rta
);
354 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
357 if (ualg
->alg_trunc_len
> algo
->uinfo
.auth
.icv_fullbits
)
359 *props
= algo
->desc
.sadb_alg_id
;
361 p
= kmemdup(ualg
, xfrm_alg_auth_len(ualg
), GFP_KERNEL
);
365 strcpy(p
->alg_name
, algo
->name
);
366 if (!p
->alg_trunc_len
)
367 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
373 static int attach_aead(struct xfrm_state
*x
, struct nlattr
*rta
)
375 struct xfrm_algo_aead
*p
, *ualg
;
376 struct xfrm_algo_desc
*algo
;
381 ualg
= nla_data(rta
);
383 algo
= xfrm_aead_get_byname(ualg
->alg_name
, ualg
->alg_icv_len
, 1);
386 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
388 p
= kmemdup(ualg
, aead_len(ualg
), GFP_KERNEL
);
392 strcpy(p
->alg_name
, algo
->name
);
394 x
->geniv
= algo
->uinfo
.aead
.geniv
;
398 static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn
*replay_esn
,
401 struct xfrm_replay_state_esn
*up
;
404 if (!replay_esn
|| !rp
)
408 ulen
= xfrm_replay_state_esn_len(up
);
410 /* Check the overall length and the internal bitmap length to avoid
411 * potential overflow. */
412 if (nla_len(rp
) < (int)ulen
||
413 xfrm_replay_state_esn_len(replay_esn
) != ulen
||
414 replay_esn
->bmp_len
!= up
->bmp_len
)
417 if (up
->replay_window
> up
->bmp_len
* sizeof(__u32
) * 8)
423 static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn
**replay_esn
,
424 struct xfrm_replay_state_esn
**preplay_esn
,
427 struct xfrm_replay_state_esn
*p
, *pp
, *up
;
428 unsigned int klen
, ulen
;
434 klen
= xfrm_replay_state_esn_len(up
);
435 ulen
= nla_len(rta
) >= (int)klen
? klen
: sizeof(*up
);
437 p
= kzalloc(klen
, GFP_KERNEL
);
441 pp
= kzalloc(klen
, GFP_KERNEL
);
448 memcpy(pp
, up
, ulen
);
456 static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx
*xfrm_ctx
)
458 unsigned int len
= 0;
461 len
+= sizeof(struct xfrm_user_sec_ctx
);
462 len
+= xfrm_ctx
->ctx_len
;
467 static void copy_from_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
469 memcpy(&x
->id
, &p
->id
, sizeof(x
->id
));
470 memcpy(&x
->sel
, &p
->sel
, sizeof(x
->sel
));
471 memcpy(&x
->lft
, &p
->lft
, sizeof(x
->lft
));
472 x
->props
.mode
= p
->mode
;
473 x
->props
.replay_window
= min_t(unsigned int, p
->replay_window
,
474 sizeof(x
->replay
.bitmap
) * 8);
475 x
->props
.reqid
= p
->reqid
;
476 x
->props
.family
= p
->family
;
477 memcpy(&x
->props
.saddr
, &p
->saddr
, sizeof(x
->props
.saddr
));
478 x
->props
.flags
= p
->flags
;
480 if (!x
->sel
.family
&& !(p
->flags
& XFRM_STATE_AF_UNSPEC
))
481 x
->sel
.family
= p
->family
;
485 * someday when pfkey also has support, we could have the code
486 * somehow made shareable and move it to xfrm_state.c - JHS
489 static void xfrm_update_ae_params(struct xfrm_state
*x
, struct nlattr
**attrs
,
492 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
493 struct nlattr
*re
= update_esn
? attrs
[XFRMA_REPLAY_ESN_VAL
] : NULL
;
494 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
495 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
496 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
499 struct xfrm_replay_state_esn
*replay_esn
;
500 replay_esn
= nla_data(re
);
501 memcpy(x
->replay_esn
, replay_esn
,
502 xfrm_replay_state_esn_len(replay_esn
));
503 memcpy(x
->preplay_esn
, replay_esn
,
504 xfrm_replay_state_esn_len(replay_esn
));
508 struct xfrm_replay_state
*replay
;
509 replay
= nla_data(rp
);
510 memcpy(&x
->replay
, replay
, sizeof(*replay
));
511 memcpy(&x
->preplay
, replay
, sizeof(*replay
));
515 struct xfrm_lifetime_cur
*ltime
;
516 ltime
= nla_data(lt
);
517 x
->curlft
.bytes
= ltime
->bytes
;
518 x
->curlft
.packets
= ltime
->packets
;
519 x
->curlft
.add_time
= ltime
->add_time
;
520 x
->curlft
.use_time
= ltime
->use_time
;
524 x
->replay_maxage
= nla_get_u32(et
);
527 x
->replay_maxdiff
= nla_get_u32(rt
);
530 static struct xfrm_state
*xfrm_state_construct(struct net
*net
,
531 struct xfrm_usersa_info
*p
,
532 struct nlattr
**attrs
,
535 struct xfrm_state
*x
= xfrm_state_alloc(net
);
541 copy_from_user_state(x
, p
);
543 if (attrs
[XFRMA_SA_EXTRA_FLAGS
])
544 x
->props
.extra_flags
= nla_get_u32(attrs
[XFRMA_SA_EXTRA_FLAGS
]);
546 if ((err
= attach_aead(x
, attrs
[XFRMA_ALG_AEAD
])))
548 if ((err
= attach_auth_trunc(&x
->aalg
, &x
->props
.aalgo
,
549 attrs
[XFRMA_ALG_AUTH_TRUNC
])))
551 if (!x
->props
.aalgo
) {
552 if ((err
= attach_auth(&x
->aalg
, &x
->props
.aalgo
,
553 attrs
[XFRMA_ALG_AUTH
])))
556 if ((err
= attach_crypt(x
, attrs
[XFRMA_ALG_CRYPT
])))
558 if ((err
= attach_one_algo(&x
->calg
, &x
->props
.calgo
,
559 xfrm_calg_get_byname
,
560 attrs
[XFRMA_ALG_COMP
])))
563 if (attrs
[XFRMA_ENCAP
]) {
564 x
->encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
565 sizeof(*x
->encap
), GFP_KERNEL
);
566 if (x
->encap
== NULL
)
570 if (attrs
[XFRMA_TFCPAD
])
571 x
->tfcpad
= nla_get_u32(attrs
[XFRMA_TFCPAD
]);
573 if (attrs
[XFRMA_COADDR
]) {
574 x
->coaddr
= kmemdup(nla_data(attrs
[XFRMA_COADDR
]),
575 sizeof(*x
->coaddr
), GFP_KERNEL
);
576 if (x
->coaddr
== NULL
)
580 xfrm_mark_get(attrs
, &x
->mark
);
582 if (attrs
[XFRMA_OUTPUT_MARK
])
583 x
->props
.output_mark
= nla_get_u32(attrs
[XFRMA_OUTPUT_MARK
]);
585 err
= __xfrm_init_state(x
, false, attrs
[XFRMA_OFFLOAD_DEV
]);
589 if (attrs
[XFRMA_SEC_CTX
]) {
590 err
= security_xfrm_state_alloc(x
,
591 nla_data(attrs
[XFRMA_SEC_CTX
]));
596 if ((err
= xfrm_alloc_replay_state_esn(&x
->replay_esn
, &x
->preplay_esn
,
597 attrs
[XFRMA_REPLAY_ESN_VAL
])))
601 x
->replay_maxdiff
= net
->xfrm
.sysctl_aevent_rseqth
;
602 /* sysctl_xfrm_aevent_etime is in 100ms units */
603 x
->replay_maxage
= (net
->xfrm
.sysctl_aevent_etime
*HZ
)/XFRM_AE_ETH_M
;
605 if ((err
= xfrm_init_replay(x
)))
608 /* override default values from above */
609 xfrm_update_ae_params(x
, attrs
, 0);
611 /* configure the hardware if offload is requested */
612 if (attrs
[XFRMA_OFFLOAD_DEV
]) {
613 err
= xfrm_dev_state_add(net
, x
,
614 nla_data(attrs
[XFRMA_OFFLOAD_DEV
]));
622 x
->km
.state
= XFRM_STATE_DEAD
;
629 static int xfrm_add_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
630 struct nlattr
**attrs
)
632 struct net
*net
= sock_net(skb
->sk
);
633 struct xfrm_usersa_info
*p
= nlmsg_data(nlh
);
634 struct xfrm_state
*x
;
638 err
= verify_newsa_info(p
, attrs
);
642 x
= xfrm_state_construct(net
, p
, attrs
, &err
);
647 if (nlh
->nlmsg_type
== XFRM_MSG_NEWSA
)
648 err
= xfrm_state_add(x
);
650 err
= xfrm_state_update(x
);
652 xfrm_audit_state_add(x
, err
? 0 : 1, true);
655 x
->km
.state
= XFRM_STATE_DEAD
;
656 xfrm_dev_state_delete(x
);
661 if (x
->km
.state
== XFRM_STATE_VOID
)
662 x
->km
.state
= XFRM_STATE_VALID
;
664 c
.seq
= nlh
->nlmsg_seq
;
665 c
.portid
= nlh
->nlmsg_pid
;
666 c
.event
= nlh
->nlmsg_type
;
668 km_state_notify(x
, &c
);
674 static struct xfrm_state
*xfrm_user_state_lookup(struct net
*net
,
675 struct xfrm_usersa_id
*p
,
676 struct nlattr
**attrs
,
679 struct xfrm_state
*x
= NULL
;
682 u32 mark
= xfrm_mark_get(attrs
, &m
);
684 if (xfrm_id_proto_match(p
->proto
, IPSEC_PROTO_ANY
)) {
686 x
= xfrm_state_lookup(net
, mark
, &p
->daddr
, p
->spi
, p
->proto
, p
->family
);
688 xfrm_address_t
*saddr
= NULL
;
690 verify_one_addr(attrs
, XFRMA_SRCADDR
, &saddr
);
697 x
= xfrm_state_lookup_byaddr(net
, mark
,
699 p
->proto
, p
->family
);
708 static int xfrm_del_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
709 struct nlattr
**attrs
)
711 struct net
*net
= sock_net(skb
->sk
);
712 struct xfrm_state
*x
;
715 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
717 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
721 if ((err
= security_xfrm_state_delete(x
)) != 0)
724 if (xfrm_state_kern(x
)) {
729 err
= xfrm_state_delete(x
);
734 c
.seq
= nlh
->nlmsg_seq
;
735 c
.portid
= nlh
->nlmsg_pid
;
736 c
.event
= nlh
->nlmsg_type
;
737 km_state_notify(x
, &c
);
740 xfrm_audit_state_delete(x
, err
? 0 : 1, true);
745 static void copy_to_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
747 memset(p
, 0, sizeof(*p
));
748 memcpy(&p
->id
, &x
->id
, sizeof(p
->id
));
749 memcpy(&p
->sel
, &x
->sel
, sizeof(p
->sel
));
750 memcpy(&p
->lft
, &x
->lft
, sizeof(p
->lft
));
751 memcpy(&p
->curlft
, &x
->curlft
, sizeof(p
->curlft
));
752 put_unaligned(x
->stats
.replay_window
, &p
->stats
.replay_window
);
753 put_unaligned(x
->stats
.replay
, &p
->stats
.replay
);
754 put_unaligned(x
->stats
.integrity_failed
, &p
->stats
.integrity_failed
);
755 memcpy(&p
->saddr
, &x
->props
.saddr
, sizeof(p
->saddr
));
756 p
->mode
= x
->props
.mode
;
757 p
->replay_window
= x
->props
.replay_window
;
758 p
->reqid
= x
->props
.reqid
;
759 p
->family
= x
->props
.family
;
760 p
->flags
= x
->props
.flags
;
764 struct xfrm_dump_info
{
765 struct sk_buff
*in_skb
;
766 struct sk_buff
*out_skb
;
771 static int copy_sec_ctx(struct xfrm_sec_ctx
*s
, struct sk_buff
*skb
)
773 struct xfrm_user_sec_ctx
*uctx
;
775 int ctx_size
= sizeof(*uctx
) + s
->ctx_len
;
777 attr
= nla_reserve(skb
, XFRMA_SEC_CTX
, ctx_size
);
781 uctx
= nla_data(attr
);
782 uctx
->exttype
= XFRMA_SEC_CTX
;
783 uctx
->len
= ctx_size
;
784 uctx
->ctx_doi
= s
->ctx_doi
;
785 uctx
->ctx_alg
= s
->ctx_alg
;
786 uctx
->ctx_len
= s
->ctx_len
;
787 memcpy(uctx
+ 1, s
->ctx_str
, s
->ctx_len
);
792 static int copy_user_offload(struct xfrm_state_offload
*xso
, struct sk_buff
*skb
)
794 struct xfrm_user_offload
*xuo
;
797 attr
= nla_reserve(skb
, XFRMA_OFFLOAD_DEV
, sizeof(*xuo
));
801 xuo
= nla_data(attr
);
802 memset(xuo
, 0, sizeof(*xuo
));
803 xuo
->ifindex
= xso
->dev
->ifindex
;
804 xuo
->flags
= xso
->flags
;
809 static int copy_to_user_auth(struct xfrm_algo_auth
*auth
, struct sk_buff
*skb
)
811 struct xfrm_algo
*algo
;
814 nla
= nla_reserve(skb
, XFRMA_ALG_AUTH
,
815 sizeof(*algo
) + (auth
->alg_key_len
+ 7) / 8);
819 algo
= nla_data(nla
);
820 strncpy(algo
->alg_name
, auth
->alg_name
, sizeof(algo
->alg_name
));
821 memcpy(algo
->alg_key
, auth
->alg_key
, (auth
->alg_key_len
+ 7) / 8);
822 algo
->alg_key_len
= auth
->alg_key_len
;
827 /* Don't change this without updating xfrm_sa_len! */
828 static int copy_to_user_state_extra(struct xfrm_state
*x
,
829 struct xfrm_usersa_info
*p
,
834 copy_to_user_state(x
, p
);
836 if (x
->props
.extra_flags
) {
837 ret
= nla_put_u32(skb
, XFRMA_SA_EXTRA_FLAGS
,
838 x
->props
.extra_flags
);
844 ret
= nla_put(skb
, XFRMA_COADDR
, sizeof(*x
->coaddr
), x
->coaddr
);
849 ret
= nla_put_u64_64bit(skb
, XFRMA_LASTUSED
, x
->lastused
,
855 ret
= nla_put(skb
, XFRMA_ALG_AEAD
, aead_len(x
->aead
), x
->aead
);
860 ret
= copy_to_user_auth(x
->aalg
, skb
);
862 ret
= nla_put(skb
, XFRMA_ALG_AUTH_TRUNC
,
863 xfrm_alg_auth_len(x
->aalg
), x
->aalg
);
868 ret
= nla_put(skb
, XFRMA_ALG_CRYPT
, xfrm_alg_len(x
->ealg
), x
->ealg
);
873 ret
= nla_put(skb
, XFRMA_ALG_COMP
, sizeof(*(x
->calg
)), x
->calg
);
878 ret
= nla_put(skb
, XFRMA_ENCAP
, sizeof(*x
->encap
), x
->encap
);
883 ret
= nla_put_u32(skb
, XFRMA_TFCPAD
, x
->tfcpad
);
887 ret
= xfrm_mark_put(skb
, &x
->mark
);
891 ret
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
892 xfrm_replay_state_esn_len(x
->replay_esn
),
895 ret
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
900 ret
= copy_user_offload(&x
->xso
, skb
);
903 if (x
->props
.output_mark
) {
904 ret
= nla_put_u32(skb
, XFRMA_OUTPUT_MARK
, x
->props
.output_mark
);
909 ret
= copy_sec_ctx(x
->security
, skb
);
914 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
916 struct xfrm_dump_info
*sp
= ptr
;
917 struct sk_buff
*in_skb
= sp
->in_skb
;
918 struct sk_buff
*skb
= sp
->out_skb
;
919 struct xfrm_usersa_info
*p
;
920 struct nlmsghdr
*nlh
;
923 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
924 XFRM_MSG_NEWSA
, sizeof(*p
), sp
->nlmsg_flags
);
930 err
= copy_to_user_state_extra(x
, p
, skb
);
932 nlmsg_cancel(skb
, nlh
);
939 static int xfrm_dump_sa_done(struct netlink_callback
*cb
)
941 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
942 struct sock
*sk
= cb
->skb
->sk
;
943 struct net
*net
= sock_net(sk
);
946 xfrm_state_walk_done(walk
, net
);
950 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1];
951 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
953 struct net
*net
= sock_net(skb
->sk
);
954 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
955 struct xfrm_dump_info info
;
957 BUILD_BUG_ON(sizeof(struct xfrm_state_walk
) >
958 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
960 info
.in_skb
= cb
->skb
;
962 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
963 info
.nlmsg_flags
= NLM_F_MULTI
;
966 struct nlattr
*attrs
[XFRMA_MAX
+1];
967 struct xfrm_address_filter
*filter
= NULL
;
971 err
= nlmsg_parse(cb
->nlh
, 0, attrs
, XFRMA_MAX
, xfrma_policy
,
976 if (attrs
[XFRMA_ADDRESS_FILTER
]) {
977 filter
= kmemdup(nla_data(attrs
[XFRMA_ADDRESS_FILTER
]),
978 sizeof(*filter
), GFP_KERNEL
);
983 if (attrs
[XFRMA_PROTO
])
984 proto
= nla_get_u8(attrs
[XFRMA_PROTO
]);
986 xfrm_state_walk_init(walk
, proto
, filter
);
990 (void) xfrm_state_walk(net
, walk
, dump_one_state
, &info
);
995 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
996 struct xfrm_state
*x
, u32 seq
)
998 struct xfrm_dump_info info
;
1002 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
1004 return ERR_PTR(-ENOMEM
);
1006 info
.in_skb
= in_skb
;
1008 info
.nlmsg_seq
= seq
;
1009 info
.nlmsg_flags
= 0;
1011 err
= dump_one_state(x
, 0, &info
);
1014 return ERR_PTR(err
);
1020 /* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1021 * Must be called with RCU read lock.
1023 static inline int xfrm_nlmsg_multicast(struct net
*net
, struct sk_buff
*skb
,
1024 u32 pid
, unsigned int group
)
1026 struct sock
*nlsk
= rcu_dereference(net
->xfrm
.nlsk
);
1029 return nlmsg_multicast(nlsk
, skb
, pid
, group
, GFP_ATOMIC
);
1034 static inline unsigned int xfrm_spdinfo_msgsize(void)
1036 return NLMSG_ALIGN(4)
1037 + nla_total_size(sizeof(struct xfrmu_spdinfo
))
1038 + nla_total_size(sizeof(struct xfrmu_spdhinfo
))
1039 + nla_total_size(sizeof(struct xfrmu_spdhthresh
))
1040 + nla_total_size(sizeof(struct xfrmu_spdhthresh
));
1043 static int build_spdinfo(struct sk_buff
*skb
, struct net
*net
,
1044 u32 portid
, u32 seq
, u32 flags
)
1046 struct xfrmk_spdinfo si
;
1047 struct xfrmu_spdinfo spc
;
1048 struct xfrmu_spdhinfo sph
;
1049 struct xfrmu_spdhthresh spt4
, spt6
;
1050 struct nlmsghdr
*nlh
;
1055 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSPDINFO
, sizeof(u32
), 0);
1056 if (nlh
== NULL
) /* shouldn't really happen ... */
1059 f
= nlmsg_data(nlh
);
1061 xfrm_spd_getinfo(net
, &si
);
1062 spc
.incnt
= si
.incnt
;
1063 spc
.outcnt
= si
.outcnt
;
1064 spc
.fwdcnt
= si
.fwdcnt
;
1065 spc
.inscnt
= si
.inscnt
;
1066 spc
.outscnt
= si
.outscnt
;
1067 spc
.fwdscnt
= si
.fwdscnt
;
1068 sph
.spdhcnt
= si
.spdhcnt
;
1069 sph
.spdhmcnt
= si
.spdhmcnt
;
1072 lseq
= read_seqbegin(&net
->xfrm
.policy_hthresh
.lock
);
1074 spt4
.lbits
= net
->xfrm
.policy_hthresh
.lbits4
;
1075 spt4
.rbits
= net
->xfrm
.policy_hthresh
.rbits4
;
1076 spt6
.lbits
= net
->xfrm
.policy_hthresh
.lbits6
;
1077 spt6
.rbits
= net
->xfrm
.policy_hthresh
.rbits6
;
1078 } while (read_seqretry(&net
->xfrm
.policy_hthresh
.lock
, lseq
));
1080 err
= nla_put(skb
, XFRMA_SPD_INFO
, sizeof(spc
), &spc
);
1082 err
= nla_put(skb
, XFRMA_SPD_HINFO
, sizeof(sph
), &sph
);
1084 err
= nla_put(skb
, XFRMA_SPD_IPV4_HTHRESH
, sizeof(spt4
), &spt4
);
1086 err
= nla_put(skb
, XFRMA_SPD_IPV6_HTHRESH
, sizeof(spt6
), &spt6
);
1088 nlmsg_cancel(skb
, nlh
);
1092 nlmsg_end(skb
, nlh
);
1096 static int xfrm_set_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1097 struct nlattr
**attrs
)
1099 struct net
*net
= sock_net(skb
->sk
);
1100 struct xfrmu_spdhthresh
*thresh4
= NULL
;
1101 struct xfrmu_spdhthresh
*thresh6
= NULL
;
1103 /* selector prefixlen thresholds to hash policies */
1104 if (attrs
[XFRMA_SPD_IPV4_HTHRESH
]) {
1105 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV4_HTHRESH
];
1107 if (nla_len(rta
) < sizeof(*thresh4
))
1109 thresh4
= nla_data(rta
);
1110 if (thresh4
->lbits
> 32 || thresh4
->rbits
> 32)
1113 if (attrs
[XFRMA_SPD_IPV6_HTHRESH
]) {
1114 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV6_HTHRESH
];
1116 if (nla_len(rta
) < sizeof(*thresh6
))
1118 thresh6
= nla_data(rta
);
1119 if (thresh6
->lbits
> 128 || thresh6
->rbits
> 128)
1123 if (thresh4
|| thresh6
) {
1124 write_seqlock(&net
->xfrm
.policy_hthresh
.lock
);
1126 net
->xfrm
.policy_hthresh
.lbits4
= thresh4
->lbits
;
1127 net
->xfrm
.policy_hthresh
.rbits4
= thresh4
->rbits
;
1130 net
->xfrm
.policy_hthresh
.lbits6
= thresh6
->lbits
;
1131 net
->xfrm
.policy_hthresh
.rbits6
= thresh6
->rbits
;
1133 write_sequnlock(&net
->xfrm
.policy_hthresh
.lock
);
1135 xfrm_policy_hash_rebuild(net
);
1141 static int xfrm_get_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1142 struct nlattr
**attrs
)
1144 struct net
*net
= sock_net(skb
->sk
);
1145 struct sk_buff
*r_skb
;
1146 u32
*flags
= nlmsg_data(nlh
);
1147 u32 sportid
= NETLINK_CB(skb
).portid
;
1148 u32 seq
= nlh
->nlmsg_seq
;
1151 r_skb
= nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC
);
1155 err
= build_spdinfo(r_skb
, net
, sportid
, seq
, *flags
);
1158 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1161 static inline unsigned int xfrm_sadinfo_msgsize(void)
1163 return NLMSG_ALIGN(4)
1164 + nla_total_size(sizeof(struct xfrmu_sadhinfo
))
1165 + nla_total_size(4); /* XFRMA_SAD_CNT */
1168 static int build_sadinfo(struct sk_buff
*skb
, struct net
*net
,
1169 u32 portid
, u32 seq
, u32 flags
)
1171 struct xfrmk_sadinfo si
;
1172 struct xfrmu_sadhinfo sh
;
1173 struct nlmsghdr
*nlh
;
1177 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSADINFO
, sizeof(u32
), 0);
1178 if (nlh
== NULL
) /* shouldn't really happen ... */
1181 f
= nlmsg_data(nlh
);
1183 xfrm_sad_getinfo(net
, &si
);
1185 sh
.sadhmcnt
= si
.sadhmcnt
;
1186 sh
.sadhcnt
= si
.sadhcnt
;
1188 err
= nla_put_u32(skb
, XFRMA_SAD_CNT
, si
.sadcnt
);
1190 err
= nla_put(skb
, XFRMA_SAD_HINFO
, sizeof(sh
), &sh
);
1192 nlmsg_cancel(skb
, nlh
);
1196 nlmsg_end(skb
, nlh
);
1200 static int xfrm_get_sadinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1201 struct nlattr
**attrs
)
1203 struct net
*net
= sock_net(skb
->sk
);
1204 struct sk_buff
*r_skb
;
1205 u32
*flags
= nlmsg_data(nlh
);
1206 u32 sportid
= NETLINK_CB(skb
).portid
;
1207 u32 seq
= nlh
->nlmsg_seq
;
1210 r_skb
= nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC
);
1214 err
= build_sadinfo(r_skb
, net
, sportid
, seq
, *flags
);
1217 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1220 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1221 struct nlattr
**attrs
)
1223 struct net
*net
= sock_net(skb
->sk
);
1224 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
1225 struct xfrm_state
*x
;
1226 struct sk_buff
*resp_skb
;
1229 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
1233 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1234 if (IS_ERR(resp_skb
)) {
1235 err
= PTR_ERR(resp_skb
);
1237 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1244 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1245 struct nlattr
**attrs
)
1247 struct net
*net
= sock_net(skb
->sk
);
1248 struct xfrm_state
*x
;
1249 struct xfrm_userspi_info
*p
;
1250 struct sk_buff
*resp_skb
;
1251 xfrm_address_t
*daddr
;
1257 p
= nlmsg_data(nlh
);
1258 err
= verify_spi_info(p
->info
.id
.proto
, p
->min
, p
->max
);
1262 family
= p
->info
.family
;
1263 daddr
= &p
->info
.id
.daddr
;
1267 mark
= xfrm_mark_get(attrs
, &m
);
1269 x
= xfrm_find_acq_byseq(net
, mark
, p
->info
.seq
);
1270 if (x
&& !xfrm_addr_equal(&x
->id
.daddr
, daddr
, family
)) {
1277 x
= xfrm_find_acq(net
, &m
, p
->info
.mode
, p
->info
.reqid
,
1278 p
->info
.id
.proto
, daddr
,
1285 err
= xfrm_alloc_spi(x
, p
->min
, p
->max
);
1289 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1290 if (IS_ERR(resp_skb
)) {
1291 err
= PTR_ERR(resp_skb
);
1295 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1303 static int verify_policy_dir(u8 dir
)
1306 case XFRM_POLICY_IN
:
1307 case XFRM_POLICY_OUT
:
1308 case XFRM_POLICY_FWD
:
1318 static int verify_policy_type(u8 type
)
1321 case XFRM_POLICY_TYPE_MAIN
:
1322 #ifdef CONFIG_XFRM_SUB_POLICY
1323 case XFRM_POLICY_TYPE_SUB
:
1334 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
)
1339 case XFRM_SHARE_ANY
:
1340 case XFRM_SHARE_SESSION
:
1341 case XFRM_SHARE_USER
:
1342 case XFRM_SHARE_UNIQUE
:
1349 switch (p
->action
) {
1350 case XFRM_POLICY_ALLOW
:
1351 case XFRM_POLICY_BLOCK
:
1358 switch (p
->sel
.family
) {
1363 #if IS_ENABLED(CONFIG_IPV6)
1366 return -EAFNOSUPPORT
;
1373 ret
= verify_policy_dir(p
->dir
);
1376 if (p
->index
&& ((p
->index
& XFRM_POLICY_MAX
) != p
->dir
))
1382 static int copy_from_user_sec_ctx(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1384 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1385 struct xfrm_user_sec_ctx
*uctx
;
1390 uctx
= nla_data(rt
);
1391 return security_xfrm_policy_alloc(&pol
->security
, uctx
, GFP_KERNEL
);
1394 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
1400 for (i
= 0; i
< nr
; i
++, ut
++) {
1401 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1403 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
1404 memcpy(&t
->saddr
, &ut
->saddr
,
1405 sizeof(xfrm_address_t
));
1406 t
->reqid
= ut
->reqid
;
1408 t
->share
= ut
->share
;
1409 t
->optional
= ut
->optional
;
1410 t
->aalgos
= ut
->aalgos
;
1411 t
->ealgos
= ut
->ealgos
;
1412 t
->calgos
= ut
->calgos
;
1413 /* If all masks are ~0, then we allow all algorithms. */
1414 t
->allalgs
= !~(t
->aalgos
& t
->ealgos
& t
->calgos
);
1415 t
->encap_family
= ut
->family
;
1419 static int validate_tmpl(int nr
, struct xfrm_user_tmpl
*ut
, u16 family
)
1424 if (nr
> XFRM_MAX_DEPTH
)
1427 prev_family
= family
;
1429 for (i
= 0; i
< nr
; i
++) {
1430 /* We never validated the ut->family value, so many
1431 * applications simply leave it at zero. The check was
1432 * never made and ut->family was ignored because all
1433 * templates could be assumed to have the same family as
1434 * the policy itself. Now that we will have ipv4-in-ipv6
1435 * and ipv6-in-ipv4 tunnels, this is no longer true.
1438 ut
[i
].family
= family
;
1440 if ((ut
[i
].mode
== XFRM_MODE_TRANSPORT
) &&
1441 (ut
[i
].family
!= prev_family
))
1444 prev_family
= ut
[i
].family
;
1446 switch (ut
[i
].family
) {
1449 #if IS_ENABLED(CONFIG_IPV6)
1457 switch (ut
[i
].id
.proto
) {
1461 #if IS_ENABLED(CONFIG_IPV6)
1462 case IPPROTO_ROUTING
:
1463 case IPPROTO_DSTOPTS
:
1465 case IPSEC_PROTO_ANY
:
1476 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1478 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1483 struct xfrm_user_tmpl
*utmpl
= nla_data(rt
);
1484 int nr
= nla_len(rt
) / sizeof(*utmpl
);
1487 err
= validate_tmpl(nr
, utmpl
, pol
->family
);
1491 copy_templates(pol
, utmpl
, nr
);
1496 static int copy_from_user_policy_type(u8
*tp
, struct nlattr
**attrs
)
1498 struct nlattr
*rt
= attrs
[XFRMA_POLICY_TYPE
];
1499 struct xfrm_userpolicy_type
*upt
;
1500 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1508 err
= verify_policy_type(type
);
1516 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
1518 xp
->priority
= p
->priority
;
1519 xp
->index
= p
->index
;
1520 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
1521 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
1522 xp
->action
= p
->action
;
1523 xp
->flags
= p
->flags
;
1524 xp
->family
= p
->sel
.family
;
1525 /* XXX xp->share = p->share; */
1528 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
1530 memset(p
, 0, sizeof(*p
));
1531 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
1532 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
1533 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
1534 p
->priority
= xp
->priority
;
1535 p
->index
= xp
->index
;
1536 p
->sel
.family
= xp
->family
;
1538 p
->action
= xp
->action
;
1539 p
->flags
= xp
->flags
;
1540 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
1543 static struct xfrm_policy
*xfrm_policy_construct(struct net
*net
, struct xfrm_userpolicy_info
*p
, struct nlattr
**attrs
, int *errp
)
1545 struct xfrm_policy
*xp
= xfrm_policy_alloc(net
, GFP_KERNEL
);
1553 copy_from_user_policy(xp
, p
);
1555 err
= copy_from_user_policy_type(&xp
->type
, attrs
);
1559 if (!(err
= copy_from_user_tmpl(xp
, attrs
)))
1560 err
= copy_from_user_sec_ctx(xp
, attrs
);
1564 xfrm_mark_get(attrs
, &xp
->mark
);
1570 xfrm_policy_destroy(xp
);
1574 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1575 struct nlattr
**attrs
)
1577 struct net
*net
= sock_net(skb
->sk
);
1578 struct xfrm_userpolicy_info
*p
= nlmsg_data(nlh
);
1579 struct xfrm_policy
*xp
;
1584 err
= verify_newpolicy_info(p
);
1587 err
= verify_sec_ctx_len(attrs
);
1591 xp
= xfrm_policy_construct(net
, p
, attrs
, &err
);
1595 /* shouldn't excl be based on nlh flags??
1596 * Aha! this is anti-netlink really i.e more pfkey derived
1597 * in netlink excl is a flag and you wouldnt need
1598 * a type XFRM_MSG_UPDPOLICY - JHS */
1599 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
1600 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
1601 xfrm_audit_policy_add(xp
, err
? 0 : 1, true);
1604 security_xfrm_policy_free(xp
->security
);
1609 c
.event
= nlh
->nlmsg_type
;
1610 c
.seq
= nlh
->nlmsg_seq
;
1611 c
.portid
= nlh
->nlmsg_pid
;
1612 km_policy_notify(xp
, p
->dir
, &c
);
1619 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1621 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
1624 if (xp
->xfrm_nr
== 0)
1627 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
1628 struct xfrm_user_tmpl
*up
= &vec
[i
];
1629 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
1631 memset(up
, 0, sizeof(*up
));
1632 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
1633 up
->family
= kp
->encap_family
;
1634 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
1635 up
->reqid
= kp
->reqid
;
1636 up
->mode
= kp
->mode
;
1637 up
->share
= kp
->share
;
1638 up
->optional
= kp
->optional
;
1639 up
->aalgos
= kp
->aalgos
;
1640 up
->ealgos
= kp
->ealgos
;
1641 up
->calgos
= kp
->calgos
;
1644 return nla_put(skb
, XFRMA_TMPL
,
1645 sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
, vec
);
1648 static inline int copy_to_user_state_sec_ctx(struct xfrm_state
*x
, struct sk_buff
*skb
)
1651 return copy_sec_ctx(x
->security
, skb
);
1656 static inline int copy_to_user_sec_ctx(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1659 return copy_sec_ctx(xp
->security
, skb
);
1662 static inline unsigned int userpolicy_type_attrsize(void)
1664 #ifdef CONFIG_XFRM_SUB_POLICY
1665 return nla_total_size(sizeof(struct xfrm_userpolicy_type
));
1671 #ifdef CONFIG_XFRM_SUB_POLICY
1672 static int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1674 struct xfrm_userpolicy_type upt
= {
1678 return nla_put(skb
, XFRMA_POLICY_TYPE
, sizeof(upt
), &upt
);
1682 static inline int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1688 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
1690 struct xfrm_dump_info
*sp
= ptr
;
1691 struct xfrm_userpolicy_info
*p
;
1692 struct sk_buff
*in_skb
= sp
->in_skb
;
1693 struct sk_buff
*skb
= sp
->out_skb
;
1694 struct nlmsghdr
*nlh
;
1697 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
1698 XFRM_MSG_NEWPOLICY
, sizeof(*p
), sp
->nlmsg_flags
);
1702 p
= nlmsg_data(nlh
);
1703 copy_to_user_policy(xp
, p
, dir
);
1704 err
= copy_to_user_tmpl(xp
, skb
);
1706 err
= copy_to_user_sec_ctx(xp
, skb
);
1708 err
= copy_to_user_policy_type(xp
->type
, skb
);
1710 err
= xfrm_mark_put(skb
, &xp
->mark
);
1712 nlmsg_cancel(skb
, nlh
);
1715 nlmsg_end(skb
, nlh
);
1719 static int xfrm_dump_policy_done(struct netlink_callback
*cb
)
1721 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1722 struct net
*net
= sock_net(cb
->skb
->sk
);
1724 xfrm_policy_walk_done(walk
, net
);
1728 static int xfrm_dump_policy_start(struct netlink_callback
*cb
)
1730 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1732 BUILD_BUG_ON(sizeof(*walk
) > sizeof(cb
->args
));
1734 xfrm_policy_walk_init(walk
, XFRM_POLICY_TYPE_ANY
);
1738 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1740 struct net
*net
= sock_net(skb
->sk
);
1741 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1742 struct xfrm_dump_info info
;
1744 info
.in_skb
= cb
->skb
;
1746 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1747 info
.nlmsg_flags
= NLM_F_MULTI
;
1749 (void) xfrm_policy_walk(net
, walk
, dump_one_policy
, &info
);
1754 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
1755 struct xfrm_policy
*xp
,
1758 struct xfrm_dump_info info
;
1759 struct sk_buff
*skb
;
1762 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1764 return ERR_PTR(-ENOMEM
);
1766 info
.in_skb
= in_skb
;
1768 info
.nlmsg_seq
= seq
;
1769 info
.nlmsg_flags
= 0;
1771 err
= dump_one_policy(xp
, dir
, 0, &info
);
1774 return ERR_PTR(err
);
1780 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1781 struct nlattr
**attrs
)
1783 struct net
*net
= sock_net(skb
->sk
);
1784 struct xfrm_policy
*xp
;
1785 struct xfrm_userpolicy_id
*p
;
1786 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1791 u32 mark
= xfrm_mark_get(attrs
, &m
);
1793 p
= nlmsg_data(nlh
);
1794 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
1796 err
= copy_from_user_policy_type(&type
, attrs
);
1800 err
= verify_policy_dir(p
->dir
);
1805 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, delete, &err
);
1807 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1808 struct xfrm_sec_ctx
*ctx
;
1810 err
= verify_sec_ctx_len(attrs
);
1816 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1818 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
1822 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
, &p
->sel
,
1824 security_xfrm_policy_free(ctx
);
1830 struct sk_buff
*resp_skb
;
1832 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
1833 if (IS_ERR(resp_skb
)) {
1834 err
= PTR_ERR(resp_skb
);
1836 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
,
1837 NETLINK_CB(skb
).portid
);
1840 xfrm_audit_policy_delete(xp
, err
? 0 : 1, true);
1845 c
.data
.byid
= p
->index
;
1846 c
.event
= nlh
->nlmsg_type
;
1847 c
.seq
= nlh
->nlmsg_seq
;
1848 c
.portid
= nlh
->nlmsg_pid
;
1849 km_policy_notify(xp
, p
->dir
, &c
);
1857 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1858 struct nlattr
**attrs
)
1860 struct net
*net
= sock_net(skb
->sk
);
1862 struct xfrm_usersa_flush
*p
= nlmsg_data(nlh
);
1865 err
= xfrm_state_flush(net
, p
->proto
, true);
1867 if (err
== -ESRCH
) /* empty table */
1871 c
.data
.proto
= p
->proto
;
1872 c
.event
= nlh
->nlmsg_type
;
1873 c
.seq
= nlh
->nlmsg_seq
;
1874 c
.portid
= nlh
->nlmsg_pid
;
1876 km_state_notify(NULL
, &c
);
1881 static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state
*x
)
1883 unsigned int replay_size
= x
->replay_esn
?
1884 xfrm_replay_state_esn_len(x
->replay_esn
) :
1885 sizeof(struct xfrm_replay_state
);
1887 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id
))
1888 + nla_total_size(replay_size
)
1889 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur
))
1890 + nla_total_size(sizeof(struct xfrm_mark
))
1891 + nla_total_size(4) /* XFRM_AE_RTHR */
1892 + nla_total_size(4); /* XFRM_AE_ETHR */
1895 static int build_aevent(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
1897 struct xfrm_aevent_id
*id
;
1898 struct nlmsghdr
*nlh
;
1901 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_NEWAE
, sizeof(*id
), 0);
1905 id
= nlmsg_data(nlh
);
1906 memset(&id
->sa_id
, 0, sizeof(id
->sa_id
));
1907 memcpy(&id
->sa_id
.daddr
, &x
->id
.daddr
, sizeof(x
->id
.daddr
));
1908 id
->sa_id
.spi
= x
->id
.spi
;
1909 id
->sa_id
.family
= x
->props
.family
;
1910 id
->sa_id
.proto
= x
->id
.proto
;
1911 memcpy(&id
->saddr
, &x
->props
.saddr
, sizeof(x
->props
.saddr
));
1912 id
->reqid
= x
->props
.reqid
;
1913 id
->flags
= c
->data
.aevent
;
1915 if (x
->replay_esn
) {
1916 err
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
1917 xfrm_replay_state_esn_len(x
->replay_esn
),
1920 err
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
1925 err
= nla_put_64bit(skb
, XFRMA_LTIME_VAL
, sizeof(x
->curlft
), &x
->curlft
,
1930 if (id
->flags
& XFRM_AE_RTHR
) {
1931 err
= nla_put_u32(skb
, XFRMA_REPLAY_THRESH
, x
->replay_maxdiff
);
1935 if (id
->flags
& XFRM_AE_ETHR
) {
1936 err
= nla_put_u32(skb
, XFRMA_ETIMER_THRESH
,
1937 x
->replay_maxage
* 10 / HZ
);
1941 err
= xfrm_mark_put(skb
, &x
->mark
);
1945 nlmsg_end(skb
, nlh
);
1949 nlmsg_cancel(skb
, nlh
);
1953 static int xfrm_get_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1954 struct nlattr
**attrs
)
1956 struct net
*net
= sock_net(skb
->sk
);
1957 struct xfrm_state
*x
;
1958 struct sk_buff
*r_skb
;
1963 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1964 struct xfrm_usersa_id
*id
= &p
->sa_id
;
1966 mark
= xfrm_mark_get(attrs
, &m
);
1968 x
= xfrm_state_lookup(net
, mark
, &id
->daddr
, id
->spi
, id
->proto
, id
->family
);
1972 r_skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
1973 if (r_skb
== NULL
) {
1979 * XXX: is this lock really needed - none of the other
1980 * gets lock (the concern is things getting updated
1981 * while we are still reading) - jhs
1983 spin_lock_bh(&x
->lock
);
1984 c
.data
.aevent
= p
->flags
;
1985 c
.seq
= nlh
->nlmsg_seq
;
1986 c
.portid
= nlh
->nlmsg_pid
;
1988 err
= build_aevent(r_skb
, x
, &c
);
1991 err
= nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, NETLINK_CB(skb
).portid
);
1992 spin_unlock_bh(&x
->lock
);
1997 static int xfrm_new_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1998 struct nlattr
**attrs
)
2000 struct net
*net
= sock_net(skb
->sk
);
2001 struct xfrm_state
*x
;
2006 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
2007 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
2008 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
2009 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
2010 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
2011 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
2013 if (!lt
&& !rp
&& !re
&& !et
&& !rt
)
2016 /* pedantic mode - thou shalt sayeth replaceth */
2017 if (!(nlh
->nlmsg_flags
&NLM_F_REPLACE
))
2020 mark
= xfrm_mark_get(attrs
, &m
);
2022 x
= xfrm_state_lookup(net
, mark
, &p
->sa_id
.daddr
, p
->sa_id
.spi
, p
->sa_id
.proto
, p
->sa_id
.family
);
2026 if (x
->km
.state
!= XFRM_STATE_VALID
)
2029 err
= xfrm_replay_verify_len(x
->replay_esn
, re
);
2033 spin_lock_bh(&x
->lock
);
2034 xfrm_update_ae_params(x
, attrs
, 1);
2035 spin_unlock_bh(&x
->lock
);
2037 c
.event
= nlh
->nlmsg_type
;
2038 c
.seq
= nlh
->nlmsg_seq
;
2039 c
.portid
= nlh
->nlmsg_pid
;
2040 c
.data
.aevent
= XFRM_AE_CU
;
2041 km_state_notify(x
, &c
);
2048 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2049 struct nlattr
**attrs
)
2051 struct net
*net
= sock_net(skb
->sk
);
2053 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2056 err
= copy_from_user_policy_type(&type
, attrs
);
2060 err
= xfrm_policy_flush(net
, type
, true);
2062 if (err
== -ESRCH
) /* empty table */
2068 c
.event
= nlh
->nlmsg_type
;
2069 c
.seq
= nlh
->nlmsg_seq
;
2070 c
.portid
= nlh
->nlmsg_pid
;
2072 km_policy_notify(NULL
, 0, &c
);
2076 static int xfrm_add_pol_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2077 struct nlattr
**attrs
)
2079 struct net
*net
= sock_net(skb
->sk
);
2080 struct xfrm_policy
*xp
;
2081 struct xfrm_user_polexpire
*up
= nlmsg_data(nlh
);
2082 struct xfrm_userpolicy_info
*p
= &up
->pol
;
2083 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2086 u32 mark
= xfrm_mark_get(attrs
, &m
);
2088 err
= copy_from_user_policy_type(&type
, attrs
);
2092 err
= verify_policy_dir(p
->dir
);
2097 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, 0, &err
);
2099 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
2100 struct xfrm_sec_ctx
*ctx
;
2102 err
= verify_sec_ctx_len(attrs
);
2108 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
2110 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
2114 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
,
2115 &p
->sel
, ctx
, 0, &err
);
2116 security_xfrm_policy_free(ctx
);
2121 if (unlikely(xp
->walk
.dead
))
2126 xfrm_policy_delete(xp
, p
->dir
);
2127 xfrm_audit_policy_delete(xp
, 1, true);
2129 km_policy_expired(xp
, p
->dir
, up
->hard
, nlh
->nlmsg_pid
);
2136 static int xfrm_add_sa_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2137 struct nlattr
**attrs
)
2139 struct net
*net
= sock_net(skb
->sk
);
2140 struct xfrm_state
*x
;
2142 struct xfrm_user_expire
*ue
= nlmsg_data(nlh
);
2143 struct xfrm_usersa_info
*p
= &ue
->state
;
2145 u32 mark
= xfrm_mark_get(attrs
, &m
);
2147 x
= xfrm_state_lookup(net
, mark
, &p
->id
.daddr
, p
->id
.spi
, p
->id
.proto
, p
->family
);
2153 spin_lock_bh(&x
->lock
);
2155 if (x
->km
.state
!= XFRM_STATE_VALID
)
2157 km_state_expired(x
, ue
->hard
, nlh
->nlmsg_pid
);
2160 __xfrm_state_delete(x
);
2161 xfrm_audit_state_delete(x
, 1, true);
2165 spin_unlock_bh(&x
->lock
);
2170 static int xfrm_add_acquire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2171 struct nlattr
**attrs
)
2173 struct net
*net
= sock_net(skb
->sk
);
2174 struct xfrm_policy
*xp
;
2175 struct xfrm_user_tmpl
*ut
;
2177 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
2178 struct xfrm_mark mark
;
2180 struct xfrm_user_acquire
*ua
= nlmsg_data(nlh
);
2181 struct xfrm_state
*x
= xfrm_state_alloc(net
);
2187 xfrm_mark_get(attrs
, &mark
);
2189 err
= verify_newpolicy_info(&ua
->policy
);
2194 xp
= xfrm_policy_construct(net
, &ua
->policy
, attrs
, &err
);
2198 memcpy(&x
->id
, &ua
->id
, sizeof(ua
->id
));
2199 memcpy(&x
->props
.saddr
, &ua
->saddr
, sizeof(ua
->saddr
));
2200 memcpy(&x
->sel
, &ua
->sel
, sizeof(ua
->sel
));
2201 xp
->mark
.m
= x
->mark
.m
= mark
.m
;
2202 xp
->mark
.v
= x
->mark
.v
= mark
.v
;
2204 /* extract the templates and for each call km_key */
2205 for (i
= 0; i
< xp
->xfrm_nr
; i
++, ut
++) {
2206 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
2207 memcpy(&x
->id
, &t
->id
, sizeof(x
->id
));
2208 x
->props
.mode
= t
->mode
;
2209 x
->props
.reqid
= t
->reqid
;
2210 x
->props
.family
= ut
->family
;
2211 t
->aalgos
= ua
->aalgos
;
2212 t
->ealgos
= ua
->ealgos
;
2213 t
->calgos
= ua
->calgos
;
2214 err
= km_query(x
, t
, xp
);
2229 #ifdef CONFIG_XFRM_MIGRATE
2230 static int copy_from_user_migrate(struct xfrm_migrate
*ma
,
2231 struct xfrm_kmaddress
*k
,
2232 struct nlattr
**attrs
, int *num
)
2234 struct nlattr
*rt
= attrs
[XFRMA_MIGRATE
];
2235 struct xfrm_user_migrate
*um
;
2239 struct xfrm_user_kmaddress
*uk
;
2241 uk
= nla_data(attrs
[XFRMA_KMADDRESS
]);
2242 memcpy(&k
->local
, &uk
->local
, sizeof(k
->local
));
2243 memcpy(&k
->remote
, &uk
->remote
, sizeof(k
->remote
));
2244 k
->family
= uk
->family
;
2245 k
->reserved
= uk
->reserved
;
2249 num_migrate
= nla_len(rt
) / sizeof(*um
);
2251 if (num_migrate
<= 0 || num_migrate
> XFRM_MAX_DEPTH
)
2254 for (i
= 0; i
< num_migrate
; i
++, um
++, ma
++) {
2255 memcpy(&ma
->old_daddr
, &um
->old_daddr
, sizeof(ma
->old_daddr
));
2256 memcpy(&ma
->old_saddr
, &um
->old_saddr
, sizeof(ma
->old_saddr
));
2257 memcpy(&ma
->new_daddr
, &um
->new_daddr
, sizeof(ma
->new_daddr
));
2258 memcpy(&ma
->new_saddr
, &um
->new_saddr
, sizeof(ma
->new_saddr
));
2260 ma
->proto
= um
->proto
;
2261 ma
->mode
= um
->mode
;
2262 ma
->reqid
= um
->reqid
;
2264 ma
->old_family
= um
->old_family
;
2265 ma
->new_family
= um
->new_family
;
2272 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2273 struct nlattr
**attrs
)
2275 struct xfrm_userpolicy_id
*pi
= nlmsg_data(nlh
);
2276 struct xfrm_migrate m
[XFRM_MAX_DEPTH
];
2277 struct xfrm_kmaddress km
, *kmp
;
2281 struct net
*net
= sock_net(skb
->sk
);
2282 struct xfrm_encap_tmpl
*encap
= NULL
;
2284 if (attrs
[XFRMA_MIGRATE
] == NULL
)
2287 kmp
= attrs
[XFRMA_KMADDRESS
] ? &km
: NULL
;
2289 err
= copy_from_user_policy_type(&type
, attrs
);
2293 err
= copy_from_user_migrate((struct xfrm_migrate
*)m
, kmp
, attrs
, &n
);
2300 if (attrs
[XFRMA_ENCAP
]) {
2301 encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
2302 sizeof(*encap
), GFP_KERNEL
);
2307 err
= xfrm_migrate(&pi
->sel
, pi
->dir
, type
, m
, n
, kmp
, net
, encap
);
2314 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2315 struct nlattr
**attrs
)
2317 return -ENOPROTOOPT
;
2321 #ifdef CONFIG_XFRM_MIGRATE
2322 static int copy_to_user_migrate(const struct xfrm_migrate
*m
, struct sk_buff
*skb
)
2324 struct xfrm_user_migrate um
;
2326 memset(&um
, 0, sizeof(um
));
2327 um
.proto
= m
->proto
;
2329 um
.reqid
= m
->reqid
;
2330 um
.old_family
= m
->old_family
;
2331 memcpy(&um
.old_daddr
, &m
->old_daddr
, sizeof(um
.old_daddr
));
2332 memcpy(&um
.old_saddr
, &m
->old_saddr
, sizeof(um
.old_saddr
));
2333 um
.new_family
= m
->new_family
;
2334 memcpy(&um
.new_daddr
, &m
->new_daddr
, sizeof(um
.new_daddr
));
2335 memcpy(&um
.new_saddr
, &m
->new_saddr
, sizeof(um
.new_saddr
));
2337 return nla_put(skb
, XFRMA_MIGRATE
, sizeof(um
), &um
);
2340 static int copy_to_user_kmaddress(const struct xfrm_kmaddress
*k
, struct sk_buff
*skb
)
2342 struct xfrm_user_kmaddress uk
;
2344 memset(&uk
, 0, sizeof(uk
));
2345 uk
.family
= k
->family
;
2346 uk
.reserved
= k
->reserved
;
2347 memcpy(&uk
.local
, &k
->local
, sizeof(uk
.local
));
2348 memcpy(&uk
.remote
, &k
->remote
, sizeof(uk
.remote
));
2350 return nla_put(skb
, XFRMA_KMADDRESS
, sizeof(uk
), &uk
);
2353 static inline unsigned int xfrm_migrate_msgsize(int num_migrate
, int with_kma
,
2356 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id
))
2357 + (with_kma
? nla_total_size(sizeof(struct xfrm_kmaddress
)) : 0)
2358 + (with_encp
? nla_total_size(sizeof(struct xfrm_encap_tmpl
)) : 0)
2359 + nla_total_size(sizeof(struct xfrm_user_migrate
) * num_migrate
)
2360 + userpolicy_type_attrsize();
2363 static int build_migrate(struct sk_buff
*skb
, const struct xfrm_migrate
*m
,
2364 int num_migrate
, const struct xfrm_kmaddress
*k
,
2365 const struct xfrm_selector
*sel
,
2366 const struct xfrm_encap_tmpl
*encap
, u8 dir
, u8 type
)
2368 const struct xfrm_migrate
*mp
;
2369 struct xfrm_userpolicy_id
*pol_id
;
2370 struct nlmsghdr
*nlh
;
2373 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MIGRATE
, sizeof(*pol_id
), 0);
2377 pol_id
= nlmsg_data(nlh
);
2378 /* copy data from selector, dir, and type to the pol_id */
2379 memset(pol_id
, 0, sizeof(*pol_id
));
2380 memcpy(&pol_id
->sel
, sel
, sizeof(pol_id
->sel
));
2384 err
= copy_to_user_kmaddress(k
, skb
);
2389 err
= nla_put(skb
, XFRMA_ENCAP
, sizeof(*encap
), encap
);
2393 err
= copy_to_user_policy_type(type
, skb
);
2396 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
2397 err
= copy_to_user_migrate(mp
, skb
);
2402 nlmsg_end(skb
, nlh
);
2406 nlmsg_cancel(skb
, nlh
);
2410 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2411 const struct xfrm_migrate
*m
, int num_migrate
,
2412 const struct xfrm_kmaddress
*k
,
2413 const struct xfrm_encap_tmpl
*encap
)
2415 struct net
*net
= &init_net
;
2416 struct sk_buff
*skb
;
2419 skb
= nlmsg_new(xfrm_migrate_msgsize(num_migrate
, !!k
, !!encap
),
2425 err
= build_migrate(skb
, m
, num_migrate
, k
, sel
, encap
, dir
, type
);
2428 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MIGRATE
);
2431 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2432 const struct xfrm_migrate
*m
, int num_migrate
,
2433 const struct xfrm_kmaddress
*k
,
2434 const struct xfrm_encap_tmpl
*encap
)
2436 return -ENOPROTOOPT
;
2440 #define XMSGSIZE(type) sizeof(struct type)
2442 static const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
2443 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2444 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2445 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2446 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2447 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2448 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2449 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
2450 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
2451 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
2452 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2453 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2454 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
2455 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
2456 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = 0,
2457 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2458 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2459 [XFRM_MSG_REPORT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_report
),
2460 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2461 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2462 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2463 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2468 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1] = {
2469 [XFRMA_SA
] = { .len
= sizeof(struct xfrm_usersa_info
)},
2470 [XFRMA_POLICY
] = { .len
= sizeof(struct xfrm_userpolicy_info
)},
2471 [XFRMA_LASTUSED
] = { .type
= NLA_U64
},
2472 [XFRMA_ALG_AUTH_TRUNC
] = { .len
= sizeof(struct xfrm_algo_auth
)},
2473 [XFRMA_ALG_AEAD
] = { .len
= sizeof(struct xfrm_algo_aead
) },
2474 [XFRMA_ALG_AUTH
] = { .len
= sizeof(struct xfrm_algo
) },
2475 [XFRMA_ALG_CRYPT
] = { .len
= sizeof(struct xfrm_algo
) },
2476 [XFRMA_ALG_COMP
] = { .len
= sizeof(struct xfrm_algo
) },
2477 [XFRMA_ENCAP
] = { .len
= sizeof(struct xfrm_encap_tmpl
) },
2478 [XFRMA_TMPL
] = { .len
= sizeof(struct xfrm_user_tmpl
) },
2479 [XFRMA_SEC_CTX
] = { .len
= sizeof(struct xfrm_sec_ctx
) },
2480 [XFRMA_LTIME_VAL
] = { .len
= sizeof(struct xfrm_lifetime_cur
) },
2481 [XFRMA_REPLAY_VAL
] = { .len
= sizeof(struct xfrm_replay_state
) },
2482 [XFRMA_REPLAY_THRESH
] = { .type
= NLA_U32
},
2483 [XFRMA_ETIMER_THRESH
] = { .type
= NLA_U32
},
2484 [XFRMA_SRCADDR
] = { .len
= sizeof(xfrm_address_t
) },
2485 [XFRMA_COADDR
] = { .len
= sizeof(xfrm_address_t
) },
2486 [XFRMA_POLICY_TYPE
] = { .len
= sizeof(struct xfrm_userpolicy_type
)},
2487 [XFRMA_MIGRATE
] = { .len
= sizeof(struct xfrm_user_migrate
) },
2488 [XFRMA_KMADDRESS
] = { .len
= sizeof(struct xfrm_user_kmaddress
) },
2489 [XFRMA_MARK
] = { .len
= sizeof(struct xfrm_mark
) },
2490 [XFRMA_TFCPAD
] = { .type
= NLA_U32
},
2491 [XFRMA_REPLAY_ESN_VAL
] = { .len
= sizeof(struct xfrm_replay_state_esn
) },
2492 [XFRMA_SA_EXTRA_FLAGS
] = { .type
= NLA_U32
},
2493 [XFRMA_PROTO
] = { .type
= NLA_U8
},
2494 [XFRMA_ADDRESS_FILTER
] = { .len
= sizeof(struct xfrm_address_filter
) },
2495 [XFRMA_OFFLOAD_DEV
] = { .len
= sizeof(struct xfrm_user_offload
) },
2496 [XFRMA_OUTPUT_MARK
] = { .type
= NLA_U32
},
2499 static const struct nla_policy xfrma_spd_policy
[XFRMA_SPD_MAX
+1] = {
2500 [XFRMA_SPD_IPV4_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
2501 [XFRMA_SPD_IPV6_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
2504 static const struct xfrm_link
{
2505 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
2506 int (*start
)(struct netlink_callback
*);
2507 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
2508 int (*done
)(struct netlink_callback
*);
2509 const struct nla_policy
*nla_pol
;
2511 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
2512 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2513 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
2514 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
2515 .dump
= xfrm_dump_sa
,
2516 .done
= xfrm_dump_sa_done
},
2517 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2518 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
2519 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
2520 .start
= xfrm_dump_policy_start
,
2521 .dump
= xfrm_dump_policy
,
2522 .done
= xfrm_dump_policy_done
},
2523 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
2524 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_acquire
},
2525 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa_expire
},
2526 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2527 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2528 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_pol_expire
},
2529 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
2530 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
2531 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_new_ae
},
2532 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_ae
},
2533 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = { .doit
= xfrm_do_migrate
},
2534 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sadinfo
},
2535 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_set_spdinfo
,
2536 .nla_pol
= xfrma_spd_policy
,
2537 .nla_max
= XFRMA_SPD_MAX
},
2538 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_spdinfo
},
2541 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2542 struct netlink_ext_ack
*extack
)
2544 struct net
*net
= sock_net(skb
->sk
);
2545 struct nlattr
*attrs
[XFRMA_MAX
+1];
2546 const struct xfrm_link
*link
;
2549 #ifdef CONFIG_COMPAT
2550 if (in_compat_syscall())
2554 type
= nlh
->nlmsg_type
;
2555 if (type
> XFRM_MSG_MAX
)
2558 type
-= XFRM_MSG_BASE
;
2559 link
= &xfrm_dispatch
[type
];
2561 /* All operations require privileges, even GET */
2562 if (!netlink_net_capable(skb
, CAP_NET_ADMIN
))
2565 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
2566 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
2567 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
2568 if (link
->dump
== NULL
)
2572 struct netlink_dump_control c
= {
2573 .start
= link
->start
,
2577 return netlink_dump_start(net
->xfrm
.nlsk
, skb
, nlh
, &c
);
2581 err
= nlmsg_parse(nlh
, xfrm_msg_min
[type
], attrs
,
2582 link
->nla_max
? : XFRMA_MAX
,
2583 link
->nla_pol
? : xfrma_policy
, extack
);
2587 if (link
->doit
== NULL
)
2590 return link
->doit(skb
, nlh
, attrs
);
2593 static void xfrm_netlink_rcv(struct sk_buff
*skb
)
2595 struct net
*net
= sock_net(skb
->sk
);
2597 mutex_lock(&net
->xfrm
.xfrm_cfg_mutex
);
2598 netlink_rcv_skb(skb
, &xfrm_user_rcv_msg
);
2599 mutex_unlock(&net
->xfrm
.xfrm_cfg_mutex
);
2602 static inline unsigned int xfrm_expire_msgsize(void)
2604 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire
))
2605 + nla_total_size(sizeof(struct xfrm_mark
));
2608 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
2610 struct xfrm_user_expire
*ue
;
2611 struct nlmsghdr
*nlh
;
2614 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_EXPIRE
, sizeof(*ue
), 0);
2618 ue
= nlmsg_data(nlh
);
2619 copy_to_user_state(x
, &ue
->state
);
2620 ue
->hard
= (c
->data
.hard
!= 0) ? 1 : 0;
2621 /* clear the padding bytes */
2622 memset(&ue
->hard
+ 1, 0, sizeof(*ue
) - offsetofend(typeof(*ue
), hard
));
2624 err
= xfrm_mark_put(skb
, &x
->mark
);
2628 nlmsg_end(skb
, nlh
);
2632 static int xfrm_exp_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2634 struct net
*net
= xs_net(x
);
2635 struct sk_buff
*skb
;
2637 skb
= nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC
);
2641 if (build_expire(skb
, x
, c
) < 0) {
2646 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
2649 static int xfrm_aevent_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2651 struct net
*net
= xs_net(x
);
2652 struct sk_buff
*skb
;
2655 skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2659 err
= build_aevent(skb
, x
, c
);
2662 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_AEVENTS
);
2665 static int xfrm_notify_sa_flush(const struct km_event
*c
)
2667 struct net
*net
= c
->net
;
2668 struct xfrm_usersa_flush
*p
;
2669 struct nlmsghdr
*nlh
;
2670 struct sk_buff
*skb
;
2671 int len
= NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush
));
2673 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2677 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHSA
, sizeof(*p
), 0);
2683 p
= nlmsg_data(nlh
);
2684 p
->proto
= c
->data
.proto
;
2686 nlmsg_end(skb
, nlh
);
2688 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
2691 static inline unsigned int xfrm_sa_len(struct xfrm_state
*x
)
2695 l
+= nla_total_size(aead_len(x
->aead
));
2697 l
+= nla_total_size(sizeof(struct xfrm_algo
) +
2698 (x
->aalg
->alg_key_len
+ 7) / 8);
2699 l
+= nla_total_size(xfrm_alg_auth_len(x
->aalg
));
2702 l
+= nla_total_size(xfrm_alg_len(x
->ealg
));
2704 l
+= nla_total_size(sizeof(*x
->calg
));
2706 l
+= nla_total_size(sizeof(*x
->encap
));
2708 l
+= nla_total_size(sizeof(x
->tfcpad
));
2710 l
+= nla_total_size(xfrm_replay_state_esn_len(x
->replay_esn
));
2712 l
+= nla_total_size(sizeof(struct xfrm_replay_state
));
2714 l
+= nla_total_size(sizeof(struct xfrm_user_sec_ctx
) +
2715 x
->security
->ctx_len
);
2717 l
+= nla_total_size(sizeof(*x
->coaddr
));
2718 if (x
->props
.extra_flags
)
2719 l
+= nla_total_size(sizeof(x
->props
.extra_flags
));
2721 l
+= nla_total_size(sizeof(x
->xso
));
2722 if (x
->props
.output_mark
)
2723 l
+= nla_total_size(sizeof(x
->props
.output_mark
));
2725 /* Must count x->lastused as it may become non-zero behind our back. */
2726 l
+= nla_total_size_64bit(sizeof(u64
));
2731 static int xfrm_notify_sa(struct xfrm_state
*x
, const struct km_event
*c
)
2733 struct net
*net
= xs_net(x
);
2734 struct xfrm_usersa_info
*p
;
2735 struct xfrm_usersa_id
*id
;
2736 struct nlmsghdr
*nlh
;
2737 struct sk_buff
*skb
;
2738 unsigned int len
= xfrm_sa_len(x
);
2739 unsigned int headlen
;
2742 headlen
= sizeof(*p
);
2743 if (c
->event
== XFRM_MSG_DELSA
) {
2744 len
+= nla_total_size(headlen
);
2745 headlen
= sizeof(*id
);
2746 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2748 len
+= NLMSG_ALIGN(headlen
);
2750 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2754 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
2759 p
= nlmsg_data(nlh
);
2760 if (c
->event
== XFRM_MSG_DELSA
) {
2761 struct nlattr
*attr
;
2763 id
= nlmsg_data(nlh
);
2764 memset(id
, 0, sizeof(*id
));
2765 memcpy(&id
->daddr
, &x
->id
.daddr
, sizeof(id
->daddr
));
2766 id
->spi
= x
->id
.spi
;
2767 id
->family
= x
->props
.family
;
2768 id
->proto
= x
->id
.proto
;
2770 attr
= nla_reserve(skb
, XFRMA_SA
, sizeof(*p
));
2777 err
= copy_to_user_state_extra(x
, p
, skb
);
2781 nlmsg_end(skb
, nlh
);
2783 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
2790 static int xfrm_send_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2794 case XFRM_MSG_EXPIRE
:
2795 return xfrm_exp_state_notify(x
, c
);
2796 case XFRM_MSG_NEWAE
:
2797 return xfrm_aevent_state_notify(x
, c
);
2798 case XFRM_MSG_DELSA
:
2799 case XFRM_MSG_UPDSA
:
2800 case XFRM_MSG_NEWSA
:
2801 return xfrm_notify_sa(x
, c
);
2802 case XFRM_MSG_FLUSHSA
:
2803 return xfrm_notify_sa_flush(c
);
2805 printk(KERN_NOTICE
"xfrm_user: Unknown SA event %d\n",
2814 static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state
*x
,
2815 struct xfrm_policy
*xp
)
2817 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire
))
2818 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2819 + nla_total_size(sizeof(struct xfrm_mark
))
2820 + nla_total_size(xfrm_user_sec_ctx_size(x
->security
))
2821 + userpolicy_type_attrsize();
2824 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
2825 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
)
2827 __u32 seq
= xfrm_get_acqseq();
2828 struct xfrm_user_acquire
*ua
;
2829 struct nlmsghdr
*nlh
;
2832 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_ACQUIRE
, sizeof(*ua
), 0);
2836 ua
= nlmsg_data(nlh
);
2837 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
2838 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
2839 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
2840 copy_to_user_policy(xp
, &ua
->policy
, XFRM_POLICY_OUT
);
2841 ua
->aalgos
= xt
->aalgos
;
2842 ua
->ealgos
= xt
->ealgos
;
2843 ua
->calgos
= xt
->calgos
;
2844 ua
->seq
= x
->km
.seq
= seq
;
2846 err
= copy_to_user_tmpl(xp
, skb
);
2848 err
= copy_to_user_state_sec_ctx(x
, skb
);
2850 err
= copy_to_user_policy_type(xp
->type
, skb
);
2852 err
= xfrm_mark_put(skb
, &xp
->mark
);
2854 nlmsg_cancel(skb
, nlh
);
2858 nlmsg_end(skb
, nlh
);
2862 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
2863 struct xfrm_policy
*xp
)
2865 struct net
*net
= xs_net(x
);
2866 struct sk_buff
*skb
;
2869 skb
= nlmsg_new(xfrm_acquire_msgsize(x
, xp
), GFP_ATOMIC
);
2873 err
= build_acquire(skb
, x
, xt
, xp
);
2876 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_ACQUIRE
);
2879 /* User gives us xfrm_user_policy_info followed by an array of 0
2880 * or more templates.
2882 static struct xfrm_policy
*xfrm_compile_policy(struct sock
*sk
, int opt
,
2883 u8
*data
, int len
, int *dir
)
2885 struct net
*net
= sock_net(sk
);
2886 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
2887 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
2888 struct xfrm_policy
*xp
;
2891 switch (sk
->sk_family
) {
2893 if (opt
!= IP_XFRM_POLICY
) {
2898 #if IS_ENABLED(CONFIG_IPV6)
2900 if (opt
!= IPV6_XFRM_POLICY
) {
2913 if (len
< sizeof(*p
) ||
2914 verify_newpolicy_info(p
))
2917 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
2918 if (validate_tmpl(nr
, ut
, p
->sel
.family
))
2921 if (p
->dir
> XFRM_POLICY_OUT
)
2924 xp
= xfrm_policy_alloc(net
, GFP_ATOMIC
);
2930 copy_from_user_policy(xp
, p
);
2931 xp
->type
= XFRM_POLICY_TYPE_MAIN
;
2932 copy_templates(xp
, ut
, nr
);
2939 static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy
*xp
)
2941 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire
))
2942 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2943 + nla_total_size(xfrm_user_sec_ctx_size(xp
->security
))
2944 + nla_total_size(sizeof(struct xfrm_mark
))
2945 + userpolicy_type_attrsize();
2948 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
2949 int dir
, const struct km_event
*c
)
2951 struct xfrm_user_polexpire
*upe
;
2952 int hard
= c
->data
.hard
;
2953 struct nlmsghdr
*nlh
;
2956 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
), 0);
2960 upe
= nlmsg_data(nlh
);
2961 copy_to_user_policy(xp
, &upe
->pol
, dir
);
2962 err
= copy_to_user_tmpl(xp
, skb
);
2964 err
= copy_to_user_sec_ctx(xp
, skb
);
2966 err
= copy_to_user_policy_type(xp
->type
, skb
);
2968 err
= xfrm_mark_put(skb
, &xp
->mark
);
2970 nlmsg_cancel(skb
, nlh
);
2975 nlmsg_end(skb
, nlh
);
2979 static int xfrm_exp_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2981 struct net
*net
= xp_net(xp
);
2982 struct sk_buff
*skb
;
2985 skb
= nlmsg_new(xfrm_polexpire_msgsize(xp
), GFP_ATOMIC
);
2989 err
= build_polexpire(skb
, xp
, dir
, c
);
2992 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
2995 static int xfrm_notify_policy(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2997 unsigned int len
= nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
2998 struct net
*net
= xp_net(xp
);
2999 struct xfrm_userpolicy_info
*p
;
3000 struct xfrm_userpolicy_id
*id
;
3001 struct nlmsghdr
*nlh
;
3002 struct sk_buff
*skb
;
3003 unsigned int headlen
;
3006 headlen
= sizeof(*p
);
3007 if (c
->event
== XFRM_MSG_DELPOLICY
) {
3008 len
+= nla_total_size(headlen
);
3009 headlen
= sizeof(*id
);
3011 len
+= userpolicy_type_attrsize();
3012 len
+= nla_total_size(sizeof(struct xfrm_mark
));
3013 len
+= NLMSG_ALIGN(headlen
);
3015 skb
= nlmsg_new(len
, GFP_ATOMIC
);
3019 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
3024 p
= nlmsg_data(nlh
);
3025 if (c
->event
== XFRM_MSG_DELPOLICY
) {
3026 struct nlattr
*attr
;
3028 id
= nlmsg_data(nlh
);
3029 memset(id
, 0, sizeof(*id
));
3032 id
->index
= xp
->index
;
3034 memcpy(&id
->sel
, &xp
->selector
, sizeof(id
->sel
));
3036 attr
= nla_reserve(skb
, XFRMA_POLICY
, sizeof(*p
));
3044 copy_to_user_policy(xp
, p
, dir
);
3045 err
= copy_to_user_tmpl(xp
, skb
);
3047 err
= copy_to_user_policy_type(xp
->type
, skb
);
3049 err
= xfrm_mark_put(skb
, &xp
->mark
);
3053 nlmsg_end(skb
, nlh
);
3055 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
3062 static int xfrm_notify_policy_flush(const struct km_event
*c
)
3064 struct net
*net
= c
->net
;
3065 struct nlmsghdr
*nlh
;
3066 struct sk_buff
*skb
;
3069 skb
= nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC
);
3073 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHPOLICY
, 0, 0);
3077 err
= copy_to_user_policy_type(c
->data
.type
, skb
);
3081 nlmsg_end(skb
, nlh
);
3083 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
3090 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
3094 case XFRM_MSG_NEWPOLICY
:
3095 case XFRM_MSG_UPDPOLICY
:
3096 case XFRM_MSG_DELPOLICY
:
3097 return xfrm_notify_policy(xp
, dir
, c
);
3098 case XFRM_MSG_FLUSHPOLICY
:
3099 return xfrm_notify_policy_flush(c
);
3100 case XFRM_MSG_POLEXPIRE
:
3101 return xfrm_exp_policy_notify(xp
, dir
, c
);
3103 printk(KERN_NOTICE
"xfrm_user: Unknown Policy event %d\n",
3111 static inline unsigned int xfrm_report_msgsize(void)
3113 return NLMSG_ALIGN(sizeof(struct xfrm_user_report
));
3116 static int build_report(struct sk_buff
*skb
, u8 proto
,
3117 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3119 struct xfrm_user_report
*ur
;
3120 struct nlmsghdr
*nlh
;
3122 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_REPORT
, sizeof(*ur
), 0);
3126 ur
= nlmsg_data(nlh
);
3128 memcpy(&ur
->sel
, sel
, sizeof(ur
->sel
));
3131 int err
= nla_put(skb
, XFRMA_COADDR
, sizeof(*addr
), addr
);
3133 nlmsg_cancel(skb
, nlh
);
3137 nlmsg_end(skb
, nlh
);
3141 static int xfrm_send_report(struct net
*net
, u8 proto
,
3142 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3144 struct sk_buff
*skb
;
3147 skb
= nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC
);
3151 err
= build_report(skb
, proto
, sel
, addr
);
3154 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_REPORT
);
3157 static inline unsigned int xfrm_mapping_msgsize(void)
3159 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping
));
3162 static int build_mapping(struct sk_buff
*skb
, struct xfrm_state
*x
,
3163 xfrm_address_t
*new_saddr
, __be16 new_sport
)
3165 struct xfrm_user_mapping
*um
;
3166 struct nlmsghdr
*nlh
;
3168 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MAPPING
, sizeof(*um
), 0);
3172 um
= nlmsg_data(nlh
);
3174 memcpy(&um
->id
.daddr
, &x
->id
.daddr
, sizeof(um
->id
.daddr
));
3175 um
->id
.spi
= x
->id
.spi
;
3176 um
->id
.family
= x
->props
.family
;
3177 um
->id
.proto
= x
->id
.proto
;
3178 memcpy(&um
->new_saddr
, new_saddr
, sizeof(um
->new_saddr
));
3179 memcpy(&um
->old_saddr
, &x
->props
.saddr
, sizeof(um
->old_saddr
));
3180 um
->new_sport
= new_sport
;
3181 um
->old_sport
= x
->encap
->encap_sport
;
3182 um
->reqid
= x
->props
.reqid
;
3184 nlmsg_end(skb
, nlh
);
3188 static int xfrm_send_mapping(struct xfrm_state
*x
, xfrm_address_t
*ipaddr
,
3191 struct net
*net
= xs_net(x
);
3192 struct sk_buff
*skb
;
3195 if (x
->id
.proto
!= IPPROTO_ESP
)
3201 skb
= nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC
);
3205 err
= build_mapping(skb
, x
, ipaddr
, sport
);
3208 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MAPPING
);
3211 static bool xfrm_is_alive(const struct km_event
*c
)
3213 return (bool)xfrm_acquire_is_on(c
->net
);
3216 static struct xfrm_mgr netlink_mgr
= {
3217 .notify
= xfrm_send_state_notify
,
3218 .acquire
= xfrm_send_acquire
,
3219 .compile_policy
= xfrm_compile_policy
,
3220 .notify_policy
= xfrm_send_policy_notify
,
3221 .report
= xfrm_send_report
,
3222 .migrate
= xfrm_send_migrate
,
3223 .new_mapping
= xfrm_send_mapping
,
3224 .is_alive
= xfrm_is_alive
,
3227 static int __net_init
xfrm_user_net_init(struct net
*net
)
3230 struct netlink_kernel_cfg cfg
= {
3231 .groups
= XFRMNLGRP_MAX
,
3232 .input
= xfrm_netlink_rcv
,
3235 nlsk
= netlink_kernel_create(net
, NETLINK_XFRM
, &cfg
);
3238 net
->xfrm
.nlsk_stash
= nlsk
; /* Don't set to NULL */
3239 rcu_assign_pointer(net
->xfrm
.nlsk
, nlsk
);
3243 static void __net_exit
xfrm_user_net_exit(struct list_head
*net_exit_list
)
3246 list_for_each_entry(net
, net_exit_list
, exit_list
)
3247 RCU_INIT_POINTER(net
->xfrm
.nlsk
, NULL
);
3249 list_for_each_entry(net
, net_exit_list
, exit_list
)
3250 netlink_kernel_release(net
->xfrm
.nlsk_stash
);
3253 static struct pernet_operations xfrm_user_net_ops
= {
3254 .init
= xfrm_user_net_init
,
3255 .exit_batch
= xfrm_user_net_exit
,
3258 static int __init
xfrm_user_init(void)
3262 printk(KERN_INFO
"Initializing XFRM netlink socket\n");
3264 rv
= register_pernet_subsys(&xfrm_user_net_ops
);
3267 rv
= xfrm_register_km(&netlink_mgr
);
3269 unregister_pernet_subsys(&xfrm_user_net_ops
);
3273 static void __exit
xfrm_user_exit(void)
3275 xfrm_unregister_km(&netlink_mgr
);
3276 unregister_pernet_subsys(&xfrm_user_net_ops
);
3279 module_init(xfrm_user_init
);
3280 module_exit(xfrm_user_exit
);
3281 MODULE_LICENSE("GPL");
3282 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_XFRM
);