blob: 3d98879622c5b8c595df9661545fb00cae311b69 [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>
27
Andy Green4739e5c2011-01-22 12:51:57 +000028#include "../lib/libwebsockets.h"
Andy Green4739e5c2011-01-22 12:51:57 +000029
Andy Green990d5062011-01-30 21:04:24 +000030static unsigned int opts;
Andy Greenb3ae0a32011-02-14 20:25:43 +000031static int was_closed;
Andy Green775884e2011-03-06 13:32:53 +000032static int deny_deflate;
Andy Green7448c7e2011-05-24 22:06:17 +010033static int deny_mux;
Andy Green4084af12011-05-24 22:06:17 +010034static struct libwebsocket *wsi_mirror;
Andy Green8e0c9842013-02-09 14:10:04 +080035static int mirror_lifetime = 0;
Andy Green990d5062011-01-30 21:04:24 +000036
Andy Green4739e5c2011-01-22 12:51:57 +000037/*
38 * This demo shows how to connect multiple websockets simultaneously to a
39 * websocket server (there is no restriction on their having to be the same
40 * server just it simplifies the demo).
41 *
42 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000043 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000044 *
45 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000046 * client (see them being drawn in every browser
47 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000048 */
49
50enum demo_protocols {
51
52 PROTOCOL_DUMB_INCREMENT,
53 PROTOCOL_LWS_MIRROR,
54
55 /* always last */
56 DEMO_PROTOCOL_COUNT
57};
58
59
60/* dumb_increment protocol */
61
62static int
Andy Green6ee372f2012-04-09 15:09:01 +080063callback_dumb_increment(struct libwebsocket_context *this,
Andy Green62c54d22011-02-14 09:14:25 +000064 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +000065 enum libwebsocket_callback_reasons reason,
66 void *user, void *in, size_t len)
67{
68 switch (reason) {
69
Andy Green4084af12011-05-24 22:06:17 +010070 case LWS_CALLBACK_CLOSED:
71 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
72 was_closed = 1;
73 break;
74
Andy Green4739e5c2011-01-22 12:51:57 +000075 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000076 ((char *)in)[len] = '\0';
77 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000078 break;
79
Andy Green775884e2011-03-06 13:32:53 +000080 /* because we are protocols[0] ... */
81
82 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
Andy Green7448c7e2011-05-24 22:06:17 +010083 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
84 fprintf(stderr, "denied deflate-stream extension\n");
85 return 1;
86 }
87 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
88 fprintf(stderr, "denied x-google-mux extension\n");
89 return 1;
90 }
91
Andy Green775884e2011-03-06 13:32:53 +000092 break;
93
Andy Green4739e5c2011-01-22 12:51:57 +000094 default:
95 break;
96 }
97
98 return 0;
99}
100
101
102/* lws-mirror_protocol */
103
Andy Green4739e5c2011-01-22 12:51:57 +0000104
105static int
Andy Green8e0c9842013-02-09 14:10:04 +0800106callback_lws_mirror(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +0000107 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +0000108 enum libwebsocket_callback_reasons reason,
109 void *user, void *in, size_t len)
110{
Andy Green90c7cbc2011-01-27 06:26:52 +0000111 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
112 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800113 int l = 0;
114 int n;
Andy Green90c7cbc2011-01-27 06:26:52 +0000115
Andy Green4739e5c2011-01-22 12:51:57 +0000116 switch (reason) {
117
Andy Greenb3ae0a32011-02-14 20:25:43 +0000118 case LWS_CALLBACK_CLOSED:
Andy Green4084af12011-05-24 22:06:17 +0100119 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED\n");
120 wsi_mirror = NULL;
Andy Greenb3ae0a32011-02-14 20:25:43 +0000121 break;
122
Andy Green90c7cbc2011-01-27 06:26:52 +0000123 case LWS_CALLBACK_CLIENT_ESTABLISHED:
124
125 /*
126 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000127 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +0000128 */
129
Andy Green8e0c9842013-02-09 14:10:04 +0800130 libwebsocket_callback_on_writable(context, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000131 break;
132
Andy Green4739e5c2011-01-22 12:51:57 +0000133 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000134/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
135 break;
136
137 case LWS_CALLBACK_CLIENT_WRITEABLE:
138
Andy Green3182ece2013-01-20 17:08:31 +0800139 for (n = 0; n < 1; n++)
140 l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
Andy Green90c7cbc2011-01-27 06:26:52 +0000141 "c #%06X %d %d %d;",
142 (int)random() & 0xffffff,
143 (int)random() % 500,
144 (int)random() % 250,
145 (int)random() % 24);
146
147 libwebsocket_write(wsi,
Andy Green990d5062011-01-30 21:04:24 +0000148 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
Andy Green90c7cbc2011-01-27 06:26:52 +0000149
Andy Green8e0c9842013-02-09 14:10:04 +0800150 mirror_lifetime--;
151 if (!mirror_lifetime) {
152 fprintf(stderr, "closing mirror session\n");
153 libwebsocket_close_and_free_session(context,
154 wsi_mirror, LWS_CLOSE_STATUS_GOINGAWAY);
155 } else
156 /* get notified as soon as we can write again */
157 libwebsocket_callback_on_writable(context, wsi);
Andy Green4739e5c2011-01-22 12:51:57 +0000158 break;
159
160 default:
161 break;
162 }
163
164 return 0;
165}
166
167
168/* list of supported protocols and callbacks */
169
170static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000171 {
172 "dumb-increment-protocol",
173 callback_dumb_increment,
174 0,
Andy Green54495112013-02-06 21:10:16 +0900175 20,
Andy Green4739e5c2011-01-22 12:51:57 +0000176 },
Peter Hinz56885f32011-03-02 22:03:47 +0000177 {
178 "lws-mirror-protocol",
179 callback_lws_mirror,
180 0,
Andy Greene7c97e82013-02-09 14:07:32 +0800181 128,
Andy Green4739e5c2011-01-22 12:51:57 +0000182 },
Andy Green54495112013-02-06 21:10:16 +0900183 { NULL, NULL, 0, 0 } /* end */
Andy Green4739e5c2011-01-22 12:51:57 +0000184};
185
186static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000187 { "help", no_argument, NULL, 'h' },
Andy Green46ef0cf2013-01-10 22:28:59 +0800188 { "debug", required_argument, NULL, 'd' },
Andy Green90c7cbc2011-01-27 06:26:52 +0000189 { "port", required_argument, NULL, 'p' },
190 { "ssl", no_argument, NULL, 's' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000191 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000192 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100193 { "nomux", no_argument, NULL, 'n' },
Andy Green43063dd2013-01-13 11:58:18 +0800194 { "longlived", no_argument, NULL, 'l' },
Andy Green4739e5c2011-01-22 12:51:57 +0000195 { NULL, 0, 0, 0 }
196};
197
198
199int main(int argc, char **argv)
200{
201 int n = 0;
Andy Green93f98d72013-02-11 14:05:02 +0800202 int ret = 0;
Andy Green4739e5c2011-01-22 12:51:57 +0000203 int port = 7681;
204 int use_ssl = 0;
205 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000206 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000207 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000208 int ietf_version = -1; /* latest */
Andy Green43063dd2013-01-13 11:58:18 +0800209 int longlived = 0;
Andy Green1b265272013-02-09 14:01:09 +0800210 struct lws_context_creation_info info;
211
212 memset(&info, 0, sizeof info);
Andy Green90c7cbc2011-01-27 06:26:52 +0000213
Andy Green4739e5c2011-01-22 12:51:57 +0000214 fprintf(stderr, "libwebsockets test client\n"
Andy Green46ef0cf2013-01-10 22:28:59 +0800215 "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
Andy Green4739e5c2011-01-22 12:51:57 +0000216 "licensed under LGPL2.1\n");
217
218 if (argc < 2)
219 goto usage;
220
Andy Green4739e5c2011-01-22 12:51:57 +0000221 while (n >= 0) {
Andy Green5738c0e2013-01-21 09:53:35 +0800222 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000223 if (n < 0)
224 continue;
225 switch (n) {
Andy Green46ef0cf2013-01-10 22:28:59 +0800226 case 'd':
Andy Greende8f27a2013-01-12 09:17:42 +0800227 lws_set_log_level(atoi(optarg), NULL);
Andy Green46ef0cf2013-01-10 22:28:59 +0800228 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000229 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000230 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000231 break;
232 case 'p':
233 port = atoi(optarg);
234 break;
Andy Green43063dd2013-01-13 11:58:18 +0800235 case 'l':
236 longlived = 1;
237 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000238 case 'v':
239 ietf_version = atoi(optarg);
240 break;
Andy Green775884e2011-03-06 13:32:53 +0000241 case 'u':
242 deny_deflate = 1;
243 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100244 case 'n':
245 deny_mux = 1;
246 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000247 case 'h':
248 goto usage;
249 }
250 }
251
Andy Green1efb63c2011-02-06 17:42:06 +0000252 if (optind >= argc)
253 goto usage;
254
255 address = argv[optind];
256
Andy Green4739e5c2011-01-22 12:51:57 +0000257 /*
258 * create the websockets context. This tracks open connections and
259 * knows how to route any traffic and which protocol version to use,
260 * and if each connection is client or server side.
261 *
262 * For this client-only demo, we tell it to not listen on any port.
263 */
264
Andy Green1b265272013-02-09 14:01:09 +0800265 info.port = CONTEXT_PORT_NO_LISTEN;
266 info.protocols = protocols;
Andy Green3182ece2013-01-20 17:08:31 +0800267#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +0800268 info.extensions = libwebsocket_internal_extensions;
Andy Green3182ece2013-01-20 17:08:31 +0800269#endif
Andy Green1b265272013-02-09 14:01:09 +0800270 info.gid = -1;
271 info.uid = -1;
272
273 context = libwebsocket_create_context(&info);
Andy Green4739e5c2011-01-22 12:51:57 +0000274 if (context == NULL) {
275 fprintf(stderr, "Creating libwebsocket context failed\n");
276 return 1;
277 }
278
Andy Green4739e5c2011-01-22 12:51:57 +0000279 /* create a client websocket using dumb increment protocol */
280
Andy Green90c7cbc2011-01-27 06:26:52 +0000281 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000282 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000283 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000284
285 if (wsi_dumb == NULL) {
286 fprintf(stderr, "libwebsocket dumb connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800287 ret = 1;
288 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +0000289 }
290
Andy Green4739e5c2011-01-22 12:51:57 +0000291 fprintf(stderr, "Websocket connections opened\n");
292
293 /*
294 * sit there servicing the websocket context to handle incoming
295 * packets, and drawing random circles on the mirror protocol websocket
296 */
297
298 n = 0;
Andy Green4084af12011-05-24 22:06:17 +0100299 while (n >= 0 && !was_closed) {
Andy Green8e0c9842013-02-09 14:10:04 +0800300 n = libwebsocket_service(context, 10);
Andy Green4739e5c2011-01-22 12:51:57 +0000301
Andy Green3928f612012-07-20 12:58:38 +0800302 if (n < 0)
303 continue;
304
Andy Green8e0c9842013-02-09 14:10:04 +0800305 if (wsi_mirror)
306 continue;
307
308 /* create a client websocket using mirror protocol */
309
310 wsi_mirror = libwebsocket_client_connect(context,
311 address, port, use_ssl, "/",
312 argv[optind], argv[optind],
313 protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
314
Andy Green4084af12011-05-24 22:06:17 +0100315 if (wsi_mirror == NULL) {
Andy Green8e0c9842013-02-09 14:10:04 +0800316 fprintf(stderr, "libwebsocket "
317 "dumb connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800318 ret = 1;
319 goto bail;
Andy Green4084af12011-05-24 22:06:17 +0100320 }
Andy Green8e0c9842013-02-09 14:10:04 +0800321
322 mirror_lifetime = 10 + (random() & 1023);
323 /* useful to test single connection stability */
324 if (longlived)
325 mirror_lifetime += 50000;
326
327 fprintf(stderr, "opened mirror connection with "
328 "%d lifetime\n", mirror_lifetime);
329
330 /*
331 * mirror_lifetime is decremented each send, when it reaches
332 * zero the connection is closed in the send callback.
333 * When the close callback comes, wsi_mirror is set to NULL
334 * so a new connection will be opened
335 */
Andy Green4084af12011-05-24 22:06:17 +0100336 }
337
Andy Green93f98d72013-02-11 14:05:02 +0800338bail:
Andy Greenb3ae0a32011-02-14 20:25:43 +0000339 fprintf(stderr, "Exiting\n");
340
Andy Green6964bb52011-01-23 16:50:33 +0000341 libwebsocket_context_destroy(context);
342
Andy Green93f98d72013-02-11 14:05:02 +0800343 return ret;
Andy Green4739e5c2011-01-22 12:51:57 +0000344
345usage:
346 fprintf(stderr, "Usage: libwebsockets-test-client "
Andy Green46ef0cf2013-01-10 22:28:59 +0800347 "<server address> [--port=<p>] "
348 "[--ssl] [-k] [-v <ver>] "
Andy Green43063dd2013-01-13 11:58:18 +0800349 "[-d <log bitfield>] [-l]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000350 return 1;
351}