Accept NULL identities passed to peer config enumeration
This commit is contained in:
@@ -160,7 +160,7 @@ METHOD(backend_manager_t, get_ike_cfg, ike_cfg_t*,
|
||||
while (enumerator->enumerate(enumerator, (void**)¤t))
|
||||
{
|
||||
match = get_ike_match(current, me, other);
|
||||
|
||||
DBG3(DBG_CFG, "ike config match: %d (%H %H)", match, me, other);
|
||||
if (match)
|
||||
{
|
||||
DBG2(DBG_CFG, " candidate: %s...%s, prio %d",
|
||||
@@ -195,9 +195,12 @@ static id_match_t get_peer_match(identification_t *id,
|
||||
auth_cfg_t *auth;
|
||||
identification_t *candidate;
|
||||
id_match_t match = ID_MATCH_NONE;
|
||||
chunk_t data;
|
||||
|
||||
if (!id)
|
||||
{
|
||||
DBG3(DBG_CFG, "peer config match %s: %d (%N)",
|
||||
local ? "local" : "remote", ID_MATCH_ANY, id_type_names, ID_ANY);
|
||||
return ID_MATCH_ANY;
|
||||
}
|
||||
|
||||
@@ -221,6 +224,10 @@ static id_match_t get_peer_match(identification_t *id,
|
||||
}
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
|
||||
data = id->get_encoding(id);
|
||||
DBG3(DBG_CFG, "peer config match %s: %d (%N -> %#B)",
|
||||
match, id_type_names, id->get_type(id), &data);
|
||||
return match;
|
||||
}
|
||||
|
||||
@@ -351,18 +358,11 @@ METHOD(backend_manager_t, create_peer_cfg_enumerator, enumerator_t*,
|
||||
id_match_t match_peer_me, match_peer_other;
|
||||
ike_cfg_match_t match_ike;
|
||||
match_entry_t *entry;
|
||||
chunk_t data;
|
||||
|
||||
match_peer_me = get_peer_match(my_id, cfg, TRUE);
|
||||
data = my_id->get_encoding(my_id);
|
||||
DBG3(DBG_CFG, "match_peer_me: %d (%N -> %#B)", match_peer_me,
|
||||
id_type_names, my_id->get_type(my_id), &data);
|
||||
match_peer_other = get_peer_match(other_id, cfg, FALSE);
|
||||
data = other_id->get_encoding(other_id);
|
||||
DBG3(DBG_CFG, "match_peer_other: %d (%N -> %#B)", match_peer_other,
|
||||
id_type_names, other_id->get_type(other_id), &data);
|
||||
match_ike = get_ike_match(cfg->get_ike_cfg(cfg), me, other);
|
||||
DBG3(DBG_CFG, "match_ike: %d (%H %H)", match_ike, me, other);
|
||||
DBG3(DBG_CFG, "ike config match: %d (%H %H)", match_ike, me, other);
|
||||
|
||||
if (match_peer_me && match_peer_other && match_ike)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user