2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
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 "load_tester_plugin.h"
17 #include "load_tester_config.h"
18 #include "load_tester_creds.h"
19 #include "load_tester_ipsec.h"
20 #include "load_tester_listener.h"
21 #include "load_tester_diffie_hellman.h"
27 #include <processing/jobs/callback_job.h>
28 #include <threading/condvar.h>
29 #include <threading/mutex.h>
31 static const char *plugin_name
= "load_tester";
33 typedef struct private_load_tester_plugin_t private_load_tester_plugin_t
;
36 * private data of load_tester plugin
38 struct private_load_tester_plugin_t
{
41 * implements plugin interface
43 load_tester_plugin_t
public;
46 * load_tester configuration backend
48 load_tester_config_t
*config
;
51 * load_tester credential set implementation
53 load_tester_creds_t
*creds
;
56 * event handler, listens on bus
58 load_tester_listener_t
*listener
;
61 * number of iterations per thread
66 * number desired initiator threads
71 * currenly running initiators
76 * delay between initiations, in ms
81 * mutex to lock running field
86 * condvar to wait for initiators
94 static job_requeue_t
do_load_test(private_load_tester_plugin_t
*this)
98 this->mutex
->lock(this->mutex
);
101 this->running
= this->initiators
;
103 this->mutex
->unlock(this->mutex
);
106 s
= this->delay
/ 1000;
107 ms
= this->delay
% 1000;
110 for (i
= 0; this->iterations
== 0 || i
< this->iterations
; i
++)
112 peer_cfg_t
*peer_cfg
;
113 child_cfg_t
*child_cfg
= NULL
;
114 enumerator_t
*enumerator
;
116 peer_cfg
= charon
->backends
->get_peer_cfg_by_name(charon
->backends
,
122 enumerator
= peer_cfg
->create_child_cfg_enumerator(peer_cfg
);
123 if (!enumerator
->enumerate(enumerator
, &child_cfg
))
125 enumerator
->destroy(enumerator
);
128 enumerator
->destroy(enumerator
);
130 charon
->controller
->initiate(charon
->controller
,
131 peer_cfg
, child_cfg
->get_ref(child_cfg
),
142 this->mutex
->lock(this->mutex
);
144 this->mutex
->unlock(this->mutex
);
145 this->condvar
->signal(this->condvar
);
146 return JOB_REQUEUE_NONE
;
149 METHOD(plugin_t
, destroy
, void,
150 private_load_tester_plugin_t
*this)
152 this->iterations
= -1;
153 this->mutex
->lock(this->mutex
);
154 while (this->running
)
156 this->condvar
->wait(this->condvar
, this->mutex
);
158 this->mutex
->unlock(this->mutex
);
159 hydra
->kernel_interface
->remove_ipsec_interface(hydra
->kernel_interface
,
160 (kernel_ipsec_constructor_t
)load_tester_ipsec_create
);
161 charon
->backends
->remove_backend(charon
->backends
, &this->config
->backend
);
162 lib
->credmgr
->remove_set(lib
->credmgr
, &this->creds
->credential_set
);
163 charon
->bus
->remove_listener(charon
->bus
, &this->listener
->listener
);
164 this->config
->destroy(this->config
);
165 this->creds
->destroy(this->creds
);
166 this->listener
->destroy(this->listener
);
167 lib
->crypto
->remove_dh(lib
->crypto
,
168 (dh_constructor_t
)load_tester_diffie_hellman_create
);
169 this->mutex
->destroy(this->mutex
);
170 this->condvar
->destroy(this->condvar
);
177 plugin_t
*load_tester_plugin_create()
179 private_load_tester_plugin_t
*this;
180 u_int i
, shutdown_on
= 0;
182 if (!lib
->settings
->get_bool(lib
->settings
,
183 "charon.plugins.load-tester.enable", FALSE
))
185 DBG1(DBG_CFG
, "disabling load-tester plugin, not configured");
195 .delay
= lib
->settings
->get_int(lib
->settings
,
196 "charon.plugins.load-tester.delay", 0),
197 .iterations
= lib
->settings
->get_int(lib
->settings
,
198 "charon.plugins.load-tester.iterations", 1),
199 .initiators
= lib
->settings
->get_int(lib
->settings
,
200 "charon.plugins.load-tester.initiators", 0),
201 .mutex
= mutex_create(MUTEX_TYPE_DEFAULT
),
202 .condvar
= condvar_create(CONDVAR_TYPE_DEFAULT
),
203 .config
= load_tester_config_create(),
204 .creds
= load_tester_creds_create(),
205 .listener
= load_tester_listener_create(shutdown_on
),
208 lib
->crypto
->add_dh(lib
->crypto
, MODP_NULL
, plugin_name
,
209 (dh_constructor_t
)load_tester_diffie_hellman_create
);
210 charon
->backends
->add_backend(charon
->backends
, &this->config
->backend
);
211 lib
->credmgr
->add_set(lib
->credmgr
, &this->creds
->credential_set
);
212 charon
->bus
->add_listener(charon
->bus
, &this->listener
->listener
);
214 if (lib
->settings
->get_bool(lib
->settings
,
215 "charon.plugins.load-tester.shutdown_when_complete", 0))
217 shutdown_on
= this->iterations
* this->initiators
;
221 if (lib
->settings
->get_bool(lib
->settings
,
222 "charon.plugins.load-tester.fake_kernel", FALSE
))
224 hydra
->kernel_interface
->add_ipsec_interface(hydra
->kernel_interface
,
225 (kernel_ipsec_constructor_t
)load_tester_ipsec_create
);
228 for (i
= 0; i
< this->initiators
; i
++)
230 lib
->processor
->queue_job(lib
->processor
,
231 (job_t
*)callback_job_create((callback_job_cb_t
)do_load_test
,
234 return &this->public.plugin
;