1 /* xfrm_user.c: User interface to configure xfrm engine.
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
13 #include <linux/crypto.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/slab.h>
18 #include <linux/socket.h>
19 #include <linux/string.h>
20 #include <linux/net.h>
21 #include <linux/skbuff.h>
22 #include <linux/pfkeyv2.h>
23 #include <linux/ipsec.h>
24 #include <linux/init.h>
25 #include <linux/security.h>
28 #include <net/netlink.h>
30 #include <asm/uaccess.h>
31 #if IS_ENABLED(CONFIG_IPV6)
32 #include <linux/in6.h>
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
) < xfrm_alg_len(algp
))
58 algp
->alg_name
[CRYPTO_MAX_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
) < xfrm_alg_auth_len(algp
))
74 algp
->alg_name
[CRYPTO_MAX_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
) < aead_len(algp
))
90 algp
->alg_name
[CRYPTO_MAX_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
;
124 if (p
->flags
& XFRM_STATE_ESN
) {
130 if (rs
->bmp_len
> XFRMA_REPLAY_ESN_MAX
/ sizeof(rs
->bmp
[0]) / 8)
133 if (nla_len(rt
) < xfrm_replay_state_esn_len(rs
) &&
134 nla_len(rt
) != sizeof(*rs
))
141 /* As only ESP and AH support ESN feature. */
142 if ((p
->id
.proto
!= IPPROTO_ESP
) && (p
->id
.proto
!= IPPROTO_AH
))
145 if (p
->replay_window
!= 0)
151 static int verify_newsa_info(struct xfrm_usersa_info
*p
,
152 struct nlattr
**attrs
)
162 #if IS_ENABLED(CONFIG_IPV6)
174 switch (p
->id
.proto
) {
176 if ((!attrs
[XFRMA_ALG_AUTH
] &&
177 !attrs
[XFRMA_ALG_AUTH_TRUNC
]) ||
178 attrs
[XFRMA_ALG_AEAD
] ||
179 attrs
[XFRMA_ALG_CRYPT
] ||
180 attrs
[XFRMA_ALG_COMP
] ||
186 if (attrs
[XFRMA_ALG_COMP
])
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_ALG_AUTH
] ||
194 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
195 attrs
[XFRMA_ALG_CRYPT
]) &&
196 attrs
[XFRMA_ALG_AEAD
])
198 if (attrs
[XFRMA_TFCPAD
] &&
199 p
->mode
!= XFRM_MODE_TUNNEL
)
204 if (!attrs
[XFRMA_ALG_COMP
] ||
205 attrs
[XFRMA_ALG_AEAD
] ||
206 attrs
[XFRMA_ALG_AUTH
] ||
207 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
208 attrs
[XFRMA_ALG_CRYPT
] ||
209 attrs
[XFRMA_TFCPAD
] ||
210 (ntohl(p
->id
.spi
) >= 0x10000))
214 #if IS_ENABLED(CONFIG_IPV6)
215 case IPPROTO_DSTOPTS
:
216 case IPPROTO_ROUTING
:
217 if (attrs
[XFRMA_ALG_COMP
] ||
218 attrs
[XFRMA_ALG_AUTH
] ||
219 attrs
[XFRMA_ALG_AUTH_TRUNC
] ||
220 attrs
[XFRMA_ALG_AEAD
] ||
221 attrs
[XFRMA_ALG_CRYPT
] ||
222 attrs
[XFRMA_ENCAP
] ||
223 attrs
[XFRMA_SEC_CTX
] ||
224 attrs
[XFRMA_TFCPAD
] ||
225 !attrs
[XFRMA_COADDR
])
234 if ((err
= verify_aead(attrs
)))
236 if ((err
= verify_auth_trunc(attrs
)))
238 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_AUTH
)))
240 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_CRYPT
)))
242 if ((err
= verify_one_alg(attrs
, XFRMA_ALG_COMP
)))
244 if ((err
= verify_sec_ctx_len(attrs
)))
246 if ((err
= verify_replay(p
, attrs
)))
251 case XFRM_MODE_TRANSPORT
:
252 case XFRM_MODE_TUNNEL
:
253 case XFRM_MODE_ROUTEOPTIMIZATION
:
267 static int attach_one_algo(struct xfrm_algo
**algpp
, u8
*props
,
268 struct xfrm_algo_desc
*(*get_byname
)(const char *, int),
271 struct xfrm_algo
*p
, *ualg
;
272 struct xfrm_algo_desc
*algo
;
277 ualg
= nla_data(rta
);
279 algo
= get_byname(ualg
->alg_name
, 1);
282 *props
= algo
->desc
.sadb_alg_id
;
284 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
288 strcpy(p
->alg_name
, algo
->name
);
293 static int attach_crypt(struct xfrm_state
*x
, struct nlattr
*rta
)
295 struct xfrm_algo
*p
, *ualg
;
296 struct xfrm_algo_desc
*algo
;
301 ualg
= nla_data(rta
);
303 algo
= xfrm_ealg_get_byname(ualg
->alg_name
, 1);
306 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
308 p
= kmemdup(ualg
, xfrm_alg_len(ualg
), GFP_KERNEL
);
312 strcpy(p
->alg_name
, algo
->name
);
314 x
->geniv
= algo
->uinfo
.encr
.geniv
;
318 static int attach_auth(struct xfrm_algo_auth
**algpp
, u8
*props
,
321 struct xfrm_algo
*ualg
;
322 struct xfrm_algo_auth
*p
;
323 struct xfrm_algo_desc
*algo
;
328 ualg
= nla_data(rta
);
330 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
333 *props
= algo
->desc
.sadb_alg_id
;
335 p
= kmalloc(sizeof(*p
) + (ualg
->alg_key_len
+ 7) / 8, GFP_KERNEL
);
339 strcpy(p
->alg_name
, algo
->name
);
340 p
->alg_key_len
= ualg
->alg_key_len
;
341 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
342 memcpy(p
->alg_key
, ualg
->alg_key
, (ualg
->alg_key_len
+ 7) / 8);
348 static int attach_auth_trunc(struct xfrm_algo_auth
**algpp
, u8
*props
,
351 struct xfrm_algo_auth
*p
, *ualg
;
352 struct xfrm_algo_desc
*algo
;
357 ualg
= nla_data(rta
);
359 algo
= xfrm_aalg_get_byname(ualg
->alg_name
, 1);
362 if (ualg
->alg_trunc_len
> algo
->uinfo
.auth
.icv_fullbits
)
364 *props
= algo
->desc
.sadb_alg_id
;
366 p
= kmemdup(ualg
, xfrm_alg_auth_len(ualg
), GFP_KERNEL
);
370 strcpy(p
->alg_name
, algo
->name
);
371 if (!p
->alg_trunc_len
)
372 p
->alg_trunc_len
= algo
->uinfo
.auth
.icv_truncbits
;
378 static int attach_aead(struct xfrm_state
*x
, struct nlattr
*rta
)
380 struct xfrm_algo_aead
*p
, *ualg
;
381 struct xfrm_algo_desc
*algo
;
386 ualg
= nla_data(rta
);
388 algo
= xfrm_aead_get_byname(ualg
->alg_name
, ualg
->alg_icv_len
, 1);
391 x
->props
.ealgo
= algo
->desc
.sadb_alg_id
;
393 p
= kmemdup(ualg
, aead_len(ualg
), GFP_KERNEL
);
397 strcpy(p
->alg_name
, algo
->name
);
399 x
->geniv
= algo
->uinfo
.aead
.geniv
;
403 static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn
*replay_esn
,
406 struct xfrm_replay_state_esn
*up
;
409 if (!replay_esn
|| !rp
)
413 ulen
= xfrm_replay_state_esn_len(up
);
415 /* Check the overall length and the internal bitmap length to avoid
416 * potential overflow. */
417 if (nla_len(rp
) < ulen
||
418 xfrm_replay_state_esn_len(replay_esn
) != ulen
||
419 replay_esn
->bmp_len
!= up
->bmp_len
)
422 if (up
->replay_window
> up
->bmp_len
* sizeof(__u32
) * 8)
428 static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn
**replay_esn
,
429 struct xfrm_replay_state_esn
**preplay_esn
,
432 struct xfrm_replay_state_esn
*p
, *pp
, *up
;
439 klen
= xfrm_replay_state_esn_len(up
);
440 ulen
= nla_len(rta
) >= klen
? klen
: sizeof(*up
);
442 p
= kzalloc(klen
, GFP_KERNEL
);
446 pp
= kzalloc(klen
, GFP_KERNEL
);
453 memcpy(pp
, up
, ulen
);
461 static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx
*xfrm_ctx
)
466 len
+= sizeof(struct xfrm_user_sec_ctx
);
467 len
+= xfrm_ctx
->ctx_len
;
472 static void copy_from_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
474 memcpy(&x
->id
, &p
->id
, sizeof(x
->id
));
475 memcpy(&x
->sel
, &p
->sel
, sizeof(x
->sel
));
476 memcpy(&x
->lft
, &p
->lft
, sizeof(x
->lft
));
477 x
->props
.mode
= p
->mode
;
478 x
->props
.replay_window
= min_t(unsigned int, p
->replay_window
,
479 sizeof(x
->replay
.bitmap
) * 8);
480 x
->props
.reqid
= p
->reqid
;
481 x
->props
.family
= p
->family
;
482 memcpy(&x
->props
.saddr
, &p
->saddr
, sizeof(x
->props
.saddr
));
483 x
->props
.flags
= p
->flags
;
485 if (!x
->sel
.family
&& !(p
->flags
& XFRM_STATE_AF_UNSPEC
))
486 x
->sel
.family
= p
->family
;
490 * someday when pfkey also has support, we could have the code
491 * somehow made shareable and move it to xfrm_state.c - JHS
494 static void xfrm_update_ae_params(struct xfrm_state
*x
, struct nlattr
**attrs
,
497 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
498 struct nlattr
*re
= update_esn
? attrs
[XFRMA_REPLAY_ESN_VAL
] : NULL
;
499 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
500 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
501 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
504 struct xfrm_replay_state_esn
*replay_esn
;
505 replay_esn
= nla_data(re
);
506 memcpy(x
->replay_esn
, replay_esn
,
507 xfrm_replay_state_esn_len(replay_esn
));
508 memcpy(x
->preplay_esn
, replay_esn
,
509 xfrm_replay_state_esn_len(replay_esn
));
513 struct xfrm_replay_state
*replay
;
514 replay
= nla_data(rp
);
515 memcpy(&x
->replay
, replay
, sizeof(*replay
));
516 memcpy(&x
->preplay
, replay
, sizeof(*replay
));
520 struct xfrm_lifetime_cur
*ltime
;
521 ltime
= nla_data(lt
);
522 x
->curlft
.bytes
= ltime
->bytes
;
523 x
->curlft
.packets
= ltime
->packets
;
524 x
->curlft
.add_time
= ltime
->add_time
;
525 x
->curlft
.use_time
= ltime
->use_time
;
529 x
->replay_maxage
= nla_get_u32(et
);
532 x
->replay_maxdiff
= nla_get_u32(rt
);
535 static struct xfrm_state
*xfrm_state_construct(struct net
*net
,
536 struct xfrm_usersa_info
*p
,
537 struct nlattr
**attrs
,
540 struct xfrm_state
*x
= xfrm_state_alloc(net
);
546 copy_from_user_state(x
, p
);
548 if (attrs
[XFRMA_SA_EXTRA_FLAGS
])
549 x
->props
.extra_flags
= nla_get_u32(attrs
[XFRMA_SA_EXTRA_FLAGS
]);
551 if ((err
= attach_aead(x
, attrs
[XFRMA_ALG_AEAD
])))
553 if ((err
= attach_auth_trunc(&x
->aalg
, &x
->props
.aalgo
,
554 attrs
[XFRMA_ALG_AUTH_TRUNC
])))
556 if (!x
->props
.aalgo
) {
557 if ((err
= attach_auth(&x
->aalg
, &x
->props
.aalgo
,
558 attrs
[XFRMA_ALG_AUTH
])))
561 if ((err
= attach_crypt(x
, attrs
[XFRMA_ALG_CRYPT
])))
563 if ((err
= attach_one_algo(&x
->calg
, &x
->props
.calgo
,
564 xfrm_calg_get_byname
,
565 attrs
[XFRMA_ALG_COMP
])))
568 if (attrs
[XFRMA_ENCAP
]) {
569 x
->encap
= kmemdup(nla_data(attrs
[XFRMA_ENCAP
]),
570 sizeof(*x
->encap
), GFP_KERNEL
);
571 if (x
->encap
== NULL
)
575 if (attrs
[XFRMA_TFCPAD
])
576 x
->tfcpad
= nla_get_u32(attrs
[XFRMA_TFCPAD
]);
578 if (attrs
[XFRMA_COADDR
]) {
579 x
->coaddr
= kmemdup(nla_data(attrs
[XFRMA_COADDR
]),
580 sizeof(*x
->coaddr
), GFP_KERNEL
);
581 if (x
->coaddr
== NULL
)
585 xfrm_mark_get(attrs
, &x
->mark
);
587 err
= __xfrm_init_state(x
, false);
591 if (attrs
[XFRMA_SEC_CTX
] &&
592 security_xfrm_state_alloc(x
, nla_data(attrs
[XFRMA_SEC_CTX
])))
595 if ((err
= xfrm_alloc_replay_state_esn(&x
->replay_esn
, &x
->preplay_esn
,
596 attrs
[XFRMA_REPLAY_ESN_VAL
])))
600 x
->replay_maxdiff
= net
->xfrm
.sysctl_aevent_rseqth
;
601 /* sysctl_xfrm_aevent_etime is in 100ms units */
602 x
->replay_maxage
= (net
->xfrm
.sysctl_aevent_etime
*HZ
)/XFRM_AE_ETH_M
;
604 if ((err
= xfrm_init_replay(x
)))
607 /* override default values from above */
608 xfrm_update_ae_params(x
, attrs
, 0);
613 x
->km
.state
= XFRM_STATE_DEAD
;
620 static int xfrm_add_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
621 struct nlattr
**attrs
)
623 struct net
*net
= sock_net(skb
->sk
);
624 struct xfrm_usersa_info
*p
= nlmsg_data(nlh
);
625 struct xfrm_state
*x
;
629 err
= verify_newsa_info(p
, attrs
);
633 x
= xfrm_state_construct(net
, p
, attrs
, &err
);
638 if (nlh
->nlmsg_type
== XFRM_MSG_NEWSA
)
639 err
= xfrm_state_add(x
);
641 err
= xfrm_state_update(x
);
643 xfrm_audit_state_add(x
, err
? 0 : 1, true);
646 x
->km
.state
= XFRM_STATE_DEAD
;
651 c
.seq
= nlh
->nlmsg_seq
;
652 c
.portid
= nlh
->nlmsg_pid
;
653 c
.event
= nlh
->nlmsg_type
;
655 km_state_notify(x
, &c
);
661 static struct xfrm_state
*xfrm_user_state_lookup(struct net
*net
,
662 struct xfrm_usersa_id
*p
,
663 struct nlattr
**attrs
,
666 struct xfrm_state
*x
= NULL
;
669 u32 mark
= xfrm_mark_get(attrs
, &m
);
671 if (xfrm_id_proto_match(p
->proto
, IPSEC_PROTO_ANY
)) {
673 x
= xfrm_state_lookup(net
, mark
, &p
->daddr
, p
->spi
, p
->proto
, p
->family
);
675 xfrm_address_t
*saddr
= NULL
;
677 verify_one_addr(attrs
, XFRMA_SRCADDR
, &saddr
);
684 x
= xfrm_state_lookup_byaddr(net
, mark
,
686 p
->proto
, p
->family
);
695 static int xfrm_del_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
696 struct nlattr
**attrs
)
698 struct net
*net
= sock_net(skb
->sk
);
699 struct xfrm_state
*x
;
702 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
704 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
708 if ((err
= security_xfrm_state_delete(x
)) != 0)
711 if (xfrm_state_kern(x
)) {
716 err
= xfrm_state_delete(x
);
721 c
.seq
= nlh
->nlmsg_seq
;
722 c
.portid
= nlh
->nlmsg_pid
;
723 c
.event
= nlh
->nlmsg_type
;
724 km_state_notify(x
, &c
);
727 xfrm_audit_state_delete(x
, err
? 0 : 1, true);
732 static void copy_to_user_state(struct xfrm_state
*x
, struct xfrm_usersa_info
*p
)
734 memset(p
, 0, sizeof(*p
));
735 memcpy(&p
->id
, &x
->id
, sizeof(p
->id
));
736 memcpy(&p
->sel
, &x
->sel
, sizeof(p
->sel
));
737 memcpy(&p
->lft
, &x
->lft
, sizeof(p
->lft
));
738 memcpy(&p
->curlft
, &x
->curlft
, sizeof(p
->curlft
));
739 put_unaligned(x
->stats
.replay_window
, &p
->stats
.replay_window
);
740 put_unaligned(x
->stats
.replay
, &p
->stats
.replay
);
741 put_unaligned(x
->stats
.integrity_failed
, &p
->stats
.integrity_failed
);
742 memcpy(&p
->saddr
, &x
->props
.saddr
, sizeof(p
->saddr
));
743 p
->mode
= x
->props
.mode
;
744 p
->replay_window
= x
->props
.replay_window
;
745 p
->reqid
= x
->props
.reqid
;
746 p
->family
= x
->props
.family
;
747 p
->flags
= x
->props
.flags
;
751 struct xfrm_dump_info
{
752 struct sk_buff
*in_skb
;
753 struct sk_buff
*out_skb
;
758 static int copy_sec_ctx(struct xfrm_sec_ctx
*s
, struct sk_buff
*skb
)
760 struct xfrm_user_sec_ctx
*uctx
;
762 int ctx_size
= sizeof(*uctx
) + s
->ctx_len
;
764 attr
= nla_reserve(skb
, XFRMA_SEC_CTX
, ctx_size
);
768 uctx
= nla_data(attr
);
769 uctx
->exttype
= XFRMA_SEC_CTX
;
770 uctx
->len
= ctx_size
;
771 uctx
->ctx_doi
= s
->ctx_doi
;
772 uctx
->ctx_alg
= s
->ctx_alg
;
773 uctx
->ctx_len
= s
->ctx_len
;
774 memcpy(uctx
+ 1, s
->ctx_str
, s
->ctx_len
);
779 static int copy_to_user_auth(struct xfrm_algo_auth
*auth
, struct sk_buff
*skb
)
781 struct xfrm_algo
*algo
;
784 nla
= nla_reserve(skb
, XFRMA_ALG_AUTH
,
785 sizeof(*algo
) + (auth
->alg_key_len
+ 7) / 8);
789 algo
= nla_data(nla
);
790 strncpy(algo
->alg_name
, auth
->alg_name
, sizeof(algo
->alg_name
));
791 memcpy(algo
->alg_key
, auth
->alg_key
, (auth
->alg_key_len
+ 7) / 8);
792 algo
->alg_key_len
= auth
->alg_key_len
;
797 /* Don't change this without updating xfrm_sa_len! */
798 static int copy_to_user_state_extra(struct xfrm_state
*x
,
799 struct xfrm_usersa_info
*p
,
804 copy_to_user_state(x
, p
);
806 if (x
->props
.extra_flags
) {
807 ret
= nla_put_u32(skb
, XFRMA_SA_EXTRA_FLAGS
,
808 x
->props
.extra_flags
);
814 ret
= nla_put(skb
, XFRMA_COADDR
, sizeof(*x
->coaddr
), x
->coaddr
);
819 ret
= nla_put_u64(skb
, XFRMA_LASTUSED
, x
->lastused
);
824 ret
= nla_put(skb
, XFRMA_ALG_AEAD
, aead_len(x
->aead
), x
->aead
);
829 ret
= copy_to_user_auth(x
->aalg
, skb
);
831 ret
= nla_put(skb
, XFRMA_ALG_AUTH_TRUNC
,
832 xfrm_alg_auth_len(x
->aalg
), x
->aalg
);
837 ret
= nla_put(skb
, XFRMA_ALG_CRYPT
, xfrm_alg_len(x
->ealg
), x
->ealg
);
842 ret
= nla_put(skb
, XFRMA_ALG_COMP
, sizeof(*(x
->calg
)), x
->calg
);
847 ret
= nla_put(skb
, XFRMA_ENCAP
, sizeof(*x
->encap
), x
->encap
);
852 ret
= nla_put_u32(skb
, XFRMA_TFCPAD
, x
->tfcpad
);
856 ret
= xfrm_mark_put(skb
, &x
->mark
);
860 ret
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
861 xfrm_replay_state_esn_len(x
->replay_esn
),
864 ret
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
869 ret
= copy_sec_ctx(x
->security
, skb
);
874 static int dump_one_state(struct xfrm_state
*x
, int count
, void *ptr
)
876 struct xfrm_dump_info
*sp
= ptr
;
877 struct sk_buff
*in_skb
= sp
->in_skb
;
878 struct sk_buff
*skb
= sp
->out_skb
;
879 struct xfrm_usersa_info
*p
;
880 struct nlmsghdr
*nlh
;
883 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
884 XFRM_MSG_NEWSA
, sizeof(*p
), sp
->nlmsg_flags
);
890 err
= copy_to_user_state_extra(x
, p
, skb
);
892 nlmsg_cancel(skb
, nlh
);
899 static int xfrm_dump_sa_done(struct netlink_callback
*cb
)
901 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
902 struct sock
*sk
= cb
->skb
->sk
;
903 struct net
*net
= sock_net(sk
);
905 xfrm_state_walk_done(walk
, net
);
909 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1];
910 static int xfrm_dump_sa(struct sk_buff
*skb
, struct netlink_callback
*cb
)
912 struct net
*net
= sock_net(skb
->sk
);
913 struct xfrm_state_walk
*walk
= (struct xfrm_state_walk
*) &cb
->args
[1];
914 struct xfrm_dump_info info
;
916 BUILD_BUG_ON(sizeof(struct xfrm_state_walk
) >
917 sizeof(cb
->args
) - sizeof(cb
->args
[0]));
919 info
.in_skb
= cb
->skb
;
921 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
922 info
.nlmsg_flags
= NLM_F_MULTI
;
925 struct nlattr
*attrs
[XFRMA_MAX
+1];
926 struct xfrm_address_filter
*filter
= NULL
;
932 err
= nlmsg_parse(cb
->nlh
, 0, attrs
, XFRMA_MAX
,
937 if (attrs
[XFRMA_ADDRESS_FILTER
]) {
938 filter
= kmemdup(nla_data(attrs
[XFRMA_ADDRESS_FILTER
]),
939 sizeof(*filter
), GFP_KERNEL
);
944 if (attrs
[XFRMA_PROTO
])
945 proto
= nla_get_u8(attrs
[XFRMA_PROTO
]);
947 xfrm_state_walk_init(walk
, proto
, filter
);
950 (void) xfrm_state_walk(net
, walk
, dump_one_state
, &info
);
955 static struct sk_buff
*xfrm_state_netlink(struct sk_buff
*in_skb
,
956 struct xfrm_state
*x
, u32 seq
)
958 struct xfrm_dump_info info
;
962 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
964 return ERR_PTR(-ENOMEM
);
966 info
.in_skb
= in_skb
;
968 info
.nlmsg_seq
= seq
;
969 info
.nlmsg_flags
= 0;
971 err
= dump_one_state(x
, 0, &info
);
980 /* A wrapper for nlmsg_multicast() checking that nlsk is still available.
981 * Must be called with RCU read lock.
983 static inline int xfrm_nlmsg_multicast(struct net
*net
, struct sk_buff
*skb
,
984 u32 pid
, unsigned int group
)
986 struct sock
*nlsk
= rcu_dereference(net
->xfrm
.nlsk
);
989 return nlmsg_multicast(nlsk
, skb
, pid
, group
, GFP_ATOMIC
);
994 static inline size_t xfrm_spdinfo_msgsize(void)
996 return NLMSG_ALIGN(4)
997 + nla_total_size(sizeof(struct xfrmu_spdinfo
))
998 + nla_total_size(sizeof(struct xfrmu_spdhinfo
))
999 + nla_total_size(sizeof(struct xfrmu_spdhthresh
))
1000 + nla_total_size(sizeof(struct xfrmu_spdhthresh
));
1003 static int build_spdinfo(struct sk_buff
*skb
, struct net
*net
,
1004 u32 portid
, u32 seq
, u32 flags
)
1006 struct xfrmk_spdinfo si
;
1007 struct xfrmu_spdinfo spc
;
1008 struct xfrmu_spdhinfo sph
;
1009 struct xfrmu_spdhthresh spt4
, spt6
;
1010 struct nlmsghdr
*nlh
;
1015 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSPDINFO
, sizeof(u32
), 0);
1016 if (nlh
== NULL
) /* shouldn't really happen ... */
1019 f
= nlmsg_data(nlh
);
1021 xfrm_spd_getinfo(net
, &si
);
1022 spc
.incnt
= si
.incnt
;
1023 spc
.outcnt
= si
.outcnt
;
1024 spc
.fwdcnt
= si
.fwdcnt
;
1025 spc
.inscnt
= si
.inscnt
;
1026 spc
.outscnt
= si
.outscnt
;
1027 spc
.fwdscnt
= si
.fwdscnt
;
1028 sph
.spdhcnt
= si
.spdhcnt
;
1029 sph
.spdhmcnt
= si
.spdhmcnt
;
1032 lseq
= read_seqbegin(&net
->xfrm
.policy_hthresh
.lock
);
1034 spt4
.lbits
= net
->xfrm
.policy_hthresh
.lbits4
;
1035 spt4
.rbits
= net
->xfrm
.policy_hthresh
.rbits4
;
1036 spt6
.lbits
= net
->xfrm
.policy_hthresh
.lbits6
;
1037 spt6
.rbits
= net
->xfrm
.policy_hthresh
.rbits6
;
1038 } while (read_seqretry(&net
->xfrm
.policy_hthresh
.lock
, lseq
));
1040 err
= nla_put(skb
, XFRMA_SPD_INFO
, sizeof(spc
), &spc
);
1042 err
= nla_put(skb
, XFRMA_SPD_HINFO
, sizeof(sph
), &sph
);
1044 err
= nla_put(skb
, XFRMA_SPD_IPV4_HTHRESH
, sizeof(spt4
), &spt4
);
1046 err
= nla_put(skb
, XFRMA_SPD_IPV6_HTHRESH
, sizeof(spt6
), &spt6
);
1048 nlmsg_cancel(skb
, nlh
);
1052 nlmsg_end(skb
, nlh
);
1056 static int xfrm_set_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1057 struct nlattr
**attrs
)
1059 struct net
*net
= sock_net(skb
->sk
);
1060 struct xfrmu_spdhthresh
*thresh4
= NULL
;
1061 struct xfrmu_spdhthresh
*thresh6
= NULL
;
1063 /* selector prefixlen thresholds to hash policies */
1064 if (attrs
[XFRMA_SPD_IPV4_HTHRESH
]) {
1065 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV4_HTHRESH
];
1067 if (nla_len(rta
) < sizeof(*thresh4
))
1069 thresh4
= nla_data(rta
);
1070 if (thresh4
->lbits
> 32 || thresh4
->rbits
> 32)
1073 if (attrs
[XFRMA_SPD_IPV6_HTHRESH
]) {
1074 struct nlattr
*rta
= attrs
[XFRMA_SPD_IPV6_HTHRESH
];
1076 if (nla_len(rta
) < sizeof(*thresh6
))
1078 thresh6
= nla_data(rta
);
1079 if (thresh6
->lbits
> 128 || thresh6
->rbits
> 128)
1083 if (thresh4
|| thresh6
) {
1084 write_seqlock(&net
->xfrm
.policy_hthresh
.lock
);
1086 net
->xfrm
.policy_hthresh
.lbits4
= thresh4
->lbits
;
1087 net
->xfrm
.policy_hthresh
.rbits4
= thresh4
->rbits
;
1090 net
->xfrm
.policy_hthresh
.lbits6
= thresh6
->lbits
;
1091 net
->xfrm
.policy_hthresh
.rbits6
= thresh6
->rbits
;
1093 write_sequnlock(&net
->xfrm
.policy_hthresh
.lock
);
1095 xfrm_policy_hash_rebuild(net
);
1101 static int xfrm_get_spdinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1102 struct nlattr
**attrs
)
1104 struct net
*net
= sock_net(skb
->sk
);
1105 struct sk_buff
*r_skb
;
1106 u32
*flags
= nlmsg_data(nlh
);
1107 u32 sportid
= NETLINK_CB(skb
).portid
;
1108 u32 seq
= nlh
->nlmsg_seq
;
1110 r_skb
= nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC
);
1114 if (build_spdinfo(r_skb
, net
, sportid
, seq
, *flags
) < 0)
1117 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1120 static inline size_t xfrm_sadinfo_msgsize(void)
1122 return NLMSG_ALIGN(4)
1123 + nla_total_size(sizeof(struct xfrmu_sadhinfo
))
1124 + nla_total_size(4); /* XFRMA_SAD_CNT */
1127 static int build_sadinfo(struct sk_buff
*skb
, struct net
*net
,
1128 u32 portid
, u32 seq
, u32 flags
)
1130 struct xfrmk_sadinfo si
;
1131 struct xfrmu_sadhinfo sh
;
1132 struct nlmsghdr
*nlh
;
1136 nlh
= nlmsg_put(skb
, portid
, seq
, XFRM_MSG_NEWSADINFO
, sizeof(u32
), 0);
1137 if (nlh
== NULL
) /* shouldn't really happen ... */
1140 f
= nlmsg_data(nlh
);
1142 xfrm_sad_getinfo(net
, &si
);
1144 sh
.sadhmcnt
= si
.sadhmcnt
;
1145 sh
.sadhcnt
= si
.sadhcnt
;
1147 err
= nla_put_u32(skb
, XFRMA_SAD_CNT
, si
.sadcnt
);
1149 err
= nla_put(skb
, XFRMA_SAD_HINFO
, sizeof(sh
), &sh
);
1151 nlmsg_cancel(skb
, nlh
);
1155 nlmsg_end(skb
, nlh
);
1159 static int xfrm_get_sadinfo(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1160 struct nlattr
**attrs
)
1162 struct net
*net
= sock_net(skb
->sk
);
1163 struct sk_buff
*r_skb
;
1164 u32
*flags
= nlmsg_data(nlh
);
1165 u32 sportid
= NETLINK_CB(skb
).portid
;
1166 u32 seq
= nlh
->nlmsg_seq
;
1168 r_skb
= nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC
);
1172 if (build_sadinfo(r_skb
, net
, sportid
, seq
, *flags
) < 0)
1175 return nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, sportid
);
1178 static int xfrm_get_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1179 struct nlattr
**attrs
)
1181 struct net
*net
= sock_net(skb
->sk
);
1182 struct xfrm_usersa_id
*p
= nlmsg_data(nlh
);
1183 struct xfrm_state
*x
;
1184 struct sk_buff
*resp_skb
;
1187 x
= xfrm_user_state_lookup(net
, p
, attrs
, &err
);
1191 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1192 if (IS_ERR(resp_skb
)) {
1193 err
= PTR_ERR(resp_skb
);
1195 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1202 static int xfrm_alloc_userspi(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1203 struct nlattr
**attrs
)
1205 struct net
*net
= sock_net(skb
->sk
);
1206 struct xfrm_state
*x
;
1207 struct xfrm_userspi_info
*p
;
1208 struct sk_buff
*resp_skb
;
1209 xfrm_address_t
*daddr
;
1215 p
= nlmsg_data(nlh
);
1216 err
= verify_spi_info(p
->info
.id
.proto
, p
->min
, p
->max
);
1220 family
= p
->info
.family
;
1221 daddr
= &p
->info
.id
.daddr
;
1225 mark
= xfrm_mark_get(attrs
, &m
);
1227 x
= xfrm_find_acq_byseq(net
, mark
, p
->info
.seq
);
1228 if (x
&& !xfrm_addr_equal(&x
->id
.daddr
, daddr
, family
)) {
1235 x
= xfrm_find_acq(net
, &m
, p
->info
.mode
, p
->info
.reqid
,
1236 p
->info
.id
.proto
, daddr
,
1243 err
= xfrm_alloc_spi(x
, p
->min
, p
->max
);
1247 resp_skb
= xfrm_state_netlink(skb
, x
, nlh
->nlmsg_seq
);
1248 if (IS_ERR(resp_skb
)) {
1249 err
= PTR_ERR(resp_skb
);
1253 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
, NETLINK_CB(skb
).portid
);
1261 static int verify_policy_dir(u8 dir
)
1264 case XFRM_POLICY_IN
:
1265 case XFRM_POLICY_OUT
:
1266 case XFRM_POLICY_FWD
:
1276 static int verify_policy_type(u8 type
)
1279 case XFRM_POLICY_TYPE_MAIN
:
1280 #ifdef CONFIG_XFRM_SUB_POLICY
1281 case XFRM_POLICY_TYPE_SUB
:
1292 static int verify_newpolicy_info(struct xfrm_userpolicy_info
*p
)
1297 case XFRM_SHARE_ANY
:
1298 case XFRM_SHARE_SESSION
:
1299 case XFRM_SHARE_USER
:
1300 case XFRM_SHARE_UNIQUE
:
1307 switch (p
->action
) {
1308 case XFRM_POLICY_ALLOW
:
1309 case XFRM_POLICY_BLOCK
:
1316 switch (p
->sel
.family
) {
1321 #if IS_ENABLED(CONFIG_IPV6)
1324 return -EAFNOSUPPORT
;
1331 ret
= verify_policy_dir(p
->dir
);
1334 if (p
->index
&& ((p
->index
& XFRM_POLICY_MAX
) != p
->dir
))
1340 static int copy_from_user_sec_ctx(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1342 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1343 struct xfrm_user_sec_ctx
*uctx
;
1348 uctx
= nla_data(rt
);
1349 return security_xfrm_policy_alloc(&pol
->security
, uctx
, GFP_KERNEL
);
1352 static void copy_templates(struct xfrm_policy
*xp
, struct xfrm_user_tmpl
*ut
,
1358 for (i
= 0; i
< nr
; i
++, ut
++) {
1359 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
1361 memcpy(&t
->id
, &ut
->id
, sizeof(struct xfrm_id
));
1362 memcpy(&t
->saddr
, &ut
->saddr
,
1363 sizeof(xfrm_address_t
));
1364 t
->reqid
= ut
->reqid
;
1366 t
->share
= ut
->share
;
1367 t
->optional
= ut
->optional
;
1368 t
->aalgos
= ut
->aalgos
;
1369 t
->ealgos
= ut
->ealgos
;
1370 t
->calgos
= ut
->calgos
;
1371 /* If all masks are ~0, then we allow all algorithms. */
1372 t
->allalgs
= !~(t
->aalgos
& t
->ealgos
& t
->calgos
);
1373 t
->encap_family
= ut
->family
;
1377 static int validate_tmpl(int nr
, struct xfrm_user_tmpl
*ut
, u16 family
)
1381 if (nr
> XFRM_MAX_DEPTH
)
1384 for (i
= 0; i
< nr
; i
++) {
1385 /* We never validated the ut->family value, so many
1386 * applications simply leave it at zero. The check was
1387 * never made and ut->family was ignored because all
1388 * templates could be assumed to have the same family as
1389 * the policy itself. Now that we will have ipv4-in-ipv6
1390 * and ipv6-in-ipv4 tunnels, this is no longer true.
1393 ut
[i
].family
= family
;
1395 switch (ut
[i
].family
) {
1398 #if IS_ENABLED(CONFIG_IPV6)
1410 static int copy_from_user_tmpl(struct xfrm_policy
*pol
, struct nlattr
**attrs
)
1412 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
1417 struct xfrm_user_tmpl
*utmpl
= nla_data(rt
);
1418 int nr
= nla_len(rt
) / sizeof(*utmpl
);
1421 err
= validate_tmpl(nr
, utmpl
, pol
->family
);
1425 copy_templates(pol
, utmpl
, nr
);
1430 static int copy_from_user_policy_type(u8
*tp
, struct nlattr
**attrs
)
1432 struct nlattr
*rt
= attrs
[XFRMA_POLICY_TYPE
];
1433 struct xfrm_userpolicy_type
*upt
;
1434 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1442 err
= verify_policy_type(type
);
1450 static void copy_from_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
)
1452 xp
->priority
= p
->priority
;
1453 xp
->index
= p
->index
;
1454 memcpy(&xp
->selector
, &p
->sel
, sizeof(xp
->selector
));
1455 memcpy(&xp
->lft
, &p
->lft
, sizeof(xp
->lft
));
1456 xp
->action
= p
->action
;
1457 xp
->flags
= p
->flags
;
1458 xp
->family
= p
->sel
.family
;
1459 /* XXX xp->share = p->share; */
1462 static void copy_to_user_policy(struct xfrm_policy
*xp
, struct xfrm_userpolicy_info
*p
, int dir
)
1464 memset(p
, 0, sizeof(*p
));
1465 memcpy(&p
->sel
, &xp
->selector
, sizeof(p
->sel
));
1466 memcpy(&p
->lft
, &xp
->lft
, sizeof(p
->lft
));
1467 memcpy(&p
->curlft
, &xp
->curlft
, sizeof(p
->curlft
));
1468 p
->priority
= xp
->priority
;
1469 p
->index
= xp
->index
;
1470 p
->sel
.family
= xp
->family
;
1472 p
->action
= xp
->action
;
1473 p
->flags
= xp
->flags
;
1474 p
->share
= XFRM_SHARE_ANY
; /* XXX xp->share */
1477 static struct xfrm_policy
*xfrm_policy_construct(struct net
*net
, struct xfrm_userpolicy_info
*p
, struct nlattr
**attrs
, int *errp
)
1479 struct xfrm_policy
*xp
= xfrm_policy_alloc(net
, GFP_KERNEL
);
1487 copy_from_user_policy(xp
, p
);
1489 err
= copy_from_user_policy_type(&xp
->type
, attrs
);
1493 if (!(err
= copy_from_user_tmpl(xp
, attrs
)))
1494 err
= copy_from_user_sec_ctx(xp
, attrs
);
1498 xfrm_mark_get(attrs
, &xp
->mark
);
1504 xfrm_policy_destroy(xp
);
1508 static int xfrm_add_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1509 struct nlattr
**attrs
)
1511 struct net
*net
= sock_net(skb
->sk
);
1512 struct xfrm_userpolicy_info
*p
= nlmsg_data(nlh
);
1513 struct xfrm_policy
*xp
;
1518 err
= verify_newpolicy_info(p
);
1521 err
= verify_sec_ctx_len(attrs
);
1525 xp
= xfrm_policy_construct(net
, p
, attrs
, &err
);
1529 /* shouldn't excl be based on nlh flags??
1530 * Aha! this is anti-netlink really i.e more pfkey derived
1531 * in netlink excl is a flag and you wouldnt need
1532 * a type XFRM_MSG_UPDPOLICY - JHS */
1533 excl
= nlh
->nlmsg_type
== XFRM_MSG_NEWPOLICY
;
1534 err
= xfrm_policy_insert(p
->dir
, xp
, excl
);
1535 xfrm_audit_policy_add(xp
, err
? 0 : 1, true);
1538 security_xfrm_policy_free(xp
->security
);
1543 c
.event
= nlh
->nlmsg_type
;
1544 c
.seq
= nlh
->nlmsg_seq
;
1545 c
.portid
= nlh
->nlmsg_pid
;
1546 km_policy_notify(xp
, p
->dir
, &c
);
1553 static int copy_to_user_tmpl(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1555 struct xfrm_user_tmpl vec
[XFRM_MAX_DEPTH
];
1558 if (xp
->xfrm_nr
== 0)
1561 for (i
= 0; i
< xp
->xfrm_nr
; i
++) {
1562 struct xfrm_user_tmpl
*up
= &vec
[i
];
1563 struct xfrm_tmpl
*kp
= &xp
->xfrm_vec
[i
];
1565 memset(up
, 0, sizeof(*up
));
1566 memcpy(&up
->id
, &kp
->id
, sizeof(up
->id
));
1567 up
->family
= kp
->encap_family
;
1568 memcpy(&up
->saddr
, &kp
->saddr
, sizeof(up
->saddr
));
1569 up
->reqid
= kp
->reqid
;
1570 up
->mode
= kp
->mode
;
1571 up
->share
= kp
->share
;
1572 up
->optional
= kp
->optional
;
1573 up
->aalgos
= kp
->aalgos
;
1574 up
->ealgos
= kp
->ealgos
;
1575 up
->calgos
= kp
->calgos
;
1578 return nla_put(skb
, XFRMA_TMPL
,
1579 sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
, vec
);
1582 static inline int copy_to_user_state_sec_ctx(struct xfrm_state
*x
, struct sk_buff
*skb
)
1585 return copy_sec_ctx(x
->security
, skb
);
1590 static inline int copy_to_user_sec_ctx(struct xfrm_policy
*xp
, struct sk_buff
*skb
)
1593 return copy_sec_ctx(xp
->security
, skb
);
1596 static inline size_t userpolicy_type_attrsize(void)
1598 #ifdef CONFIG_XFRM_SUB_POLICY
1599 return nla_total_size(sizeof(struct xfrm_userpolicy_type
));
1605 #ifdef CONFIG_XFRM_SUB_POLICY
1606 static int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1608 struct xfrm_userpolicy_type upt
= {
1612 return nla_put(skb
, XFRMA_POLICY_TYPE
, sizeof(upt
), &upt
);
1616 static inline int copy_to_user_policy_type(u8 type
, struct sk_buff
*skb
)
1622 static int dump_one_policy(struct xfrm_policy
*xp
, int dir
, int count
, void *ptr
)
1624 struct xfrm_dump_info
*sp
= ptr
;
1625 struct xfrm_userpolicy_info
*p
;
1626 struct sk_buff
*in_skb
= sp
->in_skb
;
1627 struct sk_buff
*skb
= sp
->out_skb
;
1628 struct nlmsghdr
*nlh
;
1631 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, sp
->nlmsg_seq
,
1632 XFRM_MSG_NEWPOLICY
, sizeof(*p
), sp
->nlmsg_flags
);
1636 p
= nlmsg_data(nlh
);
1637 copy_to_user_policy(xp
, p
, dir
);
1638 err
= copy_to_user_tmpl(xp
, skb
);
1640 err
= copy_to_user_sec_ctx(xp
, skb
);
1642 err
= copy_to_user_policy_type(xp
->type
, skb
);
1644 err
= xfrm_mark_put(skb
, &xp
->mark
);
1646 nlmsg_cancel(skb
, nlh
);
1649 nlmsg_end(skb
, nlh
);
1653 static int xfrm_dump_policy_done(struct netlink_callback
*cb
)
1655 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1656 struct net
*net
= sock_net(cb
->skb
->sk
);
1658 xfrm_policy_walk_done(walk
, net
);
1662 static int xfrm_dump_policy_start(struct netlink_callback
*cb
)
1664 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1666 BUILD_BUG_ON(sizeof(*walk
) > sizeof(cb
->args
));
1668 xfrm_policy_walk_init(walk
, XFRM_POLICY_TYPE_ANY
);
1672 static int xfrm_dump_policy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1674 struct net
*net
= sock_net(skb
->sk
);
1675 struct xfrm_policy_walk
*walk
= (struct xfrm_policy_walk
*)cb
->args
;
1676 struct xfrm_dump_info info
;
1678 info
.in_skb
= cb
->skb
;
1680 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
1681 info
.nlmsg_flags
= NLM_F_MULTI
;
1683 (void) xfrm_policy_walk(net
, walk
, dump_one_policy
, &info
);
1688 static struct sk_buff
*xfrm_policy_netlink(struct sk_buff
*in_skb
,
1689 struct xfrm_policy
*xp
,
1692 struct xfrm_dump_info info
;
1693 struct sk_buff
*skb
;
1696 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1698 return ERR_PTR(-ENOMEM
);
1700 info
.in_skb
= in_skb
;
1702 info
.nlmsg_seq
= seq
;
1703 info
.nlmsg_flags
= 0;
1705 err
= dump_one_policy(xp
, dir
, 0, &info
);
1708 return ERR_PTR(err
);
1714 static int xfrm_get_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1715 struct nlattr
**attrs
)
1717 struct net
*net
= sock_net(skb
->sk
);
1718 struct xfrm_policy
*xp
;
1719 struct xfrm_userpolicy_id
*p
;
1720 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1725 u32 mark
= xfrm_mark_get(attrs
, &m
);
1727 p
= nlmsg_data(nlh
);
1728 delete = nlh
->nlmsg_type
== XFRM_MSG_DELPOLICY
;
1730 err
= copy_from_user_policy_type(&type
, attrs
);
1734 err
= verify_policy_dir(p
->dir
);
1739 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, delete, &err
);
1741 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
1742 struct xfrm_sec_ctx
*ctx
;
1744 err
= verify_sec_ctx_len(attrs
);
1750 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
1752 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
1756 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
, &p
->sel
,
1758 security_xfrm_policy_free(ctx
);
1764 struct sk_buff
*resp_skb
;
1766 resp_skb
= xfrm_policy_netlink(skb
, xp
, p
->dir
, nlh
->nlmsg_seq
);
1767 if (IS_ERR(resp_skb
)) {
1768 err
= PTR_ERR(resp_skb
);
1770 err
= nlmsg_unicast(net
->xfrm
.nlsk
, resp_skb
,
1771 NETLINK_CB(skb
).portid
);
1774 xfrm_audit_policy_delete(xp
, err
? 0 : 1, true);
1779 c
.data
.byid
= p
->index
;
1780 c
.event
= nlh
->nlmsg_type
;
1781 c
.seq
= nlh
->nlmsg_seq
;
1782 c
.portid
= nlh
->nlmsg_pid
;
1783 km_policy_notify(xp
, p
->dir
, &c
);
1788 if (delete && err
== 0)
1789 xfrm_garbage_collect(net
);
1793 static int xfrm_flush_sa(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1794 struct nlattr
**attrs
)
1796 struct net
*net
= sock_net(skb
->sk
);
1798 struct xfrm_usersa_flush
*p
= nlmsg_data(nlh
);
1801 err
= xfrm_state_flush(net
, p
->proto
, true);
1803 if (err
== -ESRCH
) /* empty table */
1807 c
.data
.proto
= p
->proto
;
1808 c
.event
= nlh
->nlmsg_type
;
1809 c
.seq
= nlh
->nlmsg_seq
;
1810 c
.portid
= nlh
->nlmsg_pid
;
1812 km_state_notify(NULL
, &c
);
1817 static inline size_t xfrm_aevent_msgsize(struct xfrm_state
*x
)
1819 size_t replay_size
= x
->replay_esn
?
1820 xfrm_replay_state_esn_len(x
->replay_esn
) :
1821 sizeof(struct xfrm_replay_state
);
1823 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id
))
1824 + nla_total_size(replay_size
)
1825 + nla_total_size(sizeof(struct xfrm_lifetime_cur
))
1826 + nla_total_size(sizeof(struct xfrm_mark
))
1827 + nla_total_size(4) /* XFRM_AE_RTHR */
1828 + nla_total_size(4); /* XFRM_AE_ETHR */
1831 static int build_aevent(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
1833 struct xfrm_aevent_id
*id
;
1834 struct nlmsghdr
*nlh
;
1837 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_NEWAE
, sizeof(*id
), 0);
1841 id
= nlmsg_data(nlh
);
1842 memcpy(&id
->sa_id
.daddr
, &x
->id
.daddr
, sizeof(x
->id
.daddr
));
1843 id
->sa_id
.spi
= x
->id
.spi
;
1844 id
->sa_id
.family
= x
->props
.family
;
1845 id
->sa_id
.proto
= x
->id
.proto
;
1846 memcpy(&id
->saddr
, &x
->props
.saddr
, sizeof(x
->props
.saddr
));
1847 id
->reqid
= x
->props
.reqid
;
1848 id
->flags
= c
->data
.aevent
;
1850 if (x
->replay_esn
) {
1851 err
= nla_put(skb
, XFRMA_REPLAY_ESN_VAL
,
1852 xfrm_replay_state_esn_len(x
->replay_esn
),
1855 err
= nla_put(skb
, XFRMA_REPLAY_VAL
, sizeof(x
->replay
),
1860 err
= nla_put(skb
, XFRMA_LTIME_VAL
, sizeof(x
->curlft
), &x
->curlft
);
1864 if (id
->flags
& XFRM_AE_RTHR
) {
1865 err
= nla_put_u32(skb
, XFRMA_REPLAY_THRESH
, x
->replay_maxdiff
);
1869 if (id
->flags
& XFRM_AE_ETHR
) {
1870 err
= nla_put_u32(skb
, XFRMA_ETIMER_THRESH
,
1871 x
->replay_maxage
* 10 / HZ
);
1875 err
= xfrm_mark_put(skb
, &x
->mark
);
1879 nlmsg_end(skb
, nlh
);
1883 nlmsg_cancel(skb
, nlh
);
1887 static int xfrm_get_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1888 struct nlattr
**attrs
)
1890 struct net
*net
= sock_net(skb
->sk
);
1891 struct xfrm_state
*x
;
1892 struct sk_buff
*r_skb
;
1897 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1898 struct xfrm_usersa_id
*id
= &p
->sa_id
;
1900 mark
= xfrm_mark_get(attrs
, &m
);
1902 x
= xfrm_state_lookup(net
, mark
, &id
->daddr
, id
->spi
, id
->proto
, id
->family
);
1906 r_skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
1907 if (r_skb
== NULL
) {
1913 * XXX: is this lock really needed - none of the other
1914 * gets lock (the concern is things getting updated
1915 * while we are still reading) - jhs
1917 spin_lock_bh(&x
->lock
);
1918 c
.data
.aevent
= p
->flags
;
1919 c
.seq
= nlh
->nlmsg_seq
;
1920 c
.portid
= nlh
->nlmsg_pid
;
1922 if (build_aevent(r_skb
, x
, &c
) < 0)
1924 err
= nlmsg_unicast(net
->xfrm
.nlsk
, r_skb
, NETLINK_CB(skb
).portid
);
1925 spin_unlock_bh(&x
->lock
);
1930 static int xfrm_new_ae(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1931 struct nlattr
**attrs
)
1933 struct net
*net
= sock_net(skb
->sk
);
1934 struct xfrm_state
*x
;
1939 struct xfrm_aevent_id
*p
= nlmsg_data(nlh
);
1940 struct nlattr
*rp
= attrs
[XFRMA_REPLAY_VAL
];
1941 struct nlattr
*re
= attrs
[XFRMA_REPLAY_ESN_VAL
];
1942 struct nlattr
*lt
= attrs
[XFRMA_LTIME_VAL
];
1943 struct nlattr
*et
= attrs
[XFRMA_ETIMER_THRESH
];
1944 struct nlattr
*rt
= attrs
[XFRMA_REPLAY_THRESH
];
1946 if (!lt
&& !rp
&& !re
&& !et
&& !rt
)
1949 /* pedantic mode - thou shalt sayeth replaceth */
1950 if (!(nlh
->nlmsg_flags
&NLM_F_REPLACE
))
1953 mark
= xfrm_mark_get(attrs
, &m
);
1955 x
= xfrm_state_lookup(net
, mark
, &p
->sa_id
.daddr
, p
->sa_id
.spi
, p
->sa_id
.proto
, p
->sa_id
.family
);
1959 if (x
->km
.state
!= XFRM_STATE_VALID
)
1962 err
= xfrm_replay_verify_len(x
->replay_esn
, re
);
1966 spin_lock_bh(&x
->lock
);
1967 xfrm_update_ae_params(x
, attrs
, 1);
1968 spin_unlock_bh(&x
->lock
);
1970 c
.event
= nlh
->nlmsg_type
;
1971 c
.seq
= nlh
->nlmsg_seq
;
1972 c
.portid
= nlh
->nlmsg_pid
;
1973 c
.data
.aevent
= XFRM_AE_CU
;
1974 km_state_notify(x
, &c
);
1981 static int xfrm_flush_policy(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1982 struct nlattr
**attrs
)
1984 struct net
*net
= sock_net(skb
->sk
);
1986 u8 type
= XFRM_POLICY_TYPE_MAIN
;
1989 err
= copy_from_user_policy_type(&type
, attrs
);
1993 err
= xfrm_policy_flush(net
, type
, true);
1995 if (err
== -ESRCH
) /* empty table */
2001 c
.event
= nlh
->nlmsg_type
;
2002 c
.seq
= nlh
->nlmsg_seq
;
2003 c
.portid
= nlh
->nlmsg_pid
;
2005 km_policy_notify(NULL
, 0, &c
);
2009 static int xfrm_add_pol_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2010 struct nlattr
**attrs
)
2012 struct net
*net
= sock_net(skb
->sk
);
2013 struct xfrm_policy
*xp
;
2014 struct xfrm_user_polexpire
*up
= nlmsg_data(nlh
);
2015 struct xfrm_userpolicy_info
*p
= &up
->pol
;
2016 u8 type
= XFRM_POLICY_TYPE_MAIN
;
2019 u32 mark
= xfrm_mark_get(attrs
, &m
);
2021 err
= copy_from_user_policy_type(&type
, attrs
);
2025 err
= verify_policy_dir(p
->dir
);
2030 xp
= xfrm_policy_byid(net
, mark
, type
, p
->dir
, p
->index
, 0, &err
);
2032 struct nlattr
*rt
= attrs
[XFRMA_SEC_CTX
];
2033 struct xfrm_sec_ctx
*ctx
;
2035 err
= verify_sec_ctx_len(attrs
);
2041 struct xfrm_user_sec_ctx
*uctx
= nla_data(rt
);
2043 err
= security_xfrm_policy_alloc(&ctx
, uctx
, GFP_KERNEL
);
2047 xp
= xfrm_policy_bysel_ctx(net
, mark
, type
, p
->dir
,
2048 &p
->sel
, ctx
, 0, &err
);
2049 security_xfrm_policy_free(ctx
);
2054 if (unlikely(xp
->walk
.dead
))
2059 xfrm_policy_delete(xp
, p
->dir
);
2060 xfrm_audit_policy_delete(xp
, 1, true);
2062 // reset the timers here?
2063 WARN(1, "Don't know what to do with soft policy expire\n");
2065 km_policy_expired(xp
, p
->dir
, up
->hard
, nlh
->nlmsg_pid
);
2072 static int xfrm_add_sa_expire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2073 struct nlattr
**attrs
)
2075 struct net
*net
= sock_net(skb
->sk
);
2076 struct xfrm_state
*x
;
2078 struct xfrm_user_expire
*ue
= nlmsg_data(nlh
);
2079 struct xfrm_usersa_info
*p
= &ue
->state
;
2081 u32 mark
= xfrm_mark_get(attrs
, &m
);
2083 x
= xfrm_state_lookup(net
, mark
, &p
->id
.daddr
, p
->id
.spi
, p
->id
.proto
, p
->family
);
2089 spin_lock_bh(&x
->lock
);
2091 if (x
->km
.state
!= XFRM_STATE_VALID
)
2093 km_state_expired(x
, ue
->hard
, nlh
->nlmsg_pid
);
2096 __xfrm_state_delete(x
);
2097 xfrm_audit_state_delete(x
, 1, true);
2101 spin_unlock_bh(&x
->lock
);
2106 static int xfrm_add_acquire(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2107 struct nlattr
**attrs
)
2109 struct net
*net
= sock_net(skb
->sk
);
2110 struct xfrm_policy
*xp
;
2111 struct xfrm_user_tmpl
*ut
;
2113 struct nlattr
*rt
= attrs
[XFRMA_TMPL
];
2114 struct xfrm_mark mark
;
2116 struct xfrm_user_acquire
*ua
= nlmsg_data(nlh
);
2117 struct xfrm_state
*x
= xfrm_state_alloc(net
);
2123 xfrm_mark_get(attrs
, &mark
);
2125 err
= verify_newpolicy_info(&ua
->policy
);
2130 xp
= xfrm_policy_construct(net
, &ua
->policy
, attrs
, &err
);
2134 memcpy(&x
->id
, &ua
->id
, sizeof(ua
->id
));
2135 memcpy(&x
->props
.saddr
, &ua
->saddr
, sizeof(ua
->saddr
));
2136 memcpy(&x
->sel
, &ua
->sel
, sizeof(ua
->sel
));
2137 xp
->mark
.m
= x
->mark
.m
= mark
.m
;
2138 xp
->mark
.v
= x
->mark
.v
= mark
.v
;
2140 /* extract the templates and for each call km_key */
2141 for (i
= 0; i
< xp
->xfrm_nr
; i
++, ut
++) {
2142 struct xfrm_tmpl
*t
= &xp
->xfrm_vec
[i
];
2143 memcpy(&x
->id
, &t
->id
, sizeof(x
->id
));
2144 x
->props
.mode
= t
->mode
;
2145 x
->props
.reqid
= t
->reqid
;
2146 x
->props
.family
= ut
->family
;
2147 t
->aalgos
= ua
->aalgos
;
2148 t
->ealgos
= ua
->ealgos
;
2149 t
->calgos
= ua
->calgos
;
2150 err
= km_query(x
, t
, xp
);
2160 WARN(1, "BAD policy passed\n");
2167 #ifdef CONFIG_XFRM_MIGRATE
2168 static int copy_from_user_migrate(struct xfrm_migrate
*ma
,
2169 struct xfrm_kmaddress
*k
,
2170 struct nlattr
**attrs
, int *num
)
2172 struct nlattr
*rt
= attrs
[XFRMA_MIGRATE
];
2173 struct xfrm_user_migrate
*um
;
2177 struct xfrm_user_kmaddress
*uk
;
2179 uk
= nla_data(attrs
[XFRMA_KMADDRESS
]);
2180 memcpy(&k
->local
, &uk
->local
, sizeof(k
->local
));
2181 memcpy(&k
->remote
, &uk
->remote
, sizeof(k
->remote
));
2182 k
->family
= uk
->family
;
2183 k
->reserved
= uk
->reserved
;
2187 num_migrate
= nla_len(rt
) / sizeof(*um
);
2189 if (num_migrate
<= 0 || num_migrate
> XFRM_MAX_DEPTH
)
2192 for (i
= 0; i
< num_migrate
; i
++, um
++, ma
++) {
2193 memcpy(&ma
->old_daddr
, &um
->old_daddr
, sizeof(ma
->old_daddr
));
2194 memcpy(&ma
->old_saddr
, &um
->old_saddr
, sizeof(ma
->old_saddr
));
2195 memcpy(&ma
->new_daddr
, &um
->new_daddr
, sizeof(ma
->new_daddr
));
2196 memcpy(&ma
->new_saddr
, &um
->new_saddr
, sizeof(ma
->new_saddr
));
2198 ma
->proto
= um
->proto
;
2199 ma
->mode
= um
->mode
;
2200 ma
->reqid
= um
->reqid
;
2202 ma
->old_family
= um
->old_family
;
2203 ma
->new_family
= um
->new_family
;
2210 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2211 struct nlattr
**attrs
)
2213 struct xfrm_userpolicy_id
*pi
= nlmsg_data(nlh
);
2214 struct xfrm_migrate m
[XFRM_MAX_DEPTH
];
2215 struct xfrm_kmaddress km
, *kmp
;
2219 struct net
*net
= sock_net(skb
->sk
);
2221 if (attrs
[XFRMA_MIGRATE
] == NULL
)
2224 kmp
= attrs
[XFRMA_KMADDRESS
] ? &km
: NULL
;
2226 err
= copy_from_user_policy_type(&type
, attrs
);
2230 err
= copy_from_user_migrate((struct xfrm_migrate
*)m
, kmp
, attrs
, &n
);
2237 xfrm_migrate(&pi
->sel
, pi
->dir
, type
, m
, n
, kmp
, net
);
2242 static int xfrm_do_migrate(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2243 struct nlattr
**attrs
)
2245 return -ENOPROTOOPT
;
2249 #ifdef CONFIG_XFRM_MIGRATE
2250 static int copy_to_user_migrate(const struct xfrm_migrate
*m
, struct sk_buff
*skb
)
2252 struct xfrm_user_migrate um
;
2254 memset(&um
, 0, sizeof(um
));
2255 um
.proto
= m
->proto
;
2257 um
.reqid
= m
->reqid
;
2258 um
.old_family
= m
->old_family
;
2259 memcpy(&um
.old_daddr
, &m
->old_daddr
, sizeof(um
.old_daddr
));
2260 memcpy(&um
.old_saddr
, &m
->old_saddr
, sizeof(um
.old_saddr
));
2261 um
.new_family
= m
->new_family
;
2262 memcpy(&um
.new_daddr
, &m
->new_daddr
, sizeof(um
.new_daddr
));
2263 memcpy(&um
.new_saddr
, &m
->new_saddr
, sizeof(um
.new_saddr
));
2265 return nla_put(skb
, XFRMA_MIGRATE
, sizeof(um
), &um
);
2268 static int copy_to_user_kmaddress(const struct xfrm_kmaddress
*k
, struct sk_buff
*skb
)
2270 struct xfrm_user_kmaddress uk
;
2272 memset(&uk
, 0, sizeof(uk
));
2273 uk
.family
= k
->family
;
2274 uk
.reserved
= k
->reserved
;
2275 memcpy(&uk
.local
, &k
->local
, sizeof(uk
.local
));
2276 memcpy(&uk
.remote
, &k
->remote
, sizeof(uk
.remote
));
2278 return nla_put(skb
, XFRMA_KMADDRESS
, sizeof(uk
), &uk
);
2281 static inline size_t xfrm_migrate_msgsize(int num_migrate
, int with_kma
)
2283 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id
))
2284 + (with_kma
? nla_total_size(sizeof(struct xfrm_kmaddress
)) : 0)
2285 + nla_total_size(sizeof(struct xfrm_user_migrate
) * num_migrate
)
2286 + userpolicy_type_attrsize();
2289 static int build_migrate(struct sk_buff
*skb
, const struct xfrm_migrate
*m
,
2290 int num_migrate
, const struct xfrm_kmaddress
*k
,
2291 const struct xfrm_selector
*sel
, u8 dir
, u8 type
)
2293 const struct xfrm_migrate
*mp
;
2294 struct xfrm_userpolicy_id
*pol_id
;
2295 struct nlmsghdr
*nlh
;
2298 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MIGRATE
, sizeof(*pol_id
), 0);
2302 pol_id
= nlmsg_data(nlh
);
2303 /* copy data from selector, dir, and type to the pol_id */
2304 memset(pol_id
, 0, sizeof(*pol_id
));
2305 memcpy(&pol_id
->sel
, sel
, sizeof(pol_id
->sel
));
2309 err
= copy_to_user_kmaddress(k
, skb
);
2313 err
= copy_to_user_policy_type(type
, skb
);
2316 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
2317 err
= copy_to_user_migrate(mp
, skb
);
2322 nlmsg_end(skb
, nlh
);
2326 nlmsg_cancel(skb
, nlh
);
2330 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2331 const struct xfrm_migrate
*m
, int num_migrate
,
2332 const struct xfrm_kmaddress
*k
)
2334 struct net
*net
= &init_net
;
2335 struct sk_buff
*skb
;
2337 skb
= nlmsg_new(xfrm_migrate_msgsize(num_migrate
, !!k
), GFP_ATOMIC
);
2342 if (build_migrate(skb
, m
, num_migrate
, k
, sel
, dir
, type
) < 0)
2345 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MIGRATE
);
2348 static int xfrm_send_migrate(const struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2349 const struct xfrm_migrate
*m
, int num_migrate
,
2350 const struct xfrm_kmaddress
*k
)
2352 return -ENOPROTOOPT
;
2356 #define XMSGSIZE(type) sizeof(struct type)
2358 static const int xfrm_msg_min
[XFRM_NR_MSGTYPES
] = {
2359 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2360 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2361 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_id
),
2362 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2363 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2364 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2365 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userspi_info
),
2366 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_acquire
),
2367 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_expire
),
2368 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_info
),
2369 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_info
),
2370 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_polexpire
),
2371 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_usersa_flush
),
2372 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = 0,
2373 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2374 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_aevent_id
),
2375 [XFRM_MSG_REPORT
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_user_report
),
2376 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = XMSGSIZE(xfrm_userpolicy_id
),
2377 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2378 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2379 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = sizeof(u32
),
2384 static const struct nla_policy xfrma_policy
[XFRMA_MAX
+1] = {
2385 [XFRMA_SA
] = { .len
= sizeof(struct xfrm_usersa_info
)},
2386 [XFRMA_POLICY
] = { .len
= sizeof(struct xfrm_userpolicy_info
)},
2387 [XFRMA_LASTUSED
] = { .type
= NLA_U64
},
2388 [XFRMA_ALG_AUTH_TRUNC
] = { .len
= sizeof(struct xfrm_algo_auth
)},
2389 [XFRMA_ALG_AEAD
] = { .len
= sizeof(struct xfrm_algo_aead
) },
2390 [XFRMA_ALG_AUTH
] = { .len
= sizeof(struct xfrm_algo
) },
2391 [XFRMA_ALG_CRYPT
] = { .len
= sizeof(struct xfrm_algo
) },
2392 [XFRMA_ALG_COMP
] = { .len
= sizeof(struct xfrm_algo
) },
2393 [XFRMA_ENCAP
] = { .len
= sizeof(struct xfrm_encap_tmpl
) },
2394 [XFRMA_TMPL
] = { .len
= sizeof(struct xfrm_user_tmpl
) },
2395 [XFRMA_SEC_CTX
] = { .len
= sizeof(struct xfrm_sec_ctx
) },
2396 [XFRMA_LTIME_VAL
] = { .len
= sizeof(struct xfrm_lifetime_cur
) },
2397 [XFRMA_REPLAY_VAL
] = { .len
= sizeof(struct xfrm_replay_state
) },
2398 [XFRMA_REPLAY_THRESH
] = { .type
= NLA_U32
},
2399 [XFRMA_ETIMER_THRESH
] = { .type
= NLA_U32
},
2400 [XFRMA_SRCADDR
] = { .len
= sizeof(xfrm_address_t
) },
2401 [XFRMA_COADDR
] = { .len
= sizeof(xfrm_address_t
) },
2402 [XFRMA_POLICY_TYPE
] = { .len
= sizeof(struct xfrm_userpolicy_type
)},
2403 [XFRMA_MIGRATE
] = { .len
= sizeof(struct xfrm_user_migrate
) },
2404 [XFRMA_KMADDRESS
] = { .len
= sizeof(struct xfrm_user_kmaddress
) },
2405 [XFRMA_MARK
] = { .len
= sizeof(struct xfrm_mark
) },
2406 [XFRMA_TFCPAD
] = { .type
= NLA_U32
},
2407 [XFRMA_REPLAY_ESN_VAL
] = { .len
= sizeof(struct xfrm_replay_state_esn
) },
2408 [XFRMA_SA_EXTRA_FLAGS
] = { .type
= NLA_U32
},
2409 [XFRMA_PROTO
] = { .type
= NLA_U8
},
2410 [XFRMA_ADDRESS_FILTER
] = { .len
= sizeof(struct xfrm_address_filter
) },
2413 static const struct nla_policy xfrma_spd_policy
[XFRMA_SPD_MAX
+1] = {
2414 [XFRMA_SPD_IPV4_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
2415 [XFRMA_SPD_IPV6_HTHRESH
] = { .len
= sizeof(struct xfrmu_spdhthresh
) },
2418 static const struct xfrm_link
{
2419 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
2420 int (*start
)(struct netlink_callback
*);
2421 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
2422 int (*done
)(struct netlink_callback
*);
2423 const struct nla_policy
*nla_pol
;
2425 } xfrm_dispatch
[XFRM_NR_MSGTYPES
] = {
2426 [XFRM_MSG_NEWSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2427 [XFRM_MSG_DELSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_del_sa
},
2428 [XFRM_MSG_GETSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sa
,
2429 .dump
= xfrm_dump_sa
,
2430 .done
= xfrm_dump_sa_done
},
2431 [XFRM_MSG_NEWPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2432 [XFRM_MSG_DELPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
},
2433 [XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_policy
,
2434 .start
= xfrm_dump_policy_start
,
2435 .dump
= xfrm_dump_policy
,
2436 .done
= xfrm_dump_policy_done
},
2437 [XFRM_MSG_ALLOCSPI
- XFRM_MSG_BASE
] = { .doit
= xfrm_alloc_userspi
},
2438 [XFRM_MSG_ACQUIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_acquire
},
2439 [XFRM_MSG_EXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa_expire
},
2440 [XFRM_MSG_UPDPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_policy
},
2441 [XFRM_MSG_UPDSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_sa
},
2442 [XFRM_MSG_POLEXPIRE
- XFRM_MSG_BASE
] = { .doit
= xfrm_add_pol_expire
},
2443 [XFRM_MSG_FLUSHSA
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_sa
},
2444 [XFRM_MSG_FLUSHPOLICY
- XFRM_MSG_BASE
] = { .doit
= xfrm_flush_policy
},
2445 [XFRM_MSG_NEWAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_new_ae
},
2446 [XFRM_MSG_GETAE
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_ae
},
2447 [XFRM_MSG_MIGRATE
- XFRM_MSG_BASE
] = { .doit
= xfrm_do_migrate
},
2448 [XFRM_MSG_GETSADINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_sadinfo
},
2449 [XFRM_MSG_NEWSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_set_spdinfo
,
2450 .nla_pol
= xfrma_spd_policy
,
2451 .nla_max
= XFRMA_SPD_MAX
},
2452 [XFRM_MSG_GETSPDINFO
- XFRM_MSG_BASE
] = { .doit
= xfrm_get_spdinfo
},
2455 static int xfrm_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
2457 struct net
*net
= sock_net(skb
->sk
);
2458 struct nlattr
*attrs
[XFRMA_MAX
+1];
2459 const struct xfrm_link
*link
;
2462 #ifdef CONFIG_COMPAT
2463 if (is_compat_task())
2467 type
= nlh
->nlmsg_type
;
2468 if (type
> XFRM_MSG_MAX
)
2471 type
-= XFRM_MSG_BASE
;
2472 link
= &xfrm_dispatch
[type
];
2474 /* All operations require privileges, even GET */
2475 if (!netlink_net_capable(skb
, CAP_NET_ADMIN
))
2478 if ((type
== (XFRM_MSG_GETSA
- XFRM_MSG_BASE
) ||
2479 type
== (XFRM_MSG_GETPOLICY
- XFRM_MSG_BASE
)) &&
2480 (nlh
->nlmsg_flags
& NLM_F_DUMP
)) {
2481 if (link
->dump
== NULL
)
2485 struct netlink_dump_control c
= {
2486 .start
= link
->start
,
2490 return netlink_dump_start(net
->xfrm
.nlsk
, skb
, nlh
, &c
);
2494 err
= nlmsg_parse(nlh
, xfrm_msg_min
[type
], attrs
,
2495 link
->nla_max
? : XFRMA_MAX
,
2496 link
->nla_pol
? : xfrma_policy
);
2500 if (link
->doit
== NULL
)
2503 return link
->doit(skb
, nlh
, attrs
);
2506 static void xfrm_netlink_rcv(struct sk_buff
*skb
)
2508 struct net
*net
= sock_net(skb
->sk
);
2510 mutex_lock(&net
->xfrm
.xfrm_cfg_mutex
);
2511 netlink_rcv_skb(skb
, &xfrm_user_rcv_msg
);
2512 mutex_unlock(&net
->xfrm
.xfrm_cfg_mutex
);
2515 static inline size_t xfrm_expire_msgsize(void)
2517 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire
))
2518 + nla_total_size(sizeof(struct xfrm_mark
));
2521 static int build_expire(struct sk_buff
*skb
, struct xfrm_state
*x
, const struct km_event
*c
)
2523 struct xfrm_user_expire
*ue
;
2524 struct nlmsghdr
*nlh
;
2527 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_EXPIRE
, sizeof(*ue
), 0);
2531 ue
= nlmsg_data(nlh
);
2532 copy_to_user_state(x
, &ue
->state
);
2533 ue
->hard
= (c
->data
.hard
!= 0) ? 1 : 0;
2535 err
= xfrm_mark_put(skb
, &x
->mark
);
2539 nlmsg_end(skb
, nlh
);
2543 static int xfrm_exp_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2545 struct net
*net
= xs_net(x
);
2546 struct sk_buff
*skb
;
2548 skb
= nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC
);
2552 if (build_expire(skb
, x
, c
) < 0) {
2557 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
2560 static int xfrm_aevent_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2562 struct net
*net
= xs_net(x
);
2563 struct sk_buff
*skb
;
2565 skb
= nlmsg_new(xfrm_aevent_msgsize(x
), GFP_ATOMIC
);
2569 if (build_aevent(skb
, x
, c
) < 0)
2572 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_AEVENTS
);
2575 static int xfrm_notify_sa_flush(const struct km_event
*c
)
2577 struct net
*net
= c
->net
;
2578 struct xfrm_usersa_flush
*p
;
2579 struct nlmsghdr
*nlh
;
2580 struct sk_buff
*skb
;
2581 int len
= NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush
));
2583 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2587 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHSA
, sizeof(*p
), 0);
2593 p
= nlmsg_data(nlh
);
2594 p
->proto
= c
->data
.proto
;
2596 nlmsg_end(skb
, nlh
);
2598 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
2601 static inline size_t xfrm_sa_len(struct xfrm_state
*x
)
2605 l
+= nla_total_size(aead_len(x
->aead
));
2607 l
+= nla_total_size(sizeof(struct xfrm_algo
) +
2608 (x
->aalg
->alg_key_len
+ 7) / 8);
2609 l
+= nla_total_size(xfrm_alg_auth_len(x
->aalg
));
2612 l
+= nla_total_size(xfrm_alg_len(x
->ealg
));
2614 l
+= nla_total_size(sizeof(*x
->calg
));
2616 l
+= nla_total_size(sizeof(*x
->encap
));
2618 l
+= nla_total_size(sizeof(x
->tfcpad
));
2620 l
+= nla_total_size(xfrm_replay_state_esn_len(x
->replay_esn
));
2622 l
+= nla_total_size(sizeof(struct xfrm_replay_state
));
2624 l
+= nla_total_size(sizeof(struct xfrm_user_sec_ctx
) +
2625 x
->security
->ctx_len
);
2627 l
+= nla_total_size(sizeof(*x
->coaddr
));
2628 if (x
->props
.extra_flags
)
2629 l
+= nla_total_size(sizeof(x
->props
.extra_flags
));
2631 /* Must count x->lastused as it may become non-zero behind our back. */
2632 l
+= nla_total_size(sizeof(u64
));
2637 static int xfrm_notify_sa(struct xfrm_state
*x
, const struct km_event
*c
)
2639 struct net
*net
= xs_net(x
);
2640 struct xfrm_usersa_info
*p
;
2641 struct xfrm_usersa_id
*id
;
2642 struct nlmsghdr
*nlh
;
2643 struct sk_buff
*skb
;
2644 int len
= xfrm_sa_len(x
);
2647 headlen
= sizeof(*p
);
2648 if (c
->event
== XFRM_MSG_DELSA
) {
2649 len
+= nla_total_size(headlen
);
2650 headlen
= sizeof(*id
);
2651 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2653 len
+= NLMSG_ALIGN(headlen
);
2655 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2659 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
2664 p
= nlmsg_data(nlh
);
2665 if (c
->event
== XFRM_MSG_DELSA
) {
2666 struct nlattr
*attr
;
2668 id
= nlmsg_data(nlh
);
2669 memcpy(&id
->daddr
, &x
->id
.daddr
, sizeof(id
->daddr
));
2670 id
->spi
= x
->id
.spi
;
2671 id
->family
= x
->props
.family
;
2672 id
->proto
= x
->id
.proto
;
2674 attr
= nla_reserve(skb
, XFRMA_SA
, sizeof(*p
));
2681 err
= copy_to_user_state_extra(x
, p
, skb
);
2685 nlmsg_end(skb
, nlh
);
2687 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_SA
);
2694 static int xfrm_send_state_notify(struct xfrm_state
*x
, const struct km_event
*c
)
2698 case XFRM_MSG_EXPIRE
:
2699 return xfrm_exp_state_notify(x
, c
);
2700 case XFRM_MSG_NEWAE
:
2701 return xfrm_aevent_state_notify(x
, c
);
2702 case XFRM_MSG_DELSA
:
2703 case XFRM_MSG_UPDSA
:
2704 case XFRM_MSG_NEWSA
:
2705 return xfrm_notify_sa(x
, c
);
2706 case XFRM_MSG_FLUSHSA
:
2707 return xfrm_notify_sa_flush(c
);
2709 printk(KERN_NOTICE
"xfrm_user: Unknown SA event %d\n",
2718 static inline size_t xfrm_acquire_msgsize(struct xfrm_state
*x
,
2719 struct xfrm_policy
*xp
)
2721 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire
))
2722 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2723 + nla_total_size(sizeof(struct xfrm_mark
))
2724 + nla_total_size(xfrm_user_sec_ctx_size(x
->security
))
2725 + userpolicy_type_attrsize();
2728 static int build_acquire(struct sk_buff
*skb
, struct xfrm_state
*x
,
2729 struct xfrm_tmpl
*xt
, struct xfrm_policy
*xp
)
2731 __u32 seq
= xfrm_get_acqseq();
2732 struct xfrm_user_acquire
*ua
;
2733 struct nlmsghdr
*nlh
;
2736 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_ACQUIRE
, sizeof(*ua
), 0);
2740 ua
= nlmsg_data(nlh
);
2741 memcpy(&ua
->id
, &x
->id
, sizeof(ua
->id
));
2742 memcpy(&ua
->saddr
, &x
->props
.saddr
, sizeof(ua
->saddr
));
2743 memcpy(&ua
->sel
, &x
->sel
, sizeof(ua
->sel
));
2744 copy_to_user_policy(xp
, &ua
->policy
, XFRM_POLICY_OUT
);
2745 ua
->aalgos
= xt
->aalgos
;
2746 ua
->ealgos
= xt
->ealgos
;
2747 ua
->calgos
= xt
->calgos
;
2748 ua
->seq
= x
->km
.seq
= seq
;
2750 err
= copy_to_user_tmpl(xp
, skb
);
2752 err
= copy_to_user_state_sec_ctx(x
, skb
);
2754 err
= copy_to_user_policy_type(xp
->type
, skb
);
2756 err
= xfrm_mark_put(skb
, &xp
->mark
);
2758 nlmsg_cancel(skb
, nlh
);
2762 nlmsg_end(skb
, nlh
);
2766 static int xfrm_send_acquire(struct xfrm_state
*x
, struct xfrm_tmpl
*xt
,
2767 struct xfrm_policy
*xp
)
2769 struct net
*net
= xs_net(x
);
2770 struct sk_buff
*skb
;
2772 skb
= nlmsg_new(xfrm_acquire_msgsize(x
, xp
), GFP_ATOMIC
);
2776 if (build_acquire(skb
, x
, xt
, xp
) < 0)
2779 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_ACQUIRE
);
2782 /* User gives us xfrm_user_policy_info followed by an array of 0
2783 * or more templates.
2785 static struct xfrm_policy
*xfrm_compile_policy(struct sock
*sk
, int opt
,
2786 u8
*data
, int len
, int *dir
)
2788 struct net
*net
= sock_net(sk
);
2789 struct xfrm_userpolicy_info
*p
= (struct xfrm_userpolicy_info
*)data
;
2790 struct xfrm_user_tmpl
*ut
= (struct xfrm_user_tmpl
*) (p
+ 1);
2791 struct xfrm_policy
*xp
;
2794 switch (sk
->sk_family
) {
2796 if (opt
!= IP_XFRM_POLICY
) {
2801 #if IS_ENABLED(CONFIG_IPV6)
2803 if (opt
!= IPV6_XFRM_POLICY
) {
2816 if (len
< sizeof(*p
) ||
2817 verify_newpolicy_info(p
))
2820 nr
= ((len
- sizeof(*p
)) / sizeof(*ut
));
2821 if (validate_tmpl(nr
, ut
, p
->sel
.family
))
2824 if (p
->dir
> XFRM_POLICY_OUT
)
2827 xp
= xfrm_policy_alloc(net
, GFP_ATOMIC
);
2833 copy_from_user_policy(xp
, p
);
2834 xp
->type
= XFRM_POLICY_TYPE_MAIN
;
2835 copy_templates(xp
, ut
, nr
);
2842 static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy
*xp
)
2844 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire
))
2845 + nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
)
2846 + nla_total_size(xfrm_user_sec_ctx_size(xp
->security
))
2847 + nla_total_size(sizeof(struct xfrm_mark
))
2848 + userpolicy_type_attrsize();
2851 static int build_polexpire(struct sk_buff
*skb
, struct xfrm_policy
*xp
,
2852 int dir
, const struct km_event
*c
)
2854 struct xfrm_user_polexpire
*upe
;
2855 int hard
= c
->data
.hard
;
2856 struct nlmsghdr
*nlh
;
2859 nlh
= nlmsg_put(skb
, c
->portid
, 0, XFRM_MSG_POLEXPIRE
, sizeof(*upe
), 0);
2863 upe
= nlmsg_data(nlh
);
2864 copy_to_user_policy(xp
, &upe
->pol
, dir
);
2865 err
= copy_to_user_tmpl(xp
, skb
);
2867 err
= copy_to_user_sec_ctx(xp
, skb
);
2869 err
= copy_to_user_policy_type(xp
->type
, skb
);
2871 err
= xfrm_mark_put(skb
, &xp
->mark
);
2873 nlmsg_cancel(skb
, nlh
);
2878 nlmsg_end(skb
, nlh
);
2882 static int xfrm_exp_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2884 struct net
*net
= xp_net(xp
);
2885 struct sk_buff
*skb
;
2887 skb
= nlmsg_new(xfrm_polexpire_msgsize(xp
), GFP_ATOMIC
);
2891 if (build_polexpire(skb
, xp
, dir
, c
) < 0)
2894 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_EXPIRE
);
2897 static int xfrm_notify_policy(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2899 int len
= nla_total_size(sizeof(struct xfrm_user_tmpl
) * xp
->xfrm_nr
);
2900 struct net
*net
= xp_net(xp
);
2901 struct xfrm_userpolicy_info
*p
;
2902 struct xfrm_userpolicy_id
*id
;
2903 struct nlmsghdr
*nlh
;
2904 struct sk_buff
*skb
;
2907 headlen
= sizeof(*p
);
2908 if (c
->event
== XFRM_MSG_DELPOLICY
) {
2909 len
+= nla_total_size(headlen
);
2910 headlen
= sizeof(*id
);
2912 len
+= userpolicy_type_attrsize();
2913 len
+= nla_total_size(sizeof(struct xfrm_mark
));
2914 len
+= NLMSG_ALIGN(headlen
);
2916 skb
= nlmsg_new(len
, GFP_ATOMIC
);
2920 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, c
->event
, headlen
, 0);
2925 p
= nlmsg_data(nlh
);
2926 if (c
->event
== XFRM_MSG_DELPOLICY
) {
2927 struct nlattr
*attr
;
2929 id
= nlmsg_data(nlh
);
2930 memset(id
, 0, sizeof(*id
));
2933 id
->index
= xp
->index
;
2935 memcpy(&id
->sel
, &xp
->selector
, sizeof(id
->sel
));
2937 attr
= nla_reserve(skb
, XFRMA_POLICY
, sizeof(*p
));
2945 copy_to_user_policy(xp
, p
, dir
);
2946 err
= copy_to_user_tmpl(xp
, skb
);
2948 err
= copy_to_user_policy_type(xp
->type
, skb
);
2950 err
= xfrm_mark_put(skb
, &xp
->mark
);
2954 nlmsg_end(skb
, nlh
);
2956 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
2963 static int xfrm_notify_policy_flush(const struct km_event
*c
)
2965 struct net
*net
= c
->net
;
2966 struct nlmsghdr
*nlh
;
2967 struct sk_buff
*skb
;
2970 skb
= nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC
);
2974 nlh
= nlmsg_put(skb
, c
->portid
, c
->seq
, XFRM_MSG_FLUSHPOLICY
, 0, 0);
2978 err
= copy_to_user_policy_type(c
->data
.type
, skb
);
2982 nlmsg_end(skb
, nlh
);
2984 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_POLICY
);
2991 static int xfrm_send_policy_notify(struct xfrm_policy
*xp
, int dir
, const struct km_event
*c
)
2995 case XFRM_MSG_NEWPOLICY
:
2996 case XFRM_MSG_UPDPOLICY
:
2997 case XFRM_MSG_DELPOLICY
:
2998 return xfrm_notify_policy(xp
, dir
, c
);
2999 case XFRM_MSG_FLUSHPOLICY
:
3000 return xfrm_notify_policy_flush(c
);
3001 case XFRM_MSG_POLEXPIRE
:
3002 return xfrm_exp_policy_notify(xp
, dir
, c
);
3004 printk(KERN_NOTICE
"xfrm_user: Unknown Policy event %d\n",
3012 static inline size_t xfrm_report_msgsize(void)
3014 return NLMSG_ALIGN(sizeof(struct xfrm_user_report
));
3017 static int build_report(struct sk_buff
*skb
, u8 proto
,
3018 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3020 struct xfrm_user_report
*ur
;
3021 struct nlmsghdr
*nlh
;
3023 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_REPORT
, sizeof(*ur
), 0);
3027 ur
= nlmsg_data(nlh
);
3029 memcpy(&ur
->sel
, sel
, sizeof(ur
->sel
));
3032 int err
= nla_put(skb
, XFRMA_COADDR
, sizeof(*addr
), addr
);
3034 nlmsg_cancel(skb
, nlh
);
3038 nlmsg_end(skb
, nlh
);
3042 static int xfrm_send_report(struct net
*net
, u8 proto
,
3043 struct xfrm_selector
*sel
, xfrm_address_t
*addr
)
3045 struct sk_buff
*skb
;
3047 skb
= nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC
);
3051 if (build_report(skb
, proto
, sel
, addr
) < 0)
3054 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_REPORT
);
3057 static inline size_t xfrm_mapping_msgsize(void)
3059 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping
));
3062 static int build_mapping(struct sk_buff
*skb
, struct xfrm_state
*x
,
3063 xfrm_address_t
*new_saddr
, __be16 new_sport
)
3065 struct xfrm_user_mapping
*um
;
3066 struct nlmsghdr
*nlh
;
3068 nlh
= nlmsg_put(skb
, 0, 0, XFRM_MSG_MAPPING
, sizeof(*um
), 0);
3072 um
= nlmsg_data(nlh
);
3074 memcpy(&um
->id
.daddr
, &x
->id
.daddr
, sizeof(um
->id
.daddr
));
3075 um
->id
.spi
= x
->id
.spi
;
3076 um
->id
.family
= x
->props
.family
;
3077 um
->id
.proto
= x
->id
.proto
;
3078 memcpy(&um
->new_saddr
, new_saddr
, sizeof(um
->new_saddr
));
3079 memcpy(&um
->old_saddr
, &x
->props
.saddr
, sizeof(um
->old_saddr
));
3080 um
->new_sport
= new_sport
;
3081 um
->old_sport
= x
->encap
->encap_sport
;
3082 um
->reqid
= x
->props
.reqid
;
3084 nlmsg_end(skb
, nlh
);
3088 static int xfrm_send_mapping(struct xfrm_state
*x
, xfrm_address_t
*ipaddr
,
3091 struct net
*net
= xs_net(x
);
3092 struct sk_buff
*skb
;
3094 if (x
->id
.proto
!= IPPROTO_ESP
)
3100 skb
= nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC
);
3104 if (build_mapping(skb
, x
, ipaddr
, sport
) < 0)
3107 return xfrm_nlmsg_multicast(net
, skb
, 0, XFRMNLGRP_MAPPING
);
3110 static bool xfrm_is_alive(const struct km_event
*c
)
3112 return (bool)xfrm_acquire_is_on(c
->net
);
3115 static struct xfrm_mgr netlink_mgr
= {
3117 .notify
= xfrm_send_state_notify
,
3118 .acquire
= xfrm_send_acquire
,
3119 .compile_policy
= xfrm_compile_policy
,
3120 .notify_policy
= xfrm_send_policy_notify
,
3121 .report
= xfrm_send_report
,
3122 .migrate
= xfrm_send_migrate
,
3123 .new_mapping
= xfrm_send_mapping
,
3124 .is_alive
= xfrm_is_alive
,
3127 static int __net_init
xfrm_user_net_init(struct net
*net
)
3130 struct netlink_kernel_cfg cfg
= {
3131 .groups
= XFRMNLGRP_MAX
,
3132 .input
= xfrm_netlink_rcv
,
3135 nlsk
= netlink_kernel_create(net
, NETLINK_XFRM
, &cfg
);
3138 net
->xfrm
.nlsk_stash
= nlsk
; /* Don't set to NULL */
3139 rcu_assign_pointer(net
->xfrm
.nlsk
, nlsk
);
3143 static void __net_exit
xfrm_user_net_exit(struct list_head
*net_exit_list
)
3146 list_for_each_entry(net
, net_exit_list
, exit_list
)
3147 RCU_INIT_POINTER(net
->xfrm
.nlsk
, NULL
);
3149 list_for_each_entry(net
, net_exit_list
, exit_list
)
3150 netlink_kernel_release(net
->xfrm
.nlsk_stash
);
3153 static struct pernet_operations xfrm_user_net_ops
= {
3154 .init
= xfrm_user_net_init
,
3155 .exit_batch
= xfrm_user_net_exit
,
3158 static int __init
xfrm_user_init(void)
3162 printk(KERN_INFO
"Initializing XFRM netlink socket\n");
3164 rv
= register_pernet_subsys(&xfrm_user_net_ops
);
3167 rv
= xfrm_register_km(&netlink_mgr
);
3169 unregister_pernet_subsys(&xfrm_user_net_ops
);
3173 static void __exit
xfrm_user_exit(void)
3175 xfrm_unregister_km(&netlink_mgr
);
3176 unregister_pernet_subsys(&xfrm_user_net_ops
);
3179 module_init(xfrm_user_init
);
3180 module_exit(xfrm_user_exit
);
3181 MODULE_LICENSE("GPL");
3182 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_XFRM
);