blob: 7b36de9f279c8836193621b0da1b286a87ebe7da [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");
Andy Green310655b2013-02-11 14:08:50 +0800153 return -1;
Andy Green8e0c9842013-02-09 14:10:04 +0800154 } else
155 /* get notified as soon as we can write again */
156 libwebsocket_callback_on_writable(context, wsi);
Andy Green4739e5c2011-01-22 12:51:57 +0000157 break;
158
159 default:
160 break;
161 }
162
163 return 0;
164}
165
166
167/* list of supported protocols and callbacks */
168
169static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000170 {
171 "dumb-increment-protocol",
172 callback_dumb_increment,
173 0,
Andy Green54495112013-02-06 21:10:16 +0900174 20,
Andy Green4739e5c2011-01-22 12:51:57 +0000175 },
Peter Hinz56885f32011-03-02 22:03:47 +0000176 {
177 "lws-mirror-protocol",
178 callback_lws_mirror,
179 0,
Andy Greene7c97e82013-02-09 14:07:32 +0800180 128,
Andy Green4739e5c2011-01-22 12:51:57 +0000181 },
Andy Green54495112013-02-06 21:10:16 +0900182 { NULL, NULL, 0, 0 } /* end */
Andy Green4739e5c2011-01-22 12:51:57 +0000183};
184
185static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000186 { "help", no_argument, NULL, 'h' },
Andy Green46ef0cf2013-01-10 22:28:59 +0800187 { "debug", required_argument, NULL, 'd' },
Andy Green90c7cbc2011-01-27 06:26:52 +0000188 { "port", required_argument, NULL, 'p' },
189 { "ssl", no_argument, NULL, 's' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000190 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000191 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100192 { "nomux", no_argument, NULL, 'n' },
Andy Green43063dd2013-01-13 11:58:18 +0800193 { "longlived", no_argument, NULL, 'l' },
Andy Green4739e5c2011-01-22 12:51:57 +0000194 { NULL, 0, 0, 0 }
195};
196
197
198int main(int argc, char **argv)
199{
200 int n = 0;
Andy Green93f98d72013-02-11 14:05:02 +0800201 int ret = 0;
Andy Green4739e5c2011-01-22 12:51:57 +0000202 int port = 7681;
203 int use_ssl = 0;
204 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000205 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000206 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000207 int ietf_version = -1; /* latest */
Andy Green43063dd2013-01-13 11:58:18 +0800208 int longlived = 0;
Andy Green1b265272013-02-09 14:01:09 +0800209 struct lws_context_creation_info info;
210
211 memset(&info, 0, sizeof info);
Andy Green90c7cbc2011-01-27 06:26:52 +0000212
Andy Green4739e5c2011-01-22 12:51:57 +0000213 fprintf(stderr, "libwebsockets test client\n"
Andy Green46ef0cf2013-01-10 22:28:59 +0800214 "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
Andy Green4739e5c2011-01-22 12:51:57 +0000215 "licensed under LGPL2.1\n");
216
217 if (argc < 2)
218 goto usage;
219
Andy Green4739e5c2011-01-22 12:51:57 +0000220 while (n >= 0) {
Andy Green5738c0e2013-01-21 09:53:35 +0800221 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000222 if (n < 0)
223 continue;
224 switch (n) {
Andy Green46ef0cf2013-01-10 22:28:59 +0800225 case 'd':
Andy Greende8f27a2013-01-12 09:17:42 +0800226 lws_set_log_level(atoi(optarg), NULL);
Andy Green46ef0cf2013-01-10 22:28:59 +0800227 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000228 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000229 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000230 break;
231 case 'p':
232 port = atoi(optarg);
233 break;
Andy Green43063dd2013-01-13 11:58:18 +0800234 case 'l':
235 longlived = 1;
236 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000237 case 'v':
238 ietf_version = atoi(optarg);
239 break;
Andy Green775884e2011-03-06 13:32:53 +0000240 case 'u':
241 deny_deflate = 1;
242 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100243 case 'n':
244 deny_mux = 1;
245 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000246 case 'h':
247 goto usage;
248 }
249 }
250
Andy Green1efb63c2011-02-06 17:42:06 +0000251 if (optind >= argc)
252 goto usage;
253
254 address = argv[optind];
255
Andy Green4739e5c2011-01-22 12:51:57 +0000256 /*
257 * create the websockets context. This tracks open connections and
258 * knows how to route any traffic and which protocol version to use,
259 * and if each connection is client or server side.
260 *
261 * For this client-only demo, we tell it to not listen on any port.
262 */
263
Andy Green1b265272013-02-09 14:01:09 +0800264 info.port = CONTEXT_PORT_NO_LISTEN;
265 info.protocols = protocols;
Andy Green3182ece2013-01-20 17:08:31 +0800266#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +0800267 info.extensions = libwebsocket_internal_extensions;
Andy Green3182ece2013-01-20 17:08:31 +0800268#endif
Andy Green1b265272013-02-09 14:01:09 +0800269 info.gid = -1;
270 info.uid = -1;
271
272 context = libwebsocket_create_context(&info);
Andy Green4739e5c2011-01-22 12:51:57 +0000273 if (context == NULL) {
274 fprintf(stderr, "Creating libwebsocket context failed\n");
275 return 1;
276 }
277
Andy Green4739e5c2011-01-22 12:51:57 +0000278 /* create a client websocket using dumb increment protocol */
279
Andy Green90c7cbc2011-01-27 06:26:52 +0000280 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000281 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000282 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000283
284 if (wsi_dumb == NULL) {
285 fprintf(stderr, "libwebsocket dumb connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800286 ret = 1;
287 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +0000288 }
289
Andy Green4739e5c2011-01-22 12:51:57 +0000290 fprintf(stderr, "Websocket connections opened\n");
291
292 /*
293 * sit there servicing the websocket context to handle incoming
294 * packets, and drawing random circles on the mirror protocol websocket
295 */
296
297 n = 0;
Andy Green4084af12011-05-24 22:06:17 +0100298 while (n >= 0 && !was_closed) {
Andy Green8e0c9842013-02-09 14:10:04 +0800299 n = libwebsocket_service(context, 10);
Andy Green4739e5c2011-01-22 12:51:57 +0000300
Andy Green3928f612012-07-20 12:58:38 +0800301 if (n < 0)
302 continue;
303
Andy Green8e0c9842013-02-09 14:10:04 +0800304 if (wsi_mirror)
305 continue;
306
307 /* create a client websocket using mirror protocol */
308
309 wsi_mirror = libwebsocket_client_connect(context,
310 address, port, use_ssl, "/",
311 argv[optind], argv[optind],
312 protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
313
Andy Green4084af12011-05-24 22:06:17 +0100314 if (wsi_mirror == NULL) {
Andy Green8e0c9842013-02-09 14:10:04 +0800315 fprintf(stderr, "libwebsocket "
316 "dumb connect failed\n");
Andy Green93f98d72013-02-11 14:05:02 +0800317 ret = 1;
318 goto bail;
Andy Green4084af12011-05-24 22:06:17 +0100319 }
Andy Green8e0c9842013-02-09 14:10:04 +0800320
321 mirror_lifetime = 10 + (random() & 1023);
322 /* useful to test single connection stability */
323 if (longlived)
324 mirror_lifetime += 50000;
325
326 fprintf(stderr, "opened mirror connection with "
327 "%d lifetime\n", mirror_lifetime);
328
329 /*
330 * mirror_lifetime is decremented each send, when it reaches
331 * zero the connection is closed in the send callback.
332 * When the close callback comes, wsi_mirror is set to NULL
333 * so a new connection will be opened
334 */
Andy Green4084af12011-05-24 22:06:17 +0100335 }
336
Andy Green93f98d72013-02-11 14:05:02 +0800337bail:
Andy Greenb3ae0a32011-02-14 20:25:43 +0000338 fprintf(stderr, "Exiting\n");
339
Andy Green6964bb52011-01-23 16:50:33 +0000340 libwebsocket_context_destroy(context);
341
Andy Green93f98d72013-02-11 14:05:02 +0800342 return ret;
Andy Green4739e5c2011-01-22 12:51:57 +0000343
344usage:
345 fprintf(stderr, "Usage: libwebsockets-test-client "
Andy Green46ef0cf2013-01-10 22:28:59 +0800346 "<server address> [--port=<p>] "
347 "[--ssl] [-k] [-v <ver>] "
Andy Green43063dd2013-01-13 11:58:18 +0800348 "[-d <log bitfield>] [-l]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000349 return 1;
350}