zhangmeng
2024-04-22 16935f4aebffdd1b6580b844391a0aa0f4f3012b
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
//
// Copyright 2021 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
// Copyright 2018 Devolutions <info@devolutions.net>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt).  A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
 
#include "core/nng_impl.h"
#include "sockimpl.h"
 
#include <stdio.h>
#include <string.h>
 
// Functionality related to dialers.
static void dialer_connect_start(nni_dialer *);
static void dialer_connect_cb(void *);
static void dialer_timer_cb(void *);
 
static nni_id_map dialers;
static nni_mtx    dialers_lk;
 
int
nni_dialer_sys_init(void)
{
    nni_id_map_init(&dialers, 1, 0x7fffffff, false);
    nni_mtx_init(&dialers_lk);
 
    return (0);
}
 
void
nni_dialer_sys_fini(void)
{
    nni_reap_drain();
    nni_mtx_fini(&dialers_lk);
    nni_id_map_fini(&dialers);
}
 
uint32_t
nni_dialer_id(nni_dialer *d)
{
    return (d->d_id);
}
 
void
nni_dialer_destroy(nni_dialer *d)
{
    nni_aio_stop(&d->d_con_aio);
    nni_aio_stop(&d->d_tmo_aio);
 
    nni_aio_fini(&d->d_con_aio);
    nni_aio_fini(&d->d_tmo_aio);
 
    if (d->d_data != NULL) {
        d->d_ops.d_fini(d->d_data);
    }
    nni_mtx_fini(&d->d_mtx);
    nni_url_free(d->d_url);
    NNI_FREE_STRUCT(d);
}
 
#if NNG_ENABLE_STATS
static void
dialer_stat_init(nni_dialer *d, nni_stat_item *item, const nni_stat_info *info)
{
    nni_stat_init(item, info);
    nni_stat_add(&d->st_root, item);
}
 
