blob: 4e8097b14a2ecdc4e45fc6beac2b55aa072ae93c [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
Andy Green4739e5c2011-01-22 12:51:57 +000029#include "../lib/libwebsockets.h"
Andy Green4739e5c2011-01-22 12:51:57 +000030
Andy Green990d5062011-01-30 21:04:24 +000031static unsigned int opts;
Andy Greenb3ae0a32011-02-14 20:25:43 +000032static int was_closed;
Andy Green775884e2011-03-06 13:32:53 +000033static int deny_deflate;
Andy Green7448c7e2011-05-24 22:06:17 +010034static int deny_mux;
Andy Green4084af12011-05-24 22:06:17 +010035static struct libwebsocket *wsi_mirror;
Andy Green8e0c9842013-02-09 14:10:04 +080036static int mirror_lifetime = 0;
Andy Green3886ec72013-02-11 14:32:02 +080037static int force_exit = 0;
Andy Green990d5062011-01-30 21:04:24 +000038
Andy Green4739e5c2011-01-22 12:51:57 +000039/*
40 * This demo shows how to connect multiple websockets simultaneously to a
41 * websocket server (there is no restriction on their having to be the same
42 * server just it simplifies the demo).
43 *
44 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000045 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000046 *
47 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000048 * client (see them being drawn in every browser
49 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000050 */
51
52enum demo_protocols {
53
54 PROTOCOL_DUMB_INCREMENT,
55 PROTOCOL_LWS_MIRROR,
56
57 /* always last */
58 DEMO_PROTOCOL_COUNT
59};
60
61
62/* dumb_increment protocol */
63
64static int
Andy Green6ee372f2012-04-09 15:09:01 +080065callback_dumb_increment(struct libwebsocket_context *this,
Andy Green62c54d22011-02-14 09:14:25 +000066 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +000067 enum libwebsocket_callback_reasons reason,
68 void *user, void *in, size_t len)
69{
70 switch (reason) {
71
Andy Green4084af12011-05-24 22:06:17 +010072 case LWS_CALLBACK_CLOSED:
73 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
74 was_closed = 1;
75 break;
76
Andy Green4739e5c2011-01-22 12:51:57 +000077 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000078 ((char *)in)[len] = '\0';
79 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000080 break;
81
Andy Green775884e2011-03-06 13:32:53 +000082 /* because we are protocols[0] ... */
83
84 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
Andy Green7448c7e2011-05-24 22:06:17 +010085 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
86 fprintf(stderr, "denied deflate-stream extension\n");
87 return 1;
88 }
89 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
90 fprintf(stderr, "denied x-google-mux extension\n");
91 return 1;
92 }
93
Andy Green775884e2011-03-06 13:32:53 +000094 break;
95
Andy Green4739e5c2011-01-22 12:51:57 +000096 default:
97 break;
98 }
99
100 return 0;
101}
102
103
104/* lws-mirror_protocol */
105
Andy Green4739e5c2011-01-22 12:51:57 +0000106
107static int
Andy Green8e0c9842013-02-09 14:10:04 +0800108callback_lws_mirror(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +0000109 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +0000110 enum libwebsocket_callback_reasons reason,
111 void *user, void *in, size_t len)
112{
Andy Green90c7cbc2011-01-27 06:26:52 +0000113 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
114 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800115 int l = 0;
116 int n;
Andy Green90c7cbc2011-01-27 06:26:52 +0000117
Andy Green4739e5c2011-01-22 12:51:57 +0000118 switch (reason) {
119
Andy Greenb3ae0a32011-02-14 20:25:43 +0000120 case LWS_CALLBACK_CLOSED:
Andy Green4084af12011-05-24 22:06:17 +0100121 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED\n");
122 wsi_mirror = NULL;
Andy Greenb3ae0a32011-02-14 20:25:43 +0000123 break;
124
Andy Green90c7cbc2011-01-27 06:26:52 +0000125 case LWS_CALLBACK_CLIENT_ESTABLISHED:
126
127 /*
128 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000129 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +0000130 */
131
Andy Green8e0c9842013-02-09 14:10:04 +0800132 libwebsocket_callback_on_writable(context, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000133 break;
134
Andy Green4739e5c2011-01-22 12:51:57 +0000135 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000136/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
137 break;
138
139 case LWS_CALLBACK_CLIENT_WRITEABLE:
140
Andy Green3182ece2013-01-20 17:08:31 +0800141 for (n = 0; n < 1; n++)
142 l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
Andy Green90c7cbc2011-01-27 06:26:52 +0000143 "c #%06X %d %d %d;",
144 (int)random() & 0xffffff,
145 (int)random() % 500,
146 (int)random() % 250,
147 (int)random() % 24);
148
149 libwebsocket_write(wsi,
Andy Green990d5062011-01-30 21:04:24 +0000150 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
Andy Green90c7cbc2011-01-27 06:26:52 +0000151
Andy Green8e0c9842013-02-09 14:10:04 +0800152 mirror_lifetime--;
153 if (!mirror_lifetime) {
154 fprintf(stderr, "closing mirror session\n");
Andy Green310655b2013-02-11 14:08:50 +0800155 return -1;
Andy Green8e0c9842013-02-09 14:10:04 +0800156 } else
157 /* get notified as soon as we can write again */
158 libwebsocket_callback_on_writable(context, wsi);
Andy Green4739e5c2011-01-22 12:51:57 +0000159 break;
160
161 default:
162 break;
163 }
164
165 return 0;
166}
167
168
169/* list of supported protocols and callbacks */
170
171static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000172 {
173 "dumb-increment-protocol",
174 callback_dumb_increment,
175 0,
Andy Green54495112013-02-06 21:10:16 +0900176 20,
Andy Green4739e5c2011-01-22 12:51:57 +0000177 },
Peter Hinz56885f32011-03-02 22:03:47 +0000178 {
179 "lws-mirror-protocol",
180 callback_lws_mirror,
181 0,
Andy Greene7c97e82013-02-09 14:07:32 +0800182 128,
Andy Green4739e5c2011-01-22 12:51:57 +0000183 },
Andy Green54495112013-02-06 21:10:16 +0900184 { NULL, NULL, 0, 0 } /* end */
Andy Green4739e5c2011-01-22 12:51:57 +0000185};
186
Andy Green3886ec72013-02-11 14:32:02 +0800187void sighandler(int sig)
188{
189 force_exit = 1;
190}
191
Andy Green4739e5c2011-01-22 12:51:57 +0000192static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000193 { "help", no_argument, NULL, 'h' },
Andy Green46ef0cf2013-01-10 22:28:59 +0800194 { "debug", required_argument, NULL, 'd' },
Andy Green90c7cbc2011-01-27 06:26:52 +0000195 { "port", required_argument, NULL, 'p' },
196 { "ssl", no_argument, NULL, 's' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000197 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000198 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100199 { "nomux", no_argument, NULL, 'n' },
Andy Green43063dd2013-01-13 11:58:18 +0800200 { "longlived", no_argument, NULL, 'l' },
Andy Green4739e5c2011-01-22 12:51:57 +0000201 { NULL, 0, 0, 0 }
202};
203
204
205int main(int argc, char **argv)
206{
207 int n = 0;
Andy Green93f98d72013-02-11 14:05:02 +0800208 int ret = 0;
Andy Green4739e5c2011-01-22 12:51:57 +0000209 int port = 7681;
210 int use_ssl = 0;
211 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000212 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000213 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000214 int ietf_version = -1; /* latest */
Andy Green43063dd2013-01-13 11:58:18 +0800215 int longlived = 0;
Andy Green1b265272013-02-09 14:01:09 +0800216 struct lws_context_creation_info info;
217
218 memset(&info, 0, sizeof info);
Andy Green90c7cbc2011-01-27 06:26:52 +0000219
Andy Green4739e5c2011-01-22 12:51:57 +0000220 fprintf(stderr, "libwebsockets test client\n"
Andy Green46ef0cf2013-01-10 22:28:59 +0800221 "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
Andy Green4739e5c2011-01-22 12:51:57 +0000222 "licensed under LGPL2.1\n");
223
224 if (argc < 2)
225 goto usage;
226
Andy Green4739e5c2011-01-22 12:51:57 +0000227 while (n >= 0) {
Andy Green5738c0e2013-01-21 09:53:35 +0800228 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000229 if (n < 0)
230 continue;
231 switch (n) {
Andy Green46ef0cf2013-01-10 22:28:59 +0800232 case 'd':
Andy Greende8f27a2013-01-12 09:17:42 +0800233 lws_set_log_level(atoi(optarg), NULL);
Andy Green46ef0cf2013-01-10 22:28:59 +0800234 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000235 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000236 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000237 break;
238 case 'p':
239 port = atoi(optarg);
240 break;
Andy Green43063dd2013-01-13 11:58:18 +0800241 case 'l':
242 longlived = 1;
243 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000244 case 'v':
245 ietf_version = atoi(optarg);
246 break;
Andy Green775884e2011-03-06 13:32:53 +0000247 case 'u':
248 deny_deflate = 1;
249 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100250 case 'n':
251 deny_mux = 1;
252 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000253 case 'h':
254 goto usage;
255 }
256 }
257
Andy Green1efb63c2011-02-06 17:42:06 +0000258 if (optind >= argc)
259 goto usage;
260
Andy Green3886ec72013-02-11 14:32:02 +0800261 signal(SIGINT, sighandler);
262
Andy Green1efb63c2011-02-06 17:42:06 +0000263 address = argv[optind];
264
Andy Green4739e5c2011-01-22 12:51:57 +0000265 /*
266 * create the websockets context. This tracks open connections and
267 * knows how to route any traffic and which protocol version to use,
268 * and if each connection is client or server side.
269 *
270 * For this client-only demo, we tell it to not listen on any port.
271 */
272
Andy Green1b265272013-02-09 14:01:09 +0800273 info.port = CONTEXT_PORT_NO_LISTEN;
274 info.protocols = protocols;
Andy Green3182ece2013-01-20 17:08:31 +0800275#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +0800276 info.extensions = libwebsocket_internal_extensions;
Andy Green3182ece2013-01-20 17:08:31 +0800277#endif
Andy Green1b265272013-02-09 14:01:09 +0800278 info.gid = -1;
279 info.uid = -1;
280
281 context = libwebsocket_create_context(&info);
Andy Green4739e5c2011-01-22 12:51:57 +0000282 if (context == NULL) {
283 fprintf(stderr, "Creating libwebsocket context failed\n");
284 return 1;
285 }
286
Andy Green4739e5c2011-01-22 12:51:57 +0000287 /* create a client websocket using dumb increment protocol */
288
Andy Green90c7cbc2011-01-27 06:26:52 +0000289 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000290 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000291 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000292
293 if (wsi_dumb == NULL) {
294 fprintf(stderr, "libwebsocket dumb connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800295 ret = 1;
296 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +0000297 }
298
Andy Green4739e5c2011-01-22 12:51:57 +0000299 fprintf(stderr, "Websocket connections opened\n");
300
301 /*
302 * sit there servicing the websocket context to handle incoming
303 * packets, and drawing random circles on the mirror protocol websocket
304 */
305
306 n = 0;
Andy Green3886ec72013-02-11 14:32:02 +0800307 while (n >= 0 && !was_closed && !force_exit) {
Andy Green8e0c9842013-02-09 14:10:04 +0800308 n = libwebsocket_service(context, 10);
Andy Green4739e5c2011-01-22 12:51:57 +0000309
Andy Green3928f612012-07-20 12:58:38 +0800310 if (n < 0)
311 continue;
312
Andy Green8e0c9842013-02-09 14:10:04 +0800313 if (wsi_mirror)
314 continue;
315
316 /* create a client websocket using mirror protocol */
317
318 wsi_mirror = libwebsocket_client_connect(context,
319 address, port, use_ssl, "/",
320 argv[optind], argv[optind],
321 protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
322
Andy Green4084af12011-05-24 22:06:17 +0100323 if (wsi_mirror == NULL) {
Andy Green8e0c9842013-02-09 14:10:04 +0800324 fprintf(stderr, "libwebsocket "
325 "dumb connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800326 ret = 1;
327 goto bail;
Andy Green4084af12011-05-24 22:06:17 +0100328 }
Andy Green8e0c9842013-02-09 14:10:04 +0800329
330 mirror_lifetime = 10 + (random() & 1023);
331 /* useful to test single connection stability */
332 if (longlived)
333 mirror_lifetime += 50000;
334
335 fprintf(stderr, "opened mirror connection with "
336 "%d lifetime\n", mirror_lifetime);
337
338 /*
339 * mirror_lifetime is decremented each send, when it reaches
340 * zero the connection is closed in the send callback.
341 * When the close callback comes, wsi_mirror is set to NULL
342 * so a new connection will be opened
343 */
Andy Green4084af12011-05-24 22:06:17 +0100344 }
345
Andy Green93f98d72013-02-11 14:05:02 +0800346bail:
Andy Greenb3ae0a32011-02-14 20:25:43 +0000347 fprintf(stderr, "Exiting\n");
348
Andy Green6964bb52011-01-23 16:50:33 +0000349 libwebsocket_context_destroy(context);
350
Andy Green93f98d72013-02-11 14:05:02 +0800351 return ret;
Andy Green4739e5c2011-01-22 12:51:57 +0000352
353usage:
354 fprintf(stderr, "Usage: libwebsockets-test-client "
Andy Green46ef0cf2013-01-10 22:28:59 +0800355 "<server address> [--port=<p>] "
356 "[--ssl] [-k] [-v <ver>] "
Andy Green43063dd2013-01-13 11:58:18 +0800357 "[-d <log bitfield>] [-l]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000358 return 1;
359}