blob: c142ef990d631170e9bbde241378a9466e43c63e [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001/* $Id: ioq_unreg.c 4537 2013-06-19 06:47:43Z riza $ */
2/*
3 * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#include "test.h"
21
22#if INCLUDE_IOQUEUE_UNREG_TEST
23/*
24 * This tests the thread safety of ioqueue unregistration operation.
25 */
26
27#include <pj/errno.h>
28#include <pj/ioqueue.h>
29#include <pj/log.h>
30#include <pj/os.h>
31#include <pj/pool.h>
32#include <pj/sock.h>
33#include <pj/compat/socket.h>
34#include <pj/string.h>
35
36
37#define THIS_FILE "ioq_unreg.c"
38
39
40enum test_method
41{
42 UNREGISTER_IN_APP,
43 UNREGISTER_IN_CALLBACK,
44};
45
46static int thread_quitting;
47static enum test_method test_method;
48static pj_time_val time_to_unregister;
49
50struct sock_data
51{
52 pj_sock_t sock;
53 pj_sock_t csock;
54 pj_pool_t *pool;
55 pj_ioqueue_key_t *key;
56 pj_mutex_t *mutex;
57 pj_ioqueue_op_key_t *op_key;
58 char *buffer;
59 pj_size_t bufsize;
60 pj_bool_t unregistered;
61 pj_ssize_t received;
62} sock_data;
63
64static void on_read_complete(pj_ioqueue_key_t *key,
65 pj_ioqueue_op_key_t *op_key,
66 pj_ssize_t bytes_read)
67{
68 pj_ssize_t size;
69 char *sendbuf = "Hello world";
70 pj_status_t status;
71
72 if (sock_data.unregistered)
73 return;
74
75 pj_mutex_lock(sock_data.mutex);
76
77 if (sock_data.unregistered) {
78 pj_mutex_unlock(sock_data.mutex);
79 return;
80 }
81
82 if (bytes_read < 0) {
83 if (-bytes_read != PJ_STATUS_FROM_OS(PJ_BLOCKING_ERROR_VAL))
84 app_perror("ioqueue reported recv error", (pj_status_t)-bytes_read);
85 } else {
86 sock_data.received += bytes_read;
87 }
88
89 if (test_method == UNREGISTER_IN_CALLBACK) {
90 pj_time_val now;
91
92 pj_gettimeofday(&now);
93 if (PJ_TIME_VAL_GTE(now, time_to_unregister)) {
94 sock_data.unregistered = 1;
95 pj_ioqueue_unregister(key);
96 pj_mutex_unlock(sock_data.mutex);
97 return;
98 }
99 }
100
101 do {
102 size = sock_data.bufsize;
103 status = pj_ioqueue_recv(key, op_key, sock_data.buffer, &size, 0);
104 if (status != PJ_EPENDING && status != PJ_SUCCESS)
105 app_perror("recv() error", status);
106
107 } while (status == PJ_SUCCESS);
108
109 pj_mutex_unlock(sock_data.mutex);
110
111 size = pj_ansi_strlen(sendbuf);
112 status = pj_sock_send(sock_data.csock, sendbuf, &size, 0);
113 if (status != PJ_SUCCESS)
114 app_perror("send() error", status);
115
116 size = pj_ansi_strlen(sendbuf);
117 status = pj_sock_send(sock_data.csock, sendbuf, &size, 0);
118 if (status != PJ_SUCCESS)
119 app_perror("send() error", status);
120
121}
122
123static int worker_thread(void *arg)
124{
125 pj_ioqueue_t *ioqueue = (pj_ioqueue_t*) arg;
126
127 while (!thread_quitting) {
128 pj_time_val timeout = { 0, 20 };
129 pj_ioqueue_poll(ioqueue, &timeout);
130 }
131
132 return 0;
133}
134
135/*
136 * Perform unregistration test.
137 *
138 * This will create ioqueue and register a server socket. Depending
139 * on the test method, either the callback or the main thread will
140 * unregister and destroy the server socket after some period of time.
141 */
142static int perform_unreg_test(pj_ioqueue_t *ioqueue,
143 pj_pool_t *test_pool,
144 const char *title,
145 pj_bool_t other_socket)
146{
147 enum { WORKER_CNT = 1, MSEC = 500, QUIT_MSEC = 500 };
148 int i;
149 pj_thread_t *thread[WORKER_CNT];
150 struct sock_data osd;
151 pj_ioqueue_callback callback;
152 pj_time_val end_time;
153 pj_status_t status;
154
155
156 /* Sometimes its important to have other sockets registered to
157 * the ioqueue, because when no sockets are registered, the ioqueue
158 * will return from the poll early.
159 */
160 if (other_socket) {
161 status = app_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, 56127, &osd.sock);
162 if (status != PJ_SUCCESS) {
163 app_perror("Error creating other socket", status);
164 return -12;
165 }
166
167 pj_bzero(&callback, sizeof(callback));
168 status = pj_ioqueue_register_sock(test_pool, ioqueue, osd.sock,
169 NULL, &callback, &osd.key);
170 if (status != PJ_SUCCESS) {
171 app_perror("Error registering other socket", status);
172 return -13;
173 }
174
175 } else {
176 osd.key = NULL;
177 osd.sock = PJ_INVALID_SOCKET;
178 }
179
180 /* Init both time duration of testing */
181 thread_quitting = 0;
182 pj_gettimeofday(&time_to_unregister);
183 time_to_unregister.msec += MSEC;
184 pj_time_val_normalize(&time_to_unregister);
185
186 end_time = time_to_unregister;
187 end_time.msec += QUIT_MSEC;
188 pj_time_val_normalize(&end_time);
189
190
191 /* Create polling thread */
192 for (i=0; i<WORKER_CNT; ++i) {
193 status = pj_thread_create(test_pool, "unregtest", &worker_thread,
194 ioqueue, 0, 0, &thread[i]);
195 if (status != PJ_SUCCESS) {
196 app_perror("Error creating thread", status);
197 return -20;
198 }
199 }
200
201 /* Create pair of client/server sockets */
202 status = app_socketpair(pj_AF_INET(), pj_SOCK_DGRAM(), 0,
203 &sock_data.sock, &sock_data.csock);
204 if (status != PJ_SUCCESS) {
205 app_perror("app_socketpair error", status);
206 return -30;
207 }
208
209
210 /* Initialize test data */
211 sock_data.pool = pj_pool_create(mem, "sd", 1000, 1000, NULL);
212 sock_data.buffer = (char*) pj_pool_alloc(sock_data.pool, 128);
213 sock_data.bufsize = 128;
214 sock_data.op_key = (pj_ioqueue_op_key_t*)
215 pj_pool_alloc(sock_data.pool,
216 sizeof(*sock_data.op_key));
217 sock_data.received = 0;
218 sock_data.unregistered = 0;
219
220 pj_ioqueue_op_key_init(sock_data.op_key, sizeof(*sock_data.op_key));
221
222 status = pj_mutex_create_simple(sock_data.pool, "sd", &sock_data.mutex);
223 if (status != PJ_SUCCESS) {
224 app_perror("create_mutex() error", status);
225 return -35;
226 }
227
228 /* Register socket to ioqueue */
229 pj_bzero(&callback, sizeof(callback));
230 callback.on_read_complete = &on_read_complete;
231 status = pj_ioqueue_register_sock(sock_data.pool, ioqueue, sock_data.sock,
232 NULL, &callback, &sock_data.key);
233 if (status != PJ_SUCCESS) {
234 app_perror("pj_ioqueue_register error", status);
235 return -40;
236 }
237
238 /* Bootstrap the first send/receive */
239 on_read_complete(sock_data.key, sock_data.op_key, 0);
240
241 /* Loop until test time ends */
242 for (;;) {
243 pj_time_val now, timeout;
244 int n;
245
246 pj_gettimeofday(&now);
247
248 if (test_method == UNREGISTER_IN_APP &&
249 PJ_TIME_VAL_GTE(now, time_to_unregister) &&
250 !sock_data.unregistered)
251 {
252 sock_data.unregistered = 1;
253 /* Wait (as much as possible) for callback to complete */
254 pj_mutex_lock(sock_data.mutex);
255 pj_mutex_unlock(sock_data.mutex);
256 pj_ioqueue_unregister(sock_data.key);
257 }
258
259 if (PJ_TIME_VAL_GT(now, end_time) && sock_data.unregistered)
260 break;
261
262 timeout.sec = 0; timeout.msec = 10;
263 n = pj_ioqueue_poll(ioqueue, &timeout);
264 if (n < 0) {
265 app_perror("pj_ioqueue_poll error", -n);
266 pj_thread_sleep(1);
267 }
268 }
269
270 thread_quitting = 1;
271
272 for (i=0; i<WORKER_CNT; ++i) {
273 pj_thread_join(thread[i]);
274 pj_thread_destroy(thread[i]);
275 }
276
277 /* Destroy data */
278 pj_mutex_destroy(sock_data.mutex);
279 pj_pool_release(sock_data.pool);
280 sock_data.pool = NULL;
281
282 if (other_socket) {
283 pj_ioqueue_unregister(osd.key);
284 }
285
286 pj_sock_close(sock_data.csock);
287
288 PJ_LOG(3,(THIS_FILE, "....%s: done (%d KB/s)",
289 title, sock_data.received * 1000 / MSEC / 1000));
290 return 0;
291}
292
293static int udp_ioqueue_unreg_test_imp(pj_bool_t allow_concur)
294{
295 enum { LOOP = 10 };
296 int i, rc;
297 char title[30];
298 pj_ioqueue_t *ioqueue;
299 pj_pool_t *test_pool;
300
301 PJ_LOG(3,(THIS_FILE, "..testing with concurency=%d", allow_concur));
302
303 test_method = UNREGISTER_IN_APP;
304
305 test_pool = pj_pool_create(mem, "unregtest", 4000, 4000, NULL);
306
307 rc = pj_ioqueue_create(test_pool, 16, &ioqueue);
308 if (rc != PJ_SUCCESS) {
309 app_perror("Error creating ioqueue", rc);
310 return -10;
311 }
312
313 rc = pj_ioqueue_set_default_concurrency(ioqueue, allow_concur);
314 if (rc != PJ_SUCCESS) {
315 app_perror("Error in pj_ioqueue_set_default_concurrency()", rc);
316 return -12;
317 }
318
319 PJ_LOG(3, (THIS_FILE, "...ioqueue unregister stress test 0/3, unregister in app (%s)",
320 pj_ioqueue_name()));
321 for (i=0; i<LOOP; ++i) {
322 pj_ansi_sprintf(title, "repeat %d/%d", i, LOOP);
323 rc = perform_unreg_test(ioqueue, test_pool, title, 0);
324 if (rc != 0)
325 return rc;
326 }
327
328
329 PJ_LOG(3, (THIS_FILE, "...ioqueue unregister stress test 1/3, unregister in app (%s)",
330 pj_ioqueue_name()));
331 for (i=0; i<LOOP; ++i) {
332 pj_ansi_sprintf(title, "repeat %d/%d", i, LOOP);
333 rc = perform_unreg_test(ioqueue, test_pool, title, 1);
334 if (rc != 0)
335 return rc;
336 }
337
338 test_method = UNREGISTER_IN_CALLBACK;
339
340 PJ_LOG(3, (THIS_FILE, "...ioqueue unregister stress test 2/3, unregister in cb (%s)",
341 pj_ioqueue_name()));
342 for (i=0; i<LOOP; ++i) {
343 pj_ansi_sprintf(title, "repeat %d/%d", i, LOOP);
344 rc = perform_unreg_test(ioqueue, test_pool, title, 0);
345 if (rc != 0)
346 return rc;
347 }
348
349
350 PJ_LOG(3, (THIS_FILE, "...ioqueue unregister stress test 3/3, unregister in cb (%s)",
351 pj_ioqueue_name()));
352 for (i=0; i<LOOP; ++i) {
353 pj_ansi_sprintf(title, "repeat %d/%d", i, LOOP);
354 rc = perform_unreg_test(ioqueue, test_pool, title, 1);
355 if (rc != 0)
356 return rc;
357 }
358
359 pj_ioqueue_destroy(ioqueue);
360 pj_pool_release(test_pool);
361
362 return 0;
363}
364
365int udp_ioqueue_unreg_test(void)
366{
367 int rc;
368
369 rc = udp_ioqueue_unreg_test_imp(PJ_TRUE);
370 if (rc != 0)
371 return rc;
372
373 rc = udp_ioqueue_unreg_test_imp(PJ_FALSE);
374 if (rc != 0)
375 return rc;
376
377 return 0;
378}
379
380#else
381/* To prevent warning about "translation unit is empty"
382 * when this test is disabled.
383 */
384int dummy_uiq_unreg;
385#endif /* INCLUDE_IOQUEUE_UNREG_TEST */
386
387