Use ref_get() to make sure CHILD_SA reqids are unique

This commit is contained in:
Martin Willi
2013-06-11 15:54:27 +02:00
parent 3160b92adb
commit d64f6ef6ae
+9 -2
View File
@@ -1083,7 +1083,7 @@ METHOD(child_sa_t, destroy, void,
child_sa_t * child_sa_create(host_t *me, host_t* other,
child_cfg_t *config, u_int32_t rekey, bool encap)
{
static u_int32_t reqid = 0;
static refcount_t reqid = 0;
private_child_sa_t *this;
INIT(this,
@@ -1142,7 +1142,14 @@ child_sa_t * child_sa_create(host_t *me, host_t* other,
if (!this->reqid)
{
/* reuse old reqid if we are rekeying an existing CHILD_SA */
this->reqid = rekey ? rekey : ++reqid;
if (rekey)
{
this->reqid = rekey;
}
else
{
this->reqid = ref_get(&reqid);
}
}
if (this->mark_in.value == MARK_REQID)