#include <linux/filter.h>
 #include <linux/skbuff.h>
 #include <linux/types.h>
+#include <linux/spinlock.h>
 #include <net/sock.h>
 
+extern spinlock_t reuseport_lock;
+
 struct sock_reuseport {
        struct rcu_head         rcu;
 
         * reuse->socks[] group.
         */
        unsigned int            synq_overflow_ts;
+       /* ID stays the same even after the size of socks[] grows. */
+       unsigned int            reuseport_id;
        struct bpf_prog __rcu   *prog;          /* optional BPF sock selector */
        struct sock             *socks[0];      /* array of sock pointers */
 };
                                          int hdr_len);
 extern struct bpf_prog *reuseport_attach_prog(struct sock *sk,
                                              struct bpf_prog *prog);
+int reuseport_get_id(struct sock_reuseport *reuse);
 
 #endif  /* _SOCK_REUSEPORT_H */
 
 
 #include <net/sock_reuseport.h>
 #include <linux/bpf.h>
+#include <linux/idr.h>
 #include <linux/rcupdate.h>
 
 #define INIT_SOCKS 128
 
-static DEFINE_SPINLOCK(reuseport_lock);
+DEFINE_SPINLOCK(reuseport_lock);
+
+#define REUSEPORT_MIN_ID 1
+static DEFINE_IDA(reuseport_ida);
+
+int reuseport_get_id(struct sock_reuseport *reuse)
+{
+       int id;
+
+       if (reuse->reuseport_id)
+               return reuse->reuseport_id;
+
+       id = ida_simple_get(&reuseport_ida, REUSEPORT_MIN_ID, 0,
+                           /* Called under reuseport_lock */
+                           GFP_ATOMIC);
+       if (id < 0)
+               return id;
+
+       reuse->reuseport_id = id;
+
+       return reuse->reuseport_id;
+}
 
 static struct sock_reuseport *__reuseport_alloc(unsigned int max_socks)
 {
        more_reuse->max_socks = more_socks_size;
        more_reuse->num_socks = reuse->num_socks;
        more_reuse->prog = reuse->prog;
+       more_reuse->reuseport_id = reuse->reuseport_id;
 
        memcpy(more_reuse->socks, reuse->socks,
               reuse->num_socks * sizeof(struct sock *));
        reuse = container_of(head, struct sock_reuseport, rcu);
        if (reuse->prog)
                bpf_prog_destroy(reuse->prog);
+       if (reuse->reuseport_id)
+               ida_simple_remove(&reuseport_ida, reuse->reuseport_id);
        kfree(reuse);
 }