@@ -52,6 +52,10 @@ static void destructor(void *arg)
52
52
{
53
53
struct allocation * al = arg ;
54
54
55
+ mtx_lock (& turndp ()-> mutex );
56
+ list_unlink (& al -> le_map );
57
+ mtx_unlock (& turndp ()-> mutex );
58
+
55
59
hash_flush (al -> perms );
56
60
mem_deref (al -> perms );
57
61
mem_deref (al -> chans );
@@ -60,8 +64,11 @@ static void destructor(void *arg)
60
64
tmr_cancel (& al -> tmr );
61
65
mem_deref (al -> username );
62
66
mem_deref (al -> cli_sock );
67
+
68
+ /* @TODO check fd deref cleanup on turn worker thread */
63
69
mem_deref (al -> rel_us );
64
70
mem_deref (al -> rsv_us );
71
+
65
72
turndp ()-> allocc_cur -- ;
66
73
}
67
74
@@ -90,13 +97,17 @@ static void udp_recv(const struct sa *src, struct mbuf *mb, void *arg)
90
97
}
91
98
}
92
99
100
+ mtx_lock (& al -> mutex );
93
101
perm = perm_find (al -> perms , src );
102
+ mtx_unlock (& al -> mutex );
94
103
if (!perm ) {
95
104
++ al -> dropc_rx ;
96
105
return ;
97
106
}
98
107
108
+ mtx_lock (& al -> mutex );
99
109
chan = chan_peer_find (al -> chans , src );
110
+ mtx_unlock (& al -> mutex );
100
111
if (chan ) {
101
112
uint16_t len = mbuf_get_left (mb );
102
113
size_t start ;
@@ -185,6 +196,14 @@ static int relay_listen(const struct sa *rel_addr, struct allocation *al,
185
196
break ;
186
197
}
187
198
199
+ /* Release fd for new thread and re_map*/
200
+ udp_thread_detach (al -> rel_us );
201
+ udp_thread_detach (al -> rsv_us );
202
+
203
+ mtx_lock (& turndp ()-> mutex );
204
+ list_append (& turndp ()-> re_map , & al -> le_map , al );
205
+ mtx_unlock (& turndp ()-> mutex );
206
+
188
207
return (i == PORT_TRY_MAX ) ? EADDRINUSE : err ;
189
208
}
190
209
@@ -247,7 +266,7 @@ void allocate_request(struct turnd *turnd, struct allocation *alx,
247
266
goto reply ;
248
267
}
249
268
250
- restund_debug ("turn: allocation already exists (%J)\n" , src );
269
+ restund_warning ("turn: allocation already exists (%J)\n" , src );
251
270
++ turnd -> reply .scode_437 ;
252
271
rerr = stun_ereply (proto , sock , src , 0 , msg ,
253
272
437 , "Allocation TID Mismatch" ,
@@ -351,6 +370,7 @@ void allocate_request(struct turnd *turnd, struct allocation *alx,
351
370
al -> cli_addr = * src ;
352
371
al -> srv_addr = * dst ;
353
372
al -> proto = proto ;
373
+ mtx_init (& al -> mutex , mtx_plain );
354
374
sa_init (& al -> rsv_addr , AF_UNSPEC );
355
375
turndp ()-> allocc_tot ++ ;
356
376
turndp ()-> allocc_cur ++ ;
@@ -466,7 +486,9 @@ void refresh_request(struct turnd *turnd, struct allocation *al,
466
486
lifetime = lifetime ? MAX (lifetime , TURN_DEFAULT_LIFETIME ) : 0 ;
467
487
lifetime = MIN (lifetime , turnd -> lifetime_max );
468
488
489
+ mtx_lock (& al -> mutex );
469
490
tmr_start (& al -> tmr , lifetime * 1000 , timeout , al );
491
+ mtx_unlock (& al -> mutex );
470
492
471
493
restund_debug ("turn: allocation %p refresh (%us)\n" , al , lifetime );
472
494
0 commit comments