blob: 4c2b07a53c858ba9be52c915f004d572adbd9a05 [file] [log] [blame]
Andy Green4739e5c2011-01-22 12:51:57 +00001/*
2 * libwebsockets-test-client - libwebsockets test implementation
3 *
4 * Copyright (C) 2011 Andy Green <andy@warmcat.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation:
9 * version 2.1 of the License.
10 *
11 * This library 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 GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <unistd.h>
25#include <getopt.h>
26#include <string.h>
Andy Green3886ec72013-02-11 14:32:02 +080027#include <signal.h>
Andy Green4739e5c2011-01-22 12:51:57 +000028
Joakim Soderberg7eadd582013-02-22 09:28:04 +080029#ifdef CMAKE_BUILD
30#include "lws_config.h"
31#endif
32
Andy Green4739e5c2011-01-22 12:51:57 +000033#include "../lib/libwebsockets.h"
Andy Green4739e5c2011-01-22 12:51:57 +000034
Andy Green990d5062011-01-30 21:04:24 +000035static unsigned int opts;
Andy Greenb3ae0a32011-02-14 20:25:43 +000036static int was_closed;
Andy Green775884e2011-03-06 13:32:53 +000037static int deny_deflate;
Andy Green7448c7e2011-05-24 22:06:17 +010038static int deny_mux;
Andy Green4084af12011-05-24 22:06:17 +010039static struct libwebsocket *wsi_mirror;
Andy Green8e0c9842013-02-09 14:10:04 +080040static int mirror_lifetime = 0;
Jakob Flierlaf8694d2014-01-27 12:37:47 +010041static volatile int force_exit = 0;
Andy Green5dc62ea2013-09-20 20:26:12 +080042static int longlived = 0;
Andy Green990d5062011-01-30 21:04:24 +000043
Andy Green4739e5c2011-01-22 12:51:57 +000044/*
45 * This demo shows how to connect multiple websockets simultaneously to a
46 * websocket server (there is no restriction on their having to be the same
47 * server just it simplifies the demo).
48 *
49 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000050 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000051 *
52 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000053 * client (see them being drawn in every browser
54 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000055 */
56
57enum demo_protocols {
58
59 PROTOCOL_DUMB_INCREMENT,
60 PROTOCOL_LWS_MIRROR,
61
62 /* always last */
63 DEMO_PROTOCOL_COUNT
64};
65
66
67/* dumb_increment protocol */
68
69static int
Andy Green6ee372f2012-04-09 15:09:01 +080070callback_dumb_increment(struct libwebsocket_context *this,
Andy Green62c54d22011-02-14 09:14:25 +000071 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +000072 enum libwebsocket_callback_reasons reason,
73 void *user, void *in, size_t len)
74{
75 switch (reason) {
76
Andy Green5dc62ea2013-09-20 20:26:12 +080077 case LWS_CALLBACK_CLIENT_ESTABLISHED:
78 fprintf(stderr, "callback_dumb_increment: LWS_CALLBACK_CLIENT_ESTABLISHED\n");
79 break;
80
81 case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
82 fprintf(stderr, "LWS_CALLBACK_CLIENT_CONNECTION_ERROR\n");
83 was_closed = 1;
84 break;
85
Andy Green4084af12011-05-24 22:06:17 +010086 case LWS_CALLBACK_CLOSED:
87 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
88 was_closed = 1;
89 break;
90
Andy Green4739e5c2011-01-22 12:51:57 +000091 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000092 ((char *)in)[len] = '\0';
93 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000094 break;
95
Andy Green775884e2011-03-06 13:32:53 +000096 /* because we are protocols[0] ... */
97
98 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
Andy Green7448c7e2011-05-24 22:06:17 +010099 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
100 fprintf(stderr, "denied deflate-stream extension\n");
101 return 1;
102 }
Andy Green5c9fcac2013-03-16 12:34:36 +0800103 if ((strcmp(in, "deflate-frame") == 0) && deny_deflate) {
104 fprintf(stderr, "denied deflate-frame extension\n");
105 return 1;
106 }
Andy Green7448c7e2011-05-24 22:06:17 +0100107 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
108 fprintf(stderr, "denied x-google-mux extension\n");
109 return 1;
110 }
111
Andy Green775884e2011-03-06 13:32:53 +0000112 break;
113
Andy Green4739e5c2011-01-22 12:51:57 +0000114 default:
115 break;
116 }
117
118 return 0;
119}
120
121
122/* lws-mirror_protocol */
123
Andy Green4739e5c2011-01-22 12:51:57 +0000124
125static int
Andy Green8e0c9842013-02-09 14:10:04 +0800126callback_lws_mirror(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +0000127 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +0000128 enum libwebsocket_callback_reasons reason,
129 void *user, void *in, size_t len)
130{
Andy Green90c7cbc2011-01-27 06:26:52 +0000131 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
132 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800133 int l = 0;
134 int n;
Andy Green90c7cbc2011-01-27 06:26:52 +0000135
Andy Green4739e5c2011-01-22 12:51:57 +0000136 switch (reason) {
137
Andy Green90c7cbc2011-01-27 06:26:52 +0000138 case LWS_CALLBACK_CLIENT_ESTABLISHED:
139
Andy Green5dc62ea2013-09-20 20:26:12 +0800140 fprintf(stderr, "callback_lws_mirror: LWS_CALLBACK_CLIENT_ESTABLISHED\n");
141
142 mirror_lifetime = 10 + (random() & 1023);
143 /* useful to test single connection stability */
144 if (longlived)
145 mirror_lifetime += 50000;
146
147 fprintf(stderr, "opened mirror connection with "
148 "%d lifetime\n", mirror_lifetime);
149
150 /*
151 * mirror_lifetime is decremented each send, when it reaches
152 * zero the connection is closed in the send callback.
153 * When the close callback comes, wsi_mirror is set to NULL
154 * so a new connection will be opened
155 */
156
Andy Green90c7cbc2011-01-27 06:26:52 +0000157 /*
158 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000159 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +0000160 */
161
Andy Green8e0c9842013-02-09 14:10:04 +0800162 libwebsocket_callback_on_writable(context, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000163 break;
164
Andy Green5dc62ea2013-09-20 20:26:12 +0800165 case LWS_CALLBACK_CLOSED:
166 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED mirror_lifetime=%d\n", mirror_lifetime);
167 wsi_mirror = NULL;
168 break;
169
Andy Green4739e5c2011-01-22 12:51:57 +0000170 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000171/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
172 break;
173
174 case LWS_CALLBACK_CLIENT_WRITEABLE:
175
Andy Green3182ece2013-01-20 17:08:31 +0800176 for (n = 0; n < 1; n++)
177 l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
Andy Green90c7cbc2011-01-27 06:26:52 +0000178 "c #%06X %d %d %d;",
179 (int)random() & 0xffffff,
180 (int)random() % 500,
181 (int)random() % 250,
182 (int)random() % 24);
183
Andy Greenfc7c5e42013-02-23 10:50:10 +0800184 n = libwebsocket_write(wsi,
Andy Green990d5062011-01-30 21:04:24 +0000185 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
Andy Green90c7cbc2011-01-27 06:26:52 +0000186
Andy Greenfc7c5e42013-02-23 10:50:10 +0800187 if (n < 0)
188 return -1;
189 if (n < l) {
190 lwsl_err("Partial write LWS_CALLBACK_CLIENT_WRITEABLE\n");
191 return -1;
192 }
193
Andy Green8e0c9842013-02-09 14:10:04 +0800194 mirror_lifetime--;
195 if (!mirror_lifetime) {
196 fprintf(stderr, "closing mirror session\n");
Andy Green310655b2013-02-11 14:08:50 +0800197 return -1;
Andy Green8e0c9842013-02-09 14:10:04 +0800198 } else
199 /* get notified as soon as we can write again */
200 libwebsocket_callback_on_writable(context, wsi);
Andy Green4739e5c2011-01-22 12:51:57 +0000201 break;
202
203 default:
204 break;
205 }
206
207 return 0;
208}
209
210
211/* list of supported protocols and callbacks */
212
213static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000214 {
215 "dumb-increment-protocol",
216 callback_dumb_increment,
217 0,
Andy Green54495112013-02-06 21:10:16 +0900218 20,
Andy Green4739e5c2011-01-22 12:51:57 +0000219 },
Peter Hinz56885f32011-03-02 22:03:47 +0000220 {
221 "lws-mirror-protocol",
222 callback_lws_mirror,
223 0,
Andy Greene7c97e82013-02-09 14:07:32 +0800224 128,
Andy Green4739e5c2011-01-22 12:51:57 +0000225 },
Andy Green54495112013-02-06 21:10:16 +0900226 { NULL, NULL, 0, 0 } /* end */
Andy Green4739e5c2011-01-22 12:51:57 +0000227};
228
Andy Green3886ec72013-02-11 14:32:02 +0800229void sighandler(int sig)
230{
231 force_exit = 1;
232}
233
Andy Green4739e5c2011-01-22 12:51:57 +0000234static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000235 { "help", no_argument, NULL, 'h' },
Andy Green46ef0cf2013-01-10 22:28:59 +0800236 { "debug", required_argument, NULL, 'd' },
Andy Green90c7cbc2011-01-27 06:26:52 +0000237 { "port", required_argument, NULL, 'p' },
238 { "ssl", no_argument, NULL, 's' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000239 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000240 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100241 { "nomux", no_argument, NULL, 'n' },
Andy Green43063dd2013-01-13 11:58:18 +0800242 { "longlived", no_argument, NULL, 'l' },
Andy Green4739e5c2011-01-22 12:51:57 +0000243 { NULL, 0, 0, 0 }
244};
245
246
247int main(int argc, char **argv)
248{
249 int n = 0;
Andy Green93f98d72013-02-11 14:05:02 +0800250 int ret = 0;
Andy Green4739e5c2011-01-22 12:51:57 +0000251 int port = 7681;
252 int use_ssl = 0;
253 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000254 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000255 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000256 int ietf_version = -1; /* latest */
Andy Green1b265272013-02-09 14:01:09 +0800257 struct lws_context_creation_info info;
258
259 memset(&info, 0, sizeof info);
Andy Green90c7cbc2011-01-27 06:26:52 +0000260
Andy Green4739e5c2011-01-22 12:51:57 +0000261 fprintf(stderr, "libwebsockets test client\n"
Andy Green46ef0cf2013-01-10 22:28:59 +0800262 "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
Andy Green4739e5c2011-01-22 12:51:57 +0000263 "licensed under LGPL2.1\n");
264
265 if (argc < 2)
266 goto usage;
267
Andy Green4739e5c2011-01-22 12:51:57 +0000268 while (n >= 0) {
Andy Green5738c0e2013-01-21 09:53:35 +0800269 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000270 if (n < 0)
271 continue;
272 switch (n) {
Andy Green46ef0cf2013-01-10 22:28:59 +0800273 case 'd':
Andy Greende8f27a2013-01-12 09:17:42 +0800274 lws_set_log_level(atoi(optarg), NULL);
Andy Green46ef0cf2013-01-10 22:28:59 +0800275 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000276 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000277 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000278 break;
279 case 'p':
280 port = atoi(optarg);
281 break;
Andy Green43063dd2013-01-13 11:58:18 +0800282 case 'l':
283 longlived = 1;
284 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000285 case 'v':
286 ietf_version = atoi(optarg);
287 break;
Andy Green775884e2011-03-06 13:32:53 +0000288 case 'u':
289 deny_deflate = 1;
290 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100291 case 'n':
292 deny_mux = 1;
293 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000294 case 'h':
295 goto usage;
296 }
297 }
298
Andy Green1efb63c2011-02-06 17:42:06 +0000299 if (optind >= argc)
300 goto usage;
301
Andy Green3886ec72013-02-11 14:32:02 +0800302 signal(SIGINT, sighandler);
303
Andy Green1efb63c2011-02-06 17:42:06 +0000304 address = argv[optind];
305
Andy Green4739e5c2011-01-22 12:51:57 +0000306 /*
307 * create the websockets context. This tracks open connections and
308 * knows how to route any traffic and which protocol version to use,
309 * and if each connection is client or server side.
310 *
311 * For this client-only demo, we tell it to not listen on any port.
312 */
313
Andy Green1b265272013-02-09 14:01:09 +0800314 info.port = CONTEXT_PORT_NO_LISTEN;
315 info.protocols = protocols;
Andy Green3182ece2013-01-20 17:08:31 +0800316#ifndef LWS_NO_EXTENSIONS
Joakim Soderbergf272cb02013-02-13 09:29:26 +0800317 info.extensions = libwebsocket_get_internal_extensions();
Andy Green3182ece2013-01-20 17:08:31 +0800318#endif
Andy Green1b265272013-02-09 14:01:09 +0800319 info.gid = -1;
320 info.uid = -1;
321
322 context = libwebsocket_create_context(&info);
Andy Green4739e5c2011-01-22 12:51:57 +0000323 if (context == NULL) {
324 fprintf(stderr, "Creating libwebsocket context failed\n");
325 return 1;
326 }
327
Andy Green4739e5c2011-01-22 12:51:57 +0000328 /* create a client websocket using dumb increment protocol */
329
Andy Green90c7cbc2011-01-27 06:26:52 +0000330 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000331 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000332 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000333
334 if (wsi_dumb == NULL) {
Andy Green5dc62ea2013-09-20 20:26:12 +0800335 fprintf(stderr, "libwebsocket connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800336 ret = 1;
337 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +0000338 }
339
Andy Green5dc62ea2013-09-20 20:26:12 +0800340 fprintf(stderr, "Waiting for connect...\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000341
342 /*
343 * sit there servicing the websocket context to handle incoming
344 * packets, and drawing random circles on the mirror protocol websocket
Andy Green5dc62ea2013-09-20 20:26:12 +0800345 * nothing happens until the client websocket connection is
346 * asynchronously established
Andy Green4739e5c2011-01-22 12:51:57 +0000347 */
348
349 n = 0;
Andy Green3886ec72013-02-11 14:32:02 +0800350 while (n >= 0 && !was_closed && !force_exit) {
Andy Green8e0c9842013-02-09 14:10:04 +0800351 n = libwebsocket_service(context, 10);
Andy Green4739e5c2011-01-22 12:51:57 +0000352
Andy Green3928f612012-07-20 12:58:38 +0800353 if (n < 0)
354 continue;
355
Andy Green8e0c9842013-02-09 14:10:04 +0800356 if (wsi_mirror)
357 continue;
358
359 /* create a client websocket using mirror protocol */
360
361 wsi_mirror = libwebsocket_client_connect(context,
362 address, port, use_ssl, "/",
363 argv[optind], argv[optind],
364 protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
365
Andy Green4084af12011-05-24 22:06:17 +0100366 if (wsi_mirror == NULL) {
Andy Green8e0c9842013-02-09 14:10:04 +0800367 fprintf(stderr, "libwebsocket "
Andy Green5dc62ea2013-09-20 20:26:12 +0800368 "mirror connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800369 ret = 1;
370 goto bail;
Andy Green4084af12011-05-24 22:06:17 +0100371 }
372 }
373
Andy Green93f98d72013-02-11 14:05:02 +0800374bail:
Andy Greenb3ae0a32011-02-14 20:25:43 +0000375 fprintf(stderr, "Exiting\n");
376
Andy Green6964bb52011-01-23 16:50:33 +0000377 libwebsocket_context_destroy(context);
378
Andy Green93f98d72013-02-11 14:05:02 +0800379 return ret;
Andy Green4739e5c2011-01-22 12:51:57 +0000380
381usage:
382 fprintf(stderr, "Usage: libwebsockets-test-client "
Andy Green46ef0cf2013-01-10 22:28:59 +0800383 "<server address> [--port=<p>] "
384 "[--ssl] [-k] [-v <ver>] "
Andy Green43063dd2013-01-13 11:58:18 +0800385 "[-d <log bitfield>] [-l]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000386 return 1;
387}