forked from arut/nginx-rtmp-module
-
Notifications
You must be signed in to change notification settings - Fork 9
/
ngx_live_relay_static.c
654 lines (509 loc) · 19.4 KB
/
ngx_live_relay_static.c
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
/*
* Copyright (C) AlexWoo(Wu Jie) [email protected]
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include "ngx_rtmp.h"
#include "ngx_live_relay.h"
#include "ngx_map.h"
#include "ngx_dynamic_conf.h"
#include "ngx_rtmp_dynamic.h"
static ngx_live_pull_pt next_pull;
static void *ngx_live_relay_static_create_main_conf(ngx_conf_t *cf);
static char *ngx_live_relay_static_init_main_conf(ngx_conf_t *cf, void *conf);
static void *ngx_live_relay_static_create_main_dconf(ngx_conf_t *cf);
static char *ngx_live_relay_static_init_main_dconf(ngx_conf_t *cf, void *conf);
static char *ngx_live_relay_pull(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
static ngx_int_t ngx_live_relay_static_postconfiguration(ngx_conf_t *cf);
typedef struct ngx_live_relay_static_relay_s ngx_live_relay_static_relay_t;
struct ngx_live_relay_static_relay_s {
ngx_map_node_t node;
ngx_live_relay_t *relay;
ngx_rtmp_session_t *session;
ngx_live_relay_static_relay_t *next;
};
typedef struct {
/* ngx_live_relay_static_relay_t */
ngx_map_t pulls[2];
/* 0 and 1 for index of conf */
unsigned used;
ngx_str_t pull_port;
ngx_live_relay_static_relay_t *free;
unsigned nalloc;
unsigned nfree;
} ngx_live_relay_static_main_conf_t;
typedef struct {
ngx_array_t pulls; /* ngx_live_relay_t */
} ngx_live_relay_static_main_dconf_t;
typedef struct {
ngx_live_relay_static_relay_t *relay;
} ngx_live_relay_static_ctx_t;
static ngx_command_t ngx_live_relay_static_dcommands[] = {
{ ngx_string("static_pull"),
NGX_RTMP_MAIN_CONF|NGX_CONF_1MORE,
ngx_live_relay_pull,
NGX_RTMP_MAIN_CONF_OFFSET,
0,
NULL },
ngx_null_command
};
static ngx_rtmp_dynamic_module_t ngx_live_relay_static_module_dctx = {
ngx_live_relay_static_create_main_dconf,/* create main configuration */
ngx_live_relay_static_init_main_dconf, /* init main configuration */
NULL, /* create server configuration */
NULL, /* merge server configuration */
NULL, /* create app configuration */
NULL /* merge app configuration */
};
static ngx_command_t ngx_live_relay_static_commands[] = {
{ ngx_string("static_pull_port"),
NGX_RTMP_MAIN_CONF|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_RTMP_MAIN_CONF_OFFSET,
offsetof(ngx_live_relay_static_main_conf_t, pull_port),
NULL },
ngx_null_command
};
static ngx_rtmp_module_t ngx_live_relay_static_module_ctx = {
NULL, /* preconfiguration */
ngx_live_relay_static_postconfiguration,/* postconfiguration */
ngx_live_relay_static_create_main_conf, /* create main configuration */
ngx_live_relay_static_init_main_conf, /* init main configuration */
NULL, /* create server configuration */
NULL, /* merge server configuration */
NULL, /* create app configuration */
NULL /* merge app configuration */
};
ngx_module_t ngx_live_relay_static_module = {
NGX_MODULE_V1,
&ngx_live_relay_static_module_ctx, /* module context */
ngx_live_relay_static_commands, /* module directives */
NGX_RTMP_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
(uintptr_t) &ngx_live_relay_static_module_dctx, /* module dynamic context */
(uintptr_t) ngx_live_relay_static_dcommands, /* module dynamic directives */
NGX_MODULE_V1_DYNAMIC_PADDING
};
static void
ngx_live_relay_static_handler(ngx_event_t *ev)
{
ngx_rtmp_session_t *s;
ngx_live_relay_app_conf_t *lracf;
ngx_live_relay_ctx_t *ctx;
ngx_live_relay_static_ctx_t *sctx;
ngx_live_relay_t *relay;
s = ev->data;
ctx = ngx_rtmp_get_module_ctx(s, ngx_live_relay_module);
if (!ctx->failed_delay && ev->timedout) { // connect timeout
ngx_log_error(NGX_LOG_ERR, s->log, NGX_ETIMEDOUT,
"static relay, relay timeout");
s->finalize_reason = NGX_LIVE_RELAY_TIMEOUT;
ngx_rtmp_finalize_session(s);
return;
}
lracf = ngx_rtmp_get_module_app_conf(s, ngx_live_relay_module);
ngx_add_timer(&ctx->reconnect, lracf->relay_reconnect);
sctx = ngx_rtmp_get_module_ctx(s, ngx_live_relay_static_module);
relay = sctx->relay->relay;
ngx_live_relay_create(s, relay);
}
static ngx_int_t
ngx_live_relay_static_relay(ngx_rtmp_session_t *s,
ngx_live_relay_static_relay_t *r)
{
ngx_rtmp_session_t *rs;
ngx_live_relay_ctx_t *ctx, *pctx;
ngx_live_relay_app_conf_t *lracf;
ngx_live_relay_static_main_conf_t *rsmcf;
ngx_live_relay_static_ctx_t *sctx;
ngx_live_relay_t *relay;
ngx_rtmp_addr_conf_t *addr_conf;
relay = r->relay;
rsmcf = ngx_rtmp_cycle_get_module_main_conf(ngx_cycle,
ngx_live_relay_static_module);
addr_conf = ngx_rtmp_find_related_addr_conf((ngx_cycle_t *) ngx_cycle,
&rsmcf->pull_port);
if (addr_conf == NULL) {
ngx_log_error(NGX_LOG_ERR, ngx_cycle->log, 0,
"relay static, find related add_conf for %V failed",
&rsmcf->pull_port);
return NGX_DECLINED;
}
rs = ngx_rtmp_create_static_session(relay, addr_conf,
&ngx_live_relay_static_module);
if (rs == NULL) {
ngx_log_error(NGX_LOG_ERR, ngx_cycle->log, 0,
"relay static, create relay session %V failed", &relay->stream);
return NGX_DECLINED;
}
r->session = rs;
rs->publishing = 1;
rs->live_stream = ngx_live_create_stream(&rs->domain, &rs->stream);
ngx_live_create_ctx(rs, 1);
sctx = ngx_pcalloc(rs->pool, sizeof(ngx_live_relay_static_ctx_t));
if (sctx == NULL) {
ngx_log_error(NGX_LOG_ERR, rs->log, 0,
"relay static, create static relay ctx failed");
ngx_rtmp_finalize_session(rs);
return NGX_OK;
}
ngx_rtmp_set_ctx(rs, sctx, ngx_live_relay_static_module);
sctx->relay = r;
ctx = ngx_rtmp_get_module_ctx(rs, ngx_live_relay_module);
ctx->reconnect.log = rs->log;
ctx->reconnect.data = rs;
ctx->reconnect.handler = ngx_live_relay_static_handler;
if (s == NULL) {
ngx_post_event(&ctx->reconnect, &ngx_posted_events);
return NGX_OK;
}
// reconnect
pctx = ngx_rtmp_get_module_ctx(s, ngx_live_relay_module);
if (pctx->successd) { // prev relay successd
ngx_post_event(&ctx->reconnect, &ngx_posted_events);
return NGX_OK;
}
ctx->idx = pctx->idx;
ctx->failed_reconnect = pctx->failed_reconnect;
if (ctx->idx < relay->urls.nelts) { // retry backup url immediately
ngx_post_event(&ctx->reconnect, &ngx_posted_events);
return NGX_OK;
}
lracf = ngx_rtmp_get_module_app_conf(rs, ngx_live_relay_module);
if (!pctx->reconnect.timer_set) { // prev relay timeout
ctx->failed_reconnect = ngx_min(pctx->failed_reconnect * 2,
lracf->relay_reconnect);
ngx_post_event(&ctx->reconnect, &ngx_posted_events);
return NGX_OK;
}
if (pctx->failed_reconnect) {
ctx->failed_reconnect = ngx_min(pctx->failed_reconnect * 2,
lracf->relay_reconnect);
} else {
ctx->failed_reconnect = lracf->failed_reconnect;
}
ctx->failed_delay = 1;
ngx_add_timer(&ctx->reconnect, ctx->failed_reconnect);
return NGX_OK;
}
// only be called when reconnect
static ngx_int_t
ngx_live_relay_static_pull(ngx_rtmp_session_t *s)
{
ngx_live_relay_static_ctx_t *ctx;
ngx_live_relay_ctx_t *rctx;
rctx = ngx_rtmp_get_module_ctx(s, ngx_live_relay_module);
if (rctx == NULL || rctx->tag != &ngx_live_relay_static_module) {
goto next;
}
ctx = ngx_rtmp_get_module_ctx(s, ngx_live_relay_static_module);
if (ngx_live_relay_static_relay(s, ctx->relay) == NGX_OK) {
return NGX_OK;
}
next:
return next_pull(s);
}
static ngx_live_relay_static_relay_t *
ngx_live_relay_get_static_relay(ngx_live_relay_static_main_conf_t *rsmcf)
{
ngx_live_relay_static_relay_t *r;
r = rsmcf->free;
if (r) {
rsmcf->free = r->next;
r->session = NULL;
r->next = NULL;
--rsmcf->nfree;
} else {
r = ngx_pcalloc(ngx_cycle->pool, sizeof(ngx_live_relay_static_relay_t));
if (r == NULL) {
return NULL;
}
++rsmcf->nalloc;
}
return r;
}
static void
ngx_live_relay_put_static_relay(ngx_live_relay_static_main_conf_t *rsmcf,
ngx_live_relay_static_relay_t *r)
{
r->next = rsmcf->free;
rsmcf->free = r;
++rsmcf->nfree;
}
static void *
ngx_live_relay_static_create_main_conf(ngx_conf_t *cf)
{
ngx_live_relay_static_main_conf_t *rsmcf;
rsmcf = ngx_pcalloc(cf->pool, sizeof(ngx_live_relay_static_main_conf_t));
if (rsmcf == NULL) {
return NULL;
}
rsmcf->used = 1;
ngx_map_init(&rsmcf->pulls[0], ngx_map_hash_str, ngx_cmp_str);
ngx_map_init(&rsmcf->pulls[1], ngx_map_hash_str, ngx_cmp_str);
return rsmcf;
}
static char *
ngx_live_relay_static_init_main_conf(ngx_conf_t *cf, void *conf)
{
ngx_live_relay_static_main_conf_t *rsmcf;
rsmcf = conf;
if (rsmcf->pull_port.len == 0) {
rsmcf->pull_port.data = (u_char *) "1935";
rsmcf->pull_port.len = sizeof("1935") - 1;
}
return NGX_CONF_OK;
}
static void *
ngx_live_relay_static_create_main_dconf(ngx_conf_t *cf)
{
ngx_live_relay_static_main_dconf_t *rsmdcf;
rsmdcf = ngx_pcalloc(cf->pool, sizeof(ngx_live_relay_static_main_dconf_t));
if (rsmdcf == NULL) {
return NULL;
}
if (ngx_array_init(&rsmdcf->pulls, cf->pool, 64, sizeof(ngx_live_relay_t))
!= NGX_OK)
{
return NULL;
}
return rsmdcf;
}
// merge all static pull into ngx_live_relay_static_main_conf_t;
static char *
ngx_live_relay_static_init_main_dconf(ngx_conf_t *cf, void *conf)
{
ngx_live_relay_static_main_conf_t *rsmcf;
ngx_live_relay_static_main_dconf_t *rsmdcf;
ngx_core_conf_t *ccf;
ngx_live_relay_t *relay;
ngx_live_relay_static_relay_t *srelay, *old, *sl, *sln, **sll;
ngx_live_relay_static_ctx_t *ctx;
ngx_live_relay_ctx_t *rctx;
ngx_map_node_t *node;
unsigned used;
char *rc;
ngx_uint_t i, hash;
rsmdcf = conf;
rsmcf = ngx_rtmp_cycle_get_module_main_conf(ngx_cycle,
ngx_live_relay_static_module);
ccf = (ngx_core_conf_t *) ngx_get_conf(ngx_cycle->conf_ctx,
ngx_core_module);
used = rsmcf->used? 0: 1;
sl = NULL;
sll = &sl;
relay = rsmdcf->pulls.elts;
for (i = 0; i < rsmdcf->pulls.nelts; ++i, ++relay) {
// should static pull in current process?
if (ngx_process == NGX_PROCESS_WORKER) {
hash = ngx_hash_key_lc(relay->stream.data, relay->stream.len);
if (hash % ccf->worker_processes != ngx_worker) {
continue;
}
}
// check static pull duplicate
node = ngx_map_find(&rsmcf->pulls[used], (intptr_t) &relay->stream);
if (node) {
rc = "duplicate static pull";
goto error;
}
srelay = ngx_live_relay_get_static_relay(rsmcf);
if (srelay == NULL) {
rc = "get static relay failed";
goto error;
}
srelay->relay = relay;
srelay->node.raw_key = (intptr_t) &relay->stream;
ngx_map_insert(&rsmcf->pulls[used], &srelay->node, 0);
// check static pull is exist
node = ngx_map_find(&rsmcf->pulls[rsmcf->used],
(intptr_t) &relay->stream);
if (node) {
old = (ngx_live_relay_static_relay_t *) node;
srelay->session = old->session;
// link swap static pull
*sll = old;
sll = &(*sll)->next;
}
}
// delete swap static pull from old
while (sl) {
sln = sl;
sl = sl->next;
ngx_map_delete(&rsmcf->pulls[rsmcf->used],
(intptr_t) &sln->relay->stream);
ngx_live_relay_put_static_relay(rsmcf, sln);
}
// stop deleted static pull
node = ngx_map_begin(&rsmcf->pulls[rsmcf->used]);
while (node) {
srelay = (ngx_live_relay_static_relay_t *) node;
node = ngx_map_next(node);
ngx_live_relay_put_static_relay(rsmcf, srelay);
rctx = ngx_rtmp_get_module_ctx(srelay->session, ngx_live_relay_module);
rctx->giveup = 1;
srelay->session->finalize_reason = NGX_LIVE_NORMAL_CLOSE;
ngx_rtmp_finalize_session(srelay->session);
ngx_map_delete(&rsmcf->pulls[rsmcf->used],
(intptr_t) &srelay->relay->stream);
}
// new static relay
node = ngx_map_begin(&rsmcf->pulls[used]);
for (; node; node = ngx_map_next(node)) {
srelay = (ngx_live_relay_static_relay_t *) node;
if (srelay->session == NULL) {
ngx_live_relay_static_relay(NULL, srelay);
} else {
ctx = ngx_rtmp_get_module_ctx(srelay->session,
ngx_live_relay_static_module);
ctx->relay = srelay;
}
}
rsmcf->used = used;
return NGX_CONF_OK;
error:
// recycle static relay resource
node = ngx_map_begin(&rsmcf->pulls[used]);
while (node) {
srelay = (ngx_live_relay_static_relay_t *) node;
node = ngx_map_next(node);
ngx_live_relay_put_static_relay(rsmcf, srelay);
ngx_map_delete(&rsmcf->pulls[used],
(intptr_t) &srelay->relay->stream);
}
return rc;
}
static char *
ngx_live_relay_pull(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
ngx_live_relay_static_main_dconf_t *rsmdcf;
ngx_live_relay_t *relay;
ngx_live_relay_url_t *url;
ngx_str_t *value, n, v;
ngx_uint_t i;
u_char *p;
rsmdcf = conf;
relay = ngx_array_push(&rsmdcf->pulls);
if (relay == NULL) {
return NGX_CONF_ERROR;
}
ngx_memzero(relay, sizeof(ngx_live_relay_t));
relay->tag = &ngx_live_relay_static_module;
if (ngx_array_init(&relay->urls, cf->pool, 8, sizeof(ngx_live_relay_url_t))
!= NGX_OK)
{
return NGX_CONF_ERROR;
}
value = cf->args->elts;
++value;
for (i = 1; i < cf->args->nelts; ++i, ++value) {
if (ngx_strncasecmp(value->data, (u_char *) "rtmp://", 7) == 0
|| ngx_strncasecmp(value->data, (u_char *) "http://", 7) == 0)
{
url = ngx_array_push(&relay->urls);
if (url == NULL) {
return NGX_CONF_ERROR;
}
ngx_memzero(url, sizeof(ngx_live_relay_url_t));
if (value->data[0] == 'h') {
url->relay_type = NGX_LIVE_RELAY_HTTPFLV;
} else {
url->relay_type = NGX_LIVE_RELAY_RTMP;
}
if (ngx_parse_request_url(&url->url, value) != NGX_OK) {
return NGX_CONF_ERROR;
}
url->port = ngx_request_port(&url->url.scheme, &url->url.port);
if (url->port == 0) {
return "invalid port";
}
continue;
}
p = ngx_strlchr(value->data, value->data + value->len, '=');
if (p == NULL) {
return "unsupported parameter format";
} else {
n.data = value->data;
n.len = p - value->data;
v.data = p + 1;
v.len = value->data + value->len - v.data;
}
#define NGX_LIVE_RELAY_STR_PAR(name, var) \
if (n.len == sizeof(name) - 1 \
&& ngx_strncasecmp(n.data, (u_char *) name, n.len) == 0) \
{ \
relay->var = v; \
continue; \
}
NGX_LIVE_RELAY_STR_PAR("domain", domain);
NGX_LIVE_RELAY_STR_PAR("app", app);
NGX_LIVE_RELAY_STR_PAR("name", name);
NGX_LIVE_RELAY_STR_PAR("pargs", pargs);
NGX_LIVE_RELAY_STR_PAR("referer", referer);
NGX_LIVE_RELAY_STR_PAR("user_agent", user_agent);
#undef NGX_LIVE_RELAY_STR_PAR
return "unsupported parameter";
}
if (relay->domain.len == 0) {
return "domain not configured";
}
if (relay->app.len == 0) {
return "app not configured";
}
if (relay->name.len == 0) {
return "name not configured";
}
// domain/app/name
relay->stream.len = relay->domain.len + 1 + relay->app.len + 1
+ relay->name.len;
relay->stream.data = ngx_pcalloc(cf->pool, relay->stream.len);
if (relay->stream.data == NULL) {
return NGX_CONF_ERROR;
}
ngx_snprintf(relay->stream.data, relay->stream.len, "%V/%V/%V",
&relay->domain, &relay->app, &relay->name);
return NGX_CONF_OK;
}
static ngx_int_t
ngx_live_relay_static_postconfiguration(ngx_conf_t *cf)
{
next_pull = ngx_live_pull;
ngx_live_pull = ngx_live_relay_static_pull;
return NGX_OK;
}
ngx_chain_t *
ngx_live_relay_static_state(ngx_http_request_t *r)
{
ngx_live_relay_static_main_conf_t *rsmcf;
ngx_chain_t *cl;
ngx_buf_t *b;
size_t len;
rsmcf = ngx_rtmp_cycle_get_module_main_conf(ngx_cycle,
ngx_live_relay_static_module);
len = sizeof("##########rtmp live relay static##########\n") - 1
+ sizeof("relay_static alloc frame: \n") - 1 + NGX_OFF_T_LEN
+ sizeof("relay_static free frame: \n") - 1 + NGX_OFF_T_LEN;
cl = ngx_alloc_chain_link(r->pool);
if (cl == NULL) {
return NULL;
}
cl->next = NULL;
b = ngx_create_temp_buf(r->pool, len);
if (b == NULL) {
return NULL;
}
cl->buf = b;
b->last = ngx_snprintf(b->last, len,
"##########rtmp live relay static##########\n"
"relay_static alloc frame: %ui\n"
"relay_static free frame: %ui\n",
rsmcf->nalloc, rsmcf->nfree);
return cl;
}