u32 xfrm_replay_seqhi(struct xfrm_state *x, __be32 net_seq);
 int xfrm_init_replay(struct xfrm_state *x);
 u32 xfrm_state_mtu(struct xfrm_state *x, int mtu);
-int __xfrm_init_state(struct xfrm_state *x, bool init_replay, bool offload);
+int __xfrm_init_state(struct xfrm_state *x, bool init_replay, bool offload,
+                     struct netlink_ext_ack *extack);
 int xfrm_init_state(struct xfrm_state *x);
 int xfrm_input(struct sk_buff *skb, int nexthdr, __be32 spi, int encap_type);
 int xfrm_input_resume(struct sk_buff *skb, int nexthdr);
 
 }
 EXPORT_SYMBOL_GPL(xfrm_state_mtu);
 
-int __xfrm_init_state(struct xfrm_state *x, bool init_replay, bool offload)
+int __xfrm_init_state(struct xfrm_state *x, bool init_replay, bool offload,
+                     struct netlink_ext_ack *extack)
 {
        const struct xfrm_mode *inner_mode;
        const struct xfrm_mode *outer_mode;
 
        if (x->sel.family != AF_UNSPEC) {
                inner_mode = xfrm_get_mode(x->props.mode, x->sel.family);
-               if (inner_mode == NULL)
+               if (inner_mode == NULL) {
+                       NL_SET_ERR_MSG(extack, "Requested mode not found");
                        goto error;
+               }
 
                if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
-                   family != x->sel.family)
+                   family != x->sel.family) {
+                       NL_SET_ERR_MSG(extack, "Only tunnel modes can accommodate a change of family");
                        goto error;
+               }
 
                x->inner_mode = *inner_mode;
        } else {
                int iafamily = AF_INET;
 
                inner_mode = xfrm_get_mode(x->props.mode, x->props.family);
-               if (inner_mode == NULL)
+               if (inner_mode == NULL) {
+                       NL_SET_ERR_MSG(extack, "Requested mode not found");
                        goto error;
+               }
 
-               if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL))
+               if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL)) {
+                       NL_SET_ERR_MSG(extack, "Only tunnel modes can accommodate an AF_UNSPEC selector");
                        goto error;
+               }
 
                x->inner_mode = *inner_mode;
 
        }
 
        x->type = xfrm_get_type(x->id.proto, family);
-       if (x->type == NULL)
+       if (x->type == NULL) {
+               NL_SET_ERR_MSG(extack, "Requested type not found");
                goto error;
+       }
 
        x->type_offload = xfrm_get_type_offload(x->id.proto, family, offload);
 
 
        outer_mode = xfrm_get_mode(x->props.mode, family);
        if (!outer_mode) {
+               NL_SET_ERR_MSG(extack, "Requested mode not found");
                err = -EPROTONOSUPPORT;
                goto error;
        }
 {
        int err;
 
-       err = __xfrm_init_state(x, true, false);
+       err = __xfrm_init_state(x, true, false, NULL);
        if (!err)
                x->km.state = XFRM_STATE_VALID;