Pass ipsec.conf xauth_identity option via stroke to charon configurations
This commit is contained in:
@@ -479,6 +479,11 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
|||||||
cfg->add(cfg, AUTH_RULE_XAUTH_BACKEND, strdup(++pos));
|
cfg->add(cfg, AUTH_RULE_XAUTH_BACKEND, strdup(++pos));
|
||||||
}
|
}
|
||||||
cfg->add(cfg, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_XAUTH);
|
cfg->add(cfg, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_XAUTH);
|
||||||
|
if (msg->add_conn.xauth_identity)
|
||||||
|
{
|
||||||
|
cfg->add(cfg, AUTH_RULE_XAUTH_IDENTITY,
|
||||||
|
identification_create_from_string(msg->add_conn.xauth_identity));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (strneq(auth, "eap", 3))
|
else if (strneq(auth, "eap", 3))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -181,12 +181,14 @@ static void stroke_add_conn(private_stroke_socket_t *this, stroke_msg_t *msg)
|
|||||||
pop_end(msg, "right", &msg->add_conn.other);
|
pop_end(msg, "right", &msg->add_conn.other);
|
||||||
pop_string(msg, &msg->add_conn.eap_identity);
|
pop_string(msg, &msg->add_conn.eap_identity);
|
||||||
pop_string(msg, &msg->add_conn.aaa_identity);
|
pop_string(msg, &msg->add_conn.aaa_identity);
|
||||||
|
pop_string(msg, &msg->add_conn.xauth_identity);
|
||||||
pop_string(msg, &msg->add_conn.algorithms.ike);
|
pop_string(msg, &msg->add_conn.algorithms.ike);
|
||||||
pop_string(msg, &msg->add_conn.algorithms.esp);
|
pop_string(msg, &msg->add_conn.algorithms.esp);
|
||||||
pop_string(msg, &msg->add_conn.ikeme.mediated_by);
|
pop_string(msg, &msg->add_conn.ikeme.mediated_by);
|
||||||
pop_string(msg, &msg->add_conn.ikeme.peerid);
|
pop_string(msg, &msg->add_conn.ikeme.peerid);
|
||||||
DBG2(DBG_CFG, " eap_identity=%s", msg->add_conn.eap_identity);
|
DBG2(DBG_CFG, " eap_identity=%s", msg->add_conn.eap_identity);
|
||||||
DBG2(DBG_CFG, " aaa_identity=%s", msg->add_conn.aaa_identity);
|
DBG2(DBG_CFG, " aaa_identity=%s", msg->add_conn.aaa_identity);
|
||||||
|
DBG2(DBG_CFG, " xauth_identity=%s", msg->add_conn.xauth_identity);
|
||||||
DBG2(DBG_CFG, " ike=%s", msg->add_conn.algorithms.ike);
|
DBG2(DBG_CFG, " ike=%s", msg->add_conn.algorithms.ike);
|
||||||
DBG2(DBG_CFG, " esp=%s", msg->add_conn.algorithms.esp);
|
DBG2(DBG_CFG, " esp=%s", msg->add_conn.algorithms.esp);
|
||||||
DBG2(DBG_CFG, " dpddelay=%d", msg->add_conn.dpd.delay);
|
DBG2(DBG_CFG, " dpddelay=%d", msg->add_conn.dpd.delay);
|
||||||
|
|||||||
@@ -220,6 +220,7 @@ int starter_stroke_add_conn(starter_config_t *cfg, starter_conn_t *conn)
|
|||||||
msg.add_conn.eap_vendor = conn->eap_vendor;
|
msg.add_conn.eap_vendor = conn->eap_vendor;
|
||||||
msg.add_conn.eap_identity = push_string(&msg, conn->eap_identity);
|
msg.add_conn.eap_identity = push_string(&msg, conn->eap_identity);
|
||||||
msg.add_conn.aaa_identity = push_string(&msg, conn->aaa_identity);
|
msg.add_conn.aaa_identity = push_string(&msg, conn->aaa_identity);
|
||||||
|
msg.add_conn.xauth_identity = push_string(&msg, conn->xauth_identity);
|
||||||
|
|
||||||
if (conn->policy & POLICY_TUNNEL)
|
if (conn->policy & POLICY_TUNNEL)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -246,6 +246,7 @@ struct stroke_msg_t {
|
|||||||
u_int32_t eap_vendor;
|
u_int32_t eap_vendor;
|
||||||
char *eap_identity;
|
char *eap_identity;
|
||||||
char *aaa_identity;
|
char *aaa_identity;
|
||||||
|
char *xauth_identity;
|
||||||
int mode;
|
int mode;
|
||||||
int mobike;
|
int mobike;
|
||||||
int force_encap;
|
int force_encap;
|
||||||
|
|||||||
Reference in New Issue
Block a user