static void
dialer_stats_init(nni_dialer *d)
{
    static const nni_stat_info root_info = {
        .si_name = "dialer",
        .si_desc = "dialer statistics",
        .si_type = NNG_STAT_SCOPE,
    };
    static const nni_stat_info id_info = {
        .si_name = "id",
        .si_desc = "dialer id",
        .si_type = NNG_STAT_ID,
    };
    static const nni_stat_info socket_info = {
        .si_name = "socket",
        .si_desc = "socket for dialer",
        .si_type = NNG_STAT_ID,
    };
    static const nni_stat_info url_info = {
        .si_name  = "url",
        .si_desc  = "dialer url",
        .si_type  = NNG_STAT_STRING,
        .si_alloc = true,
    };
    static const nni_stat_info pipes_info = {
        .si_name   = "pipes",
        .si_desc   = "open pipes",
        .si_type   = NNG_STAT_LEVEL,
        .si_atomic = true,
    };
    static const nni_stat_info connect_info = {
        .si_name   = "connect",
        .si_desc   = "connections established",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info refused_info = {
        .si_name   = "refused",
        .si_desc   = "connections refused",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info disconnect_info = {
        .si_name   = "disconnect",
        .si_desc   = "remote disconnects",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info canceled_info = {
        .si_name   = "canceled",
        .si_desc   = "canceled connections",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info other_info = {
        .si_name   = "other",
        .si_desc   = "other errors",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info timeout_info = {
        .si_name   = "timeout",
        .si_desc   = "timeout errors",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info proto_info = {
        .si_name   = "proto",
        .si_desc   = "protocol errors",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info auth_info = {
        .si_name   = "auth",
        .si_desc   = "auth errors",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info oom_info = {
        .si_name   = "oom",
        .si_desc   = "allocation failures",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
    static const nni_stat_info reject_info = {
        .si_name   = "reject",
        .si_desc   = "rejected pipes",
        .si_type   = NNG_STAT_COUNTER,
        .si_atomic = true,
    };
 
    nni_stat_init(&d->st_root, &root_info);
 
    dialer_stat_init(d, &d->st_id, &id_info);
    dialer_stat_init(d, &d->st_sock, &socket_info);
    dialer_stat_init(d, &d->st_url, &url_info);
    dialer_stat_init(d, &d->st_pipes, &pipes_info);
    dialer_stat_init(d, &d->st_connect, &connect_info);
    dialer_stat_init(d, &d->st_refused, &refused_info);
    dialer_stat_init(d, &d->st_disconnect, &disconnect_info);
    dialer_stat_init(d, &d->st_canceled, &canceled_info);
    dialer_stat_init(d, &d->st_other, &other_info);
    dialer_stat_init(d, &d->st_timeout, &timeout_info);
    dialer_stat_init(d, &d->st_proto, &proto_info);
    dialer_stat_init(d, &d->st_auth, &auth_info);
    dialer_stat_init(d, &d->st_oom, &oom_info);
    dialer_stat_init(d, &d->st_reject, &reject_info);
 
    nni_stat_set_id(&d->st_root, (int) d->d_id);
    nni_stat_set_id(&d->st_id, (int) d->d_id);
    nni_stat_set_id(&d->st_sock, (int) nni_sock_id(d->d_sock));
    nni_stat_set_string(&d->st_url, d->d_url->u_rawurl);
    nni_stat_register(&d->st_root);
}
#endif // NNG_ENABLE_STATS
 
void
nni_dialer_bump_error(nni_dialer *d, int err)
{
#ifdef NNG_ENABLE_STATS
    switch (err) {
    case NNG_ECONNABORTED:
    case NNG_ECONNRESET:
        nni_stat_inc(&d->st_disconnect, 1);
        break;
    case NNG_ECONNREFUSED:
        nni_stat_inc(&d->st_refused, 1);
        break;
    case NNG_ECANCELED:
        nni_stat_inc(&d->st_canceled, 1);
        break;
    case NNG_ETIMEDOUT:
        nni_stat_inc(&d->st_timeout, 1);
        break;
    case NNG_EPROTO:
        nni_stat_inc(&d->st_proto, 1);
        break;
    case NNG_EPEERAUTH:
    case NNG_ECRYPTO:
        nni_stat_inc(&d->st_auth, 1);
        break;
    case NNG_ENOMEM:
        nni_stat_inc(&d->st_oom, 1);
        break;
    default:
        nni_stat_inc(&d->st_other, 1);
        break;
    }
#else
    NNI_ARG_UNUSED(d);
    NNI_ARG_UNUSED(err);
#endif
}
 
int
nni_dialer_create(nni_dialer **dp, nni_sock *s, const char *urlstr)
{
    nni_sp_tran *  tran;
    nni_dialer *d;
    int         rv;
    nni_url *   url;
 
    if ((rv = nni_url_parse(&url, urlstr)) != 0) {
        return (rv);
    }
    if (((tran = nni_sp_tran_find(url)) == NULL) ||
        (tran->tran_dialer == NULL)) {
        nni_url_free(url);
        return (NNG_ENOTSUP);
    }
 
    if ((d = NNI_ALLOC_STRUCT(d)) == NULL) {
        nni_url_free(url);
        return (NNG_ENOMEM);
    }
    d->d_url     = url;
    d->d_closed  = false;
    d->d_closing = false;
    d->d_data    = NULL;
    d->d_ref     = 1;
    d->d_sock    = s;
    d->d_tran    = tran;
    nni_atomic_flag_reset(&d->d_started);
 
    // Make a copy of the endpoint operations.  This allows us to
    // modify them (to override NULLs for example), and avoids an extra
    // dereference on hot paths.
    d->d_ops = *tran->tran_dialer;
 
    NNI_LIST_NODE_INIT(&d->d_node);
    NNI_LIST_INIT(&d->d_pipes, nni_pipe, p_ep_node);
 
    nni_mtx_init(&d->d_mtx);
 
    nni_aio_init(&d->d_con_aio, dialer_connect_cb, d);
    nni_aio_init(&d->d_tmo_aio, dialer_timer_cb, d);
 
    nni_mtx_lock(&dialers_lk);
    rv = nni_id_alloc(&dialers, &d->d_id, d);
    nni_mtx_unlock(&dialers_lk);
 
#ifdef NNG_ENABLE_STATS
    dialer_stats_init(d);
#endif
 
    if ((rv != 0) || ((rv = d->d_ops.d_init(&d->d_data, url, d)) != 0) ||
        ((rv = nni_sock_add_dialer(s, d)) != 0)) {
        nni_mtx_lock(&dialers_lk);
        nni_id_remove(&dialers, d->d_id);
        nni_mtx_unlock(&dialers_lk);
#ifdef NNG_ENABLE_STATS
        nni_stat_unregister(&d->st_root);
#endif
        nni_dialer_destroy(d);
        return (rv);
    }
 
    *dp = d;
    return (0);
}
 
int
nni_dialer_find(nni_dialer **dp, uint32_t id)
{
    int         rv;
    nni_dialer *d;
 
    if ((rv = nni_init()) != 0) {
        return (rv);
    }
 
    nni_mtx_lock(&dialers_lk);
    if ((d = nni_id_get(&dialers, id)) != NULL) {
        d->d_ref++;
        *dp = d;
    }
    nni_mtx_unlock(&dialers_lk);
    return (d == NULL ? NNG_ENOENT : 0);
}
 
int
nni_dialer_hold(nni_dialer *d)
{
    int rv;
    nni_mtx_lock(&dialers_lk);
    if (d->d_closed) {
        rv = NNG_ECLOSED;
    } else {
        d->d_ref++;
        rv = 0;
    }
    nni_mtx_unlock(&dialers_lk);
    return (rv);
}
 
void
nni_dialer_rele(nni_dialer *d)
{
    bool reap;
 
    nni_mtx_lock(&dialers_lk);
    d->d_ref--;
    reap = ((d->d_ref == 0) && (d->d_closed));
    nni_mtx_unlock(&dialers_lk);
 
    if (reap) {
        nni_dialer_reap(d);
    }
}
 
void
nni_dialer_close_rele(nni_dialer *d)
{
    nni_mtx_lock(&dialers_lk);
    if (d->d_closed) {
        nni_mtx_unlock(&dialers_lk);
        nni_dialer_rele(d);
        return;
    }
    d->d_closed = true;
    nni_id_remove(&dialers, d->d_id);
    nni_mtx_unlock(&dialers_lk);
 
    nni_dialer_rele(d);
}
 
void
nni_dialer_close(nni_dialer *d)
{
    nni_mtx_lock(&dialers_lk);
    if (d->d_closed) {
        nni_mtx_unlock(&dialers_lk);
        nni_dialer_rele(d);
        return;
    }
    d->d_closed = true;
    nni_id_remove(&dialers, d->d_id);
    nni_mtx_unlock(&dialers_lk);
 
    nni_dialer_shutdown(d);
 
    nni_dialer_rele(d);
}
 
static void
dialer_timer_cb(void *arg)
{
    nni_dialer *d = arg;
 
    if (nni_aio_result(&d->d_tmo_aio) == 0) {
        dialer_connect_start(d);
    }
}
 
static void
dialer_connect_cb(void *arg)
{
    nni_dialer *d   = arg;
    nni_aio *   aio = &d->d_con_aio;
    nni_aio *   user_aio;
    int         rv;
 
    nni_mtx_lock(&d->d_mtx);
    user_aio      = d->d_user_aio;
    d->d_user_aio = NULL;
    nni_mtx_unlock(&d->d_mtx);
 
    switch ((rv = nni_aio_result(aio))) {
    case 0:
#ifdef NNG_ENABLE_STATS
        nni_stat_inc(&d->st_connect, 1);
#endif
        nni_dialer_add_pipe(d, nni_aio_get_output(aio, 0));
        break;
    case NNG_ECLOSED:   // No further action.
    case NNG_ECANCELED: // No further action.
        nni_dialer_bump_error(d, rv);
        break;
    case NNG_ECONNREFUSED:
    case NNG_ETIMEDOUT:
    default:
        nni_dialer_bump_error(d, rv);
        if (user_aio == NULL) {
            nni_dialer_timer_start(d);
        } else {
            nni_atomic_flag_reset(&d->d_started);
        }
        break;
    }
    if (user_aio != NULL) {
        nni_aio_finish(user_aio, rv, 0);
    }
}
 
static void
dialer_connect_start(nni_dialer *d)
{
    d->d_ops.d_connect(d->d_data, &d->d_con_aio);
}
 
int
nni_dialer_start(nni_dialer *d, unsigned flags)
{
    int      rv = 0;
    nni_aio *aio;
 
    if (nni_atomic_flag_test_and_set(&d->d_started)) {
        return (NNG_ESTATE);
    }
 
    if ((flags & NNG_FLAG_NONBLOCK) != 0) {
        aio = NULL;
    } else {
        if ((rv = nni_aio_alloc(&aio, NULL, NULL)) != 0) {
            nni_atomic_flag_reset(&d->d_started);
            return (rv);
        }
        nni_aio_begin(aio);
    }
 
    nni_mtx_lock(&d->d_mtx);
    d->d_user_aio = aio;
    dialer_connect_start(d);
    nni_mtx_unlock(&d->d_mtx);
 
    if (aio != NULL) {
        nni_aio_wait(aio);
        rv = nni_aio_result(aio);
        nni_aio_free(aio);
    }
 
    return (rv);
}
 
nni_sock *
nni_dialer_sock(nni_dialer *d)
{
    return (d->d_sock);
}
 
int
nni_dialer_setopt(
    nni_dialer *d, const char *name, const void *val, size_t sz, nni_type t)
{
    nni_option *o;
 
    if (strcmp(name, NNG_OPT_URL) == 0) {
        return (NNG_EREADONLY);
    }
    if (strcmp(name, NNG_OPT_RECONNMAXT) == 0) {
        int rv;
        nni_mtx_lock(&d->d_mtx);
        rv = nni_copyin_ms(&d->d_maxrtime, val, sz, t);
        nni_mtx_unlock(&d->d_mtx);
        return (rv);
    }
    if (strcmp(name, NNG_OPT_RECONNMINT) == 0) {
        int rv;
        nni_mtx_lock(&d->d_mtx);
        rv = nni_copyin_ms(&d->d_inirtime, val, sz, t);
        if (rv == 0) {
            d->d_currtime = d->d_inirtime;
        }
        nni_mtx_unlock(&d->d_mtx);
        return (rv);
    }
 
    if (d->d_ops.d_setopt != NULL) {
        int rv = d->d_ops.d_setopt(d->d_data, name, val, sz, t);
        if (rv != NNG_ENOTSUP) {
            return (rv);
        }
    }
 
    for (o = d->d_ops.d_options; o && o->o_name; o++) {
        if (strcmp(o->o_name, name) != 0) {
            continue;
        }
        if (o->o_set == NULL) {
            return (NNG_EREADONLY);
        }
 
        return (o->o_set(d->d_data, val, sz, t));
    }
 
    return (NNG_ENOTSUP);
}
 
int
nni_dialer_getopt(
    nni_dialer *d, const char *name, void *valp, size_t *szp, nni_type t)
{
    nni_option *o;
 
    if (strcmp(name, NNG_OPT_RECONNMAXT) == 0) {
        int rv;
        nni_mtx_lock(&d->d_mtx);
        rv = nni_copyout_ms(d->d_maxrtime, valp, szp, t);
        nni_mtx_unlock(&d->d_mtx);
        return (rv);
    }
    if (strcmp(name, NNG_OPT_RECONNMINT) == 0) {
        int rv;
        nni_mtx_lock(&d->d_mtx);
        rv = nni_copyout_ms(d->d_inirtime, valp, szp, t);
        nni_mtx_unlock(&d->d_mtx);
        return (rv);
    }
 
    if (d->d_ops.d_getopt != NULL) {
        int rv = d->d_ops.d_getopt(d->d_data, name, valp, szp, t);
        if (rv != NNG_ENOTSUP) {
            return (rv);
        }
    }
    for (o = d->d_ops.d_options; o && o->o_name; o++) {
        if (strcmp(o->o_name, name) != 0) {
            continue;
        }
        if (o->o_get == NULL) {
            return (NNG_EWRITEONLY);
        }
        return (o->o_get(d->d_data, valp, szp, t));
    }
 
    // We provide a fallback on the URL, but let the implementation
    // override.  This allows the URL to be created with wildcards,
    // that are resolved later.
    if (strcmp(name, NNG_OPT_URL) == 0) {
        return (nni_copyout_str(d->d_url->u_rawurl, valp, szp, t));
    }
 
    return (nni_sock_getopt(d->d_sock, name, valp, szp, t));
}
 
void
nni_dialer_add_stat(nni_dialer *d, nni_stat_item *item)
{
#ifdef NNG_ENABLE_STATS
    nni_stat_add(&d->st_root, item);
#else
    NNI_ARG_UNUSED(d);
    NNI_ARG_UNUSED(item);
#endif
}