This repository was archived by the owner on Feb 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvtc_client.c
More file actions
416 lines (349 loc) · 8.56 KB
/
vtc_client.c
File metadata and controls
416 lines (349 loc) · 8.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
/*-
* Copyright (c) 2008-2011 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
*
* SPDX-License-Identifier: BSD-2-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "config.h"
#include <sys/socket.h>
#include <sys/un.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <poll.h>
#include <unistd.h>
#include "vtc.h"
#include "vsa.h"
#include "vss.h"
#include "vtcp.h"
#include "vus.h"
struct client {
unsigned magic;
#define CLIENT_MAGIC 0x6242397c
char *name;
struct vtclog *vl;
VTAILQ_ENTRY(client) list;
struct vtc_sess *vsp;
char *spec;
char connect[256];
char *addr;
char *proxy_spec;
int proxy_version;
unsigned running;
pthread_t tp;
};
static VTAILQ_HEAD(, client) clients = VTAILQ_HEAD_INITIALIZER(clients);
/**********************************************************************
* Send the proxy header
*/
static void
client_proxy(struct vtclog *vl, int fd, int version, const char *speca)
{
const struct suckaddr *sac, *sas;
char *spec, *save, *p;
struct vsb *tlv;
spec = strdup(speca);
AN(spec);
save = NULL;
p = strtok_r(spec, " ", &save);
AN(p);
sac = VSS_ResolveOne(NULL, p, NULL, 0, SOCK_STREAM, AI_PASSIVE);
if (sac == NULL)
vtc_fatal(vl, "Could not resolve client address");
p = strtok_r(NULL, " ", &save);
AN(p);
sas = VSS_ResolveOne(NULL, p, NULL, 0, SOCK_STREAM, AI_PASSIVE);
if (sas == NULL)
vtc_fatal(vl, "Could not resolve client address");
tlv = VSB_new_auto();
while ((p = strtok_r(NULL, " ", &save)) != NULL)
vtc_proxy_tlv(vl, tlv, p);
free(spec);
AZ(VSB_finish(tlv));
if (vtc_send_proxy(fd, version, sac, sas, tlv))
vtc_fatal(vl, "Write failed: %s", strerror(errno));
VSA_free(&sac);
VSA_free(&sas);
}
/**********************************************************************
* Socket connect.
*/
static int
client_tcp_connect(struct vtclog *vl, const char *addr, double tmo,
const char **errp)
{
int fd;
char mabuf[VTCP_ADDRBUFSIZE], mpbuf[VTCP_PORTBUFSIZE];
AN(addr);
AN(errp);
fd = VTCP_open(addr, NULL, tmo, errp);
if (fd < 0)
return (fd);
VTCP_myname(fd, mabuf, sizeof mabuf, mpbuf, sizeof mpbuf);
vtc_log(vl, 3, "connected fd %d from %s %s to %s", fd, mabuf, mpbuf,
addr);
return (fd);
}
/* cf. VTCP_Open() */
static int v_matchproto_(vus_resolved_f)
uds_open(void *priv, const struct sockaddr_un *uds)
{
double *p;
int s, i, tmo;
struct pollfd fds[1];
socklen_t sl;
sl = VUS_socklen(uds);
AN(priv);
AN(uds);
p = priv;
assert(*p > 0.);
tmo = (int)(*p * 1e3);
s = socket(uds->sun_family, SOCK_STREAM, 0);
if (s < 0)
return (s);
VTCP_nonblocking(s);
i = connect(s, (const void*)uds, sl);
if (i == 0)
return (s);
if (errno != EINPROGRESS) {
closefd(&s);
return (-1);
}
fds[0].fd = s;
fds[0].events = POLLWRNORM;
fds[0].revents = 0;
i = poll(fds, 1, tmo);
if (i == 0) {
closefd(&s);
errno = ETIMEDOUT;
return (-1);
}
return (VTCP_connected(s));
}
static int
client_uds_connect(struct vtclog *vl, const char *path, double tmo,
const char **errp)
{
int fd;
assert(tmo >= 0);
errno = 0;
fd = VUS_resolver(path, uds_open, &tmo, errp);
if (fd < 0) {
*errp = strerror(errno);
return (fd);
}
vtc_log(vl, 3, "connected fd %d to %s", fd, path);
return (fd);
}
static int
client_connect(struct vtclog *vl, struct client *c)
{
const char *err;
int fd;
vtc_log(vl, 3, "Connect to %s", c->addr);
if (VUS_is(c->addr))
fd = client_uds_connect(vl, c->addr, 10., &err);
else
fd = client_tcp_connect(vl, c->addr, 10., &err);
if (fd < 0)
vtc_fatal(c->vl, "Failed to open %s: %s",
c->addr, err);
/* VTCP_blocking does its own checks, trust it */
VTCP_blocking(fd);
if (c->proxy_spec != NULL)
client_proxy(vl, fd, c->proxy_version, c->proxy_spec);
return (fd);
}
/**********************************************************************
* Client thread
*/
static int
client_conn(void *priv, struct vtclog *vl)
{
struct client *c;
CAST_OBJ_NOTNULL(c, priv, CLIENT_MAGIC);
return (client_connect(vl, c));
}
static void
client_disc(void *priv, struct vtclog *vl, int *fdp)
{
(void)priv;
vtc_log(vl, 3, "closing fd %d", *fdp);
VTCP_close(fdp);
}
/**********************************************************************
* Allocate and initialize a client
*/
static struct client *
client_new(const char *name)
{
struct client *c;
ALLOC_OBJ(c, CLIENT_MAGIC);
AN(c);
REPLACE(c->name, name);
c->vl = vtc_logopen("%s", name);
AN(c->vl);
c->vsp = Sess_New(c->vl, name);
AN(c->vsp);
bprintf(c->connect, "%s", "${v1_sock}");
VTAILQ_INSERT_TAIL(&clients, c, list);
return (c);
}
/**********************************************************************
* Clean up client
*/
static void
client_delete(struct client *c)
{
CHECK_OBJ_NOTNULL(c, CLIENT_MAGIC);
Sess_Destroy(&c->vsp);
vtc_logclose(c->vl);
free(c->spec);
free(c->name);
free(c->addr);
free(c->proxy_spec);
/* XXX: MEMLEAK (?)*/
FREE_OBJ(c);
}
/**********************************************************************
* Start the client thread
*/
static void
client_start(struct client *c)
{
struct vsb *vsb;
CHECK_OBJ_NOTNULL(c, CLIENT_MAGIC);
vtc_log(c->vl, 2, "Starting client");
c->running = 1;
vsb = macro_expand(c->vl, c->connect);
AN(vsb);
REPLACE(c->addr, VSB_data(vsb));
VSB_destroy(&vsb);
c->tp = Sess_Start_Thread(
c,
c->vsp,
client_conn,
client_disc,
c->addr,
NULL,
c->spec
);
}
/**********************************************************************
* Wait for client thread to stop
*/
static void
client_wait(struct client *c)
{
void *res;
CHECK_OBJ_NOTNULL(c, CLIENT_MAGIC);
vtc_log(c->vl, 2, "Waiting for client");
PTOK(pthread_join(c->tp, &res));
if (res != NULL)
vtc_fatal(c->vl, "Client returned \"%s\"", (char *)res);
c->tp = 0;
c->running = 0;
}
/**********************************************************************
* Run the client thread
*/
static void
client_run(struct client *c)
{
client_start(c);
client_wait(c);
}
/**********************************************************************
* Client command dispatch
*/
void
cmd_client(CMD_ARGS)
{
struct client *c, *c2;
(void)priv;
if (av == NULL) {
/* Reset and free */
VTAILQ_FOREACH_SAFE(c, &clients, list, c2) {
VTAILQ_REMOVE(&clients, c, list);
if (c->tp != 0)
client_wait(c);
client_delete(c);
}
return;
}
AZ(strcmp(av[0], "client"));
av++;
VTC_CHECK_NAME(vl, av[0], "Client", 'c');
VTAILQ_FOREACH(c, &clients, list)
if (!strcmp(c->name, av[0]))
break;
if (c == NULL)
c = client_new(av[0]);
av++;
for (; *av != NULL; av++) {
if (vtc_error)
break;
if (!strcmp(*av, "-wait")) {
client_wait(c);
continue;
}
/* Don't muck about with a running client */
if (c->running)
client_wait(c);
AZ(c->running);
if (Sess_GetOpt(c->vsp, &av))
continue;
if (!strcmp(*av, "-connect")) {
bprintf(c->connect, "%s", av[1]);
av++;
continue;
}
if (!strcmp(*av, "-proxy1")) {
REPLACE(c->proxy_spec, av[1]);
c->proxy_version = 1;
av++;
continue;
}
if (!strcmp(*av, "-proxy2")) {
REPLACE(c->proxy_spec, av[1]);
c->proxy_version = 2;
av++;
continue;
}
if (!strcmp(*av, "-start")) {
client_start(c);
continue;
}
if (!strcmp(*av, "-run")) {
client_run(c);
continue;
}
if (**av == '-')
vtc_fatal(c->vl, "Unknown client argument: %s", *av);
REPLACE(c->spec, *av);
}
}