2 * Copyright (C) 2013 Martin Willi
3 * Copyright (C) 2013 revosec AG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "cmd_connection.h"
21 #include <utils/debug.h>
22 #include <processing/jobs/callback_job.h>
25 typedef struct private_cmd_connection_t private_cmd_connection_t
;
28 * Private data of an cmd_connection_t object.
30 struct private_cmd_connection_t
{
33 * Public cmd_connection_t interface.
35 cmd_connection_t
public;
38 * Process ID to terminate on failure
43 * Hostname to connect to
54 * Shut down application
56 static void terminate(private_cmd_connection_t
*this)
58 kill(this->pid
, SIGUSR1
);
62 * Create peer config with associated ike config
64 static peer_cfg_t
* create_peer_cfg(private_cmd_connection_t
*this)
68 u_int16_t local_port
, remote_port
= IKEV2_UDP_PORT
;
70 local_port
= charon
->socket
->get_port(charon
->socket
, FALSE
);
71 if (local_port
!= IKEV2_UDP_PORT
)
73 remote_port
= IKEV2_NATT_PORT
;
75 ike_cfg
= ike_cfg_create(IKEV2
, TRUE
, FALSE
, "0.0.0.0", FALSE
, local_port
,
76 this->host
, FALSE
, remote_port
, FRAGMENTATION_NO
, 0);
77 ike_cfg
->add_proposal(ike_cfg
, proposal_create_default(PROTO_IKE
));
78 peer_cfg
= peer_cfg_create("cmd", ike_cfg
,
79 CERT_SEND_IF_ASKED
, UNIQUE_REPLACE
, 1, /* keyingtries */
80 36000, 0, /* rekey 10h, reauth none */
81 600, 600, /* jitter, over 10min */
82 TRUE
, FALSE
, /* mobike, aggressive */
83 30, 0, /* DPD delay, timeout */
84 FALSE
, NULL
, NULL
); /* mediation */
85 peer_cfg
->add_virtual_ip(peer_cfg
, host_create_from_string("0.0.0.0", 0));
91 * Attach authentication configs to peer config
93 static void add_auth_cfgs(private_cmd_connection_t
*this, peer_cfg_t
*peer_cfg
)
97 auth
= auth_cfg_create();
98 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
99 auth
->add(auth
, AUTH_RULE_IDENTITY
,
100 identification_create_from_string(this->identity
));
101 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, TRUE
);
103 auth
= auth_cfg_create();
105 auth
->add(auth
, AUTH_RULE_IDENTITY
,
106 identification_create_from_string(this->host
));
107 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, FALSE
);
111 * Attach child config to peer config
113 static child_cfg_t
* create_child_cfg(private_cmd_connection_t
*this)
115 child_cfg_t
*child_cfg
;
116 traffic_selector_t
*ts
;
117 lifetime_cfg_t lifetime
= {
119 .life
= 10800 /* 3h */,
120 .rekey
= 10200 /* 2h50min */,
121 .jitter
= 300 /* 5min */
125 child_cfg
= child_cfg_create("cmd", &lifetime
,
126 NULL
, FALSE
, MODE_TUNNEL
, /* updown, hostaccess */
127 ACTION_NONE
, ACTION_NONE
, ACTION_NONE
, FALSE
,
128 0, 0, NULL
, NULL
, 0);
129 child_cfg
->add_proposal(child_cfg
, proposal_create_default(PROTO_ESP
));
130 ts
= traffic_selector_create_dynamic(0, 0, 65535);
131 child_cfg
->add_traffic_selector(child_cfg
, TRUE
, ts
);
132 ts
= traffic_selector_create_from_string(0, TS_IPV4_ADDR_RANGE
,
133 "0.0.0.0", 0, "255.255.255.255", 65535);
134 child_cfg
->add_traffic_selector(child_cfg
, FALSE
, ts
);
140 * Initiate the configured connection
142 static job_requeue_t
initiate(private_cmd_connection_t
*this)
144 peer_cfg_t
*peer_cfg
;
145 child_cfg_t
*child_cfg
;
149 DBG1(DBG_CFG
, "unable to initiate, missing --host option");
151 return JOB_REQUEUE_NONE
;
155 DBG1(DBG_CFG
, "unable to initiate, missing --identity option");
157 return JOB_REQUEUE_NONE
;
160 peer_cfg
= create_peer_cfg(this);
162 add_auth_cfgs(this, peer_cfg
);
164 child_cfg
= create_child_cfg(this);
165 peer_cfg
->add_child_cfg(peer_cfg
, child_cfg
->get_ref(child_cfg
));
167 if (charon
->controller
->initiate(charon
->controller
, peer_cfg
, child_cfg
,
168 controller_cb_empty
, NULL
, 0) != SUCCESS
)
172 return JOB_REQUEUE_NONE
;
175 METHOD(cmd_connection_t
, handle
, bool,
176 private_cmd_connection_t
*this, cmd_option_type_t opt
, char *arg
)
183 case CMD_OPT_IDENTITY
:
184 this->identity
= arg
;
192 METHOD(cmd_connection_t
, destroy
, void,
193 private_cmd_connection_t
*this)
201 cmd_connection_t
*cmd_connection_create()
203 private_cmd_connection_t
*this;
213 /* queue job, gets initiated as soon as we are up and running */
214 lib
->processor
->queue_job(lib
->processor
,
215 (job_t
*)callback_job_create_with_prio(
216 (callback_job_cb_t
)initiate
, this, NULL
,
217 (callback_job_cancel_t
)return_false
, JOB_PRIO_CRITICAL
));
219 return &this->public;