dst_feature(dst, RTAX_FEATURE_ECN);
 }
 
+#if IS_ENABLED(CONFIG_BPF)
+static inline bool cookie_bpf_ok(struct sk_buff *skb)
+{
+       return skb->sk;
+}
+
+struct request_sock *cookie_bpf_check(struct sock *sk, struct sk_buff *skb);
+#else
+static inline bool cookie_bpf_ok(struct sk_buff *skb)
+{
+       return false;
+}
+
+static inline struct request_sock *cookie_bpf_check(struct net *net, struct sock *sk,
+                                                   struct sk_buff *skb)
+{
+       return NULL;
+}
+#endif
+
 /* From net/ipv6/syncookies.c */
 int __cookie_v6_check(const struct ipv6hdr *iph, const struct tcphdr *th);
 struct sock *cookie_v6_check(struct sock *sk, struct sk_buff *skb);
 
        return 0;
 }
 
+#if IS_ENABLED(CONFIG_BPF)
+struct request_sock *cookie_bpf_check(struct sock *sk, struct sk_buff *skb)
+{
+       struct request_sock *req = inet_reqsk(skb->sk);
+
+       skb->sk = NULL;
+       skb->destructor = NULL;
+
+       if (cookie_tcp_reqsk_init(sk, skb, req)) {
+               reqsk_free(req);
+               req = NULL;
+       }
+
+       return req;
+}
+EXPORT_SYMBOL_GPL(cookie_bpf_check);
+#endif
+
 struct request_sock *cookie_tcp_reqsk_alloc(const struct request_sock_ops *ops,
                                            struct sock *sk, struct sk_buff *skb,
                                            struct tcp_options_received *tcp_opt,
            !th->ack || th->rst)
                goto out;
 
-       req = cookie_tcp_check(net, sk, skb);
-       if (IS_ERR(req))
-               goto out;
+       if (cookie_bpf_ok(skb)) {
+               req = cookie_bpf_check(sk, skb);
+       } else {
+               req = cookie_tcp_check(net, sk, skb);
+               if (IS_ERR(req))
+                       goto out;
+       }
        if (!req)
                goto out_drop;
 
                                  ireq->wscale_ok, &rcv_wscale,
                                  dst_metric(&rt->dst, RTAX_INITRWND));
 
-       ireq->rcv_wscale  = rcv_wscale;
+       if (!req->syncookie)
+               ireq->rcv_wscale = rcv_wscale;
        ireq->ecn_ok &= cookie_ecn_ok(net, &rt->dst);
 
        ret = tcp_get_cookie_sock(sk, skb, req, &rt->dst);
 
            !th->ack || th->rst)
                goto out;
 
-       req = cookie_tcp_check(net, sk, skb);
-       if (IS_ERR(req))
-               goto out;
+       if (cookie_bpf_ok(skb)) {
+               req = cookie_bpf_check(sk, skb);
+       } else {
+               req = cookie_tcp_check(net, sk, skb);
+               if (IS_ERR(req))
+                       goto out;
+       }
        if (!req)
                goto out_drop;
 
                                  ireq->wscale_ok, &rcv_wscale,
                                  dst_metric(dst, RTAX_INITRWND));
 
-       ireq->rcv_wscale = rcv_wscale;
+       if (!req->syncookie)
+               ireq->rcv_wscale = rcv_wscale;
        ireq->ecn_ok &= cookie_ecn_ok(net, dst);
 
        ret = tcp_get_cookie_sock(sk, skb, req, dst);