fix obscure race condition
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7311 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
c731ed53a7
commit
5df397eba7
|
@ -153,6 +153,7 @@ struct switch_media_bug {
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
uint8_t ready;
|
uint8_t ready;
|
||||||
time_t stop_time;
|
time_t stop_time;
|
||||||
|
switch_thread_id_t thread_id;
|
||||||
struct switch_media_bug *next;
|
struct switch_media_bug *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -830,6 +830,7 @@ SMBF_WRITE_REPLACE - Replace the Write Stream
|
||||||
SMBF_READ_REPLACE - Replace the Read Stream
|
SMBF_READ_REPLACE - Replace the Read Stream
|
||||||
SMBF_STEREO - Record in stereo
|
SMBF_STEREO - Record in stereo
|
||||||
SMBF_ANSWER_RECORD_REQ - Don't record until the channel is answered
|
SMBF_ANSWER_RECORD_REQ - Don't record until the channel is answered
|
||||||
|
SMBF_THREAD_LOCK - Only let the same thread who created the bug remove it.
|
||||||
</pre>
|
</pre>
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@ -840,7 +841,8 @@ typedef enum {
|
||||||
SMBF_READ_REPLACE = (1 << 3),
|
SMBF_READ_REPLACE = (1 << 3),
|
||||||
SMBF_READ_PING = (1 << 4),
|
SMBF_READ_PING = (1 << 4),
|
||||||
SMBF_STEREO = (1 << 5),
|
SMBF_STEREO = (1 << 5),
|
||||||
SMBF_RECORD_ANSWER_REQ = (1 << 6)
|
SMBF_RECORD_ANSWER_REQ = (1 << 6),
|
||||||
|
SMBF_THREAD_LOCK = (1 << 7)
|
||||||
} switch_media_bug_flag_t;
|
} switch_media_bug_flag_t;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
|
@ -1748,11 +1748,11 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session
|
||||||
} else if (!strchr(dest, '@')) {
|
} else if (!strchr(dest, '@')) {
|
||||||
char buf[128];
|
char buf[128];
|
||||||
tech_pvt->e_dest = switch_core_session_strdup(nsession, dest);
|
tech_pvt->e_dest = switch_core_session_strdup(nsession, dest);
|
||||||
if (sofia_reg_find_reg_url(profile, dest, profile_name, buf, sizeof(buf))) {
|
if (sofia_reg_find_reg_url(profile, dest, profile->name, buf, sizeof(buf))) {
|
||||||
tech_pvt->dest = switch_core_session_strdup(nsession, buf);
|
tech_pvt->dest = switch_core_session_strdup(nsession, buf);
|
||||||
tech_pvt->local_url = switch_core_session_sprintf(nsession, "%s@%s", dest, profile_name);
|
tech_pvt->local_url = switch_core_session_sprintf(nsession, "%s@%s", dest, profile->name);
|
||||||
} else {
|
} else {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Cannot locate registered user %s@%s\n", dest, profile_name);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Cannot locate registered user %s@%s\n", dest, profile->name);
|
||||||
cause = SWITCH_CAUSE_NO_ROUTE_DESTINATION;
|
cause = SWITCH_CAUSE_NO_ROUTE_DESTINATION;
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
|
@ -244,6 +244,12 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_add(switch_core_session_t
|
||||||
switch_buffer_create_dynamic(&bug->raw_write_buffer, bytes * SWITCH_BUFFER_BLOCK_FRAMES, bytes * SWITCH_BUFFER_START_FRAMES, MAX_BUG_BUFFER);
|
switch_buffer_create_dynamic(&bug->raw_write_buffer, bytes * SWITCH_BUFFER_BLOCK_FRAMES, bytes * SWITCH_BUFFER_START_FRAMES, MAX_BUG_BUFFER);
|
||||||
switch_mutex_init(&bug->write_mutex, SWITCH_MUTEX_NESTED, session->pool);
|
switch_mutex_init(&bug->write_mutex, SWITCH_MUTEX_NESTED, session->pool);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((bug->flags & SMBF_THREAD_LOCK)) {
|
||||||
|
bug->thread_id = switch_thread_self();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bug->ready = 1;
|
bug->ready = 1;
|
||||||
switch_thread_rwlock_wrlock(session->bug_rwlock);
|
switch_thread_rwlock_wrlock(session->bug_rwlock);
|
||||||
bug->next = session->bugs;
|
bug->next = session->bugs;
|
||||||
|
@ -269,6 +275,11 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_remove_all(switch_core_ses
|
||||||
if (session->bugs) {
|
if (session->bugs) {
|
||||||
switch_thread_rwlock_wrlock(session->bug_rwlock);
|
switch_thread_rwlock_wrlock(session->bug_rwlock);
|
||||||
for (bp = session->bugs; bp; bp = bp->next) {
|
for (bp = session->bugs; bp; bp = bp->next) {
|
||||||
|
if (bp->thread_id && bp->thread_id != switch_thread_self()) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "BUG is thread locked skipping.\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (bp->callback) {
|
if (bp->callback) {
|
||||||
bp->callback(bp, bp->user_data, SWITCH_ABC_TYPE_CLOSE);
|
bp->callback(bp, bp->user_data, SWITCH_ABC_TYPE_CLOSE);
|
||||||
}
|
}
|
||||||
|
@ -287,6 +298,11 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_close(switch_media_bug_t *
|
||||||
{
|
{
|
||||||
switch_media_bug_t *bp = *bug;
|
switch_media_bug_t *bp = *bug;
|
||||||
if (bp) {
|
if (bp) {
|
||||||
|
if (bp->thread_id && bp->thread_id != switch_thread_self()) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "BUG is thread locked skipping.\n");
|
||||||
|
return SWITCH_STATUS_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if (bp->callback) {
|
if (bp->callback) {
|
||||||
bp->callback(bp, bp->user_data, SWITCH_ABC_TYPE_CLOSE);
|
bp->callback(bp, bp->user_data, SWITCH_ABC_TYPE_CLOSE);
|
||||||
bp->ready = 0;
|
bp->ready = 0;
|
||||||
|
@ -308,6 +324,11 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_remove(switch_core_session
|
||||||
if (session->bugs) {
|
if (session->bugs) {
|
||||||
switch_thread_rwlock_wrlock(session->bug_rwlock);
|
switch_thread_rwlock_wrlock(session->bug_rwlock);
|
||||||
for (bp = session->bugs; bp; bp = bp->next) {
|
for (bp = session->bugs; bp; bp = bp->next) {
|
||||||
|
if (bp->thread_id && bp->thread_id != switch_thread_self()) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "BUG is thread locked skipping.\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (!bp->ready) {
|
if (!bp->ready) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -658,6 +658,7 @@ SWITCH_DECLARE(void) switch_core_session_perform_destroy(switch_core_session_t *
|
||||||
switch_channel_get_name((*session)->channel),
|
switch_channel_get_name((*session)->channel),
|
||||||
switch_channel_state_name(switch_channel_get_state((*session)->channel)));
|
switch_channel_state_name(switch_channel_get_state((*session)->channel)));
|
||||||
|
|
||||||
|
switch_core_media_bug_remove_all(*session);
|
||||||
switch_ivr_deactivate_unicast(*session);
|
switch_ivr_deactivate_unicast(*session);
|
||||||
|
|
||||||
switch_scheduler_del_task_group((*session)->uuid_str);
|
switch_scheduler_del_task_group((*session)->uuid_str);
|
||||||
|
@ -674,7 +675,7 @@ SWITCH_DECLARE(void) switch_core_session_perform_destroy(switch_core_session_t *
|
||||||
switch_event_fire(&event);
|
switch_event_fire(&event);
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_core_media_bug_remove_all(*session);
|
|
||||||
switch_buffer_destroy(&(*session)->raw_read_buffer);
|
switch_buffer_destroy(&(*session)->raw_read_buffer);
|
||||||
switch_buffer_destroy(&(*session)->raw_write_buffer);
|
switch_buffer_destroy(&(*session)->raw_write_buffer);
|
||||||
switch_ivr_clear_speech_cache(*session);
|
switch_ivr_clear_speech_cache(*session);
|
||||||
|
@ -694,10 +695,7 @@ static void *SWITCH_THREAD_FUNC switch_core_session_thread(switch_thread_t * thr
|
||||||
switch_core_session_t *session = obj;
|
switch_core_session_t *session = obj;
|
||||||
session->thread = thread;
|
session->thread = thread;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
switch_core_session_run(session);
|
switch_core_session_run(session);
|
||||||
switch_core_media_bug_remove_all(session);
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Session %"SWITCH_SIZE_T_FMT" (%s) Locked, Waiting on external entities\n",
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Session %"SWITCH_SIZE_T_FMT" (%s) Locked, Waiting on external entities\n",
|
||||||
session->id, switch_channel_get_name(session->channel));
|
session->id, switch_channel_get_name(session->channel));
|
||||||
switch_core_session_write_lock(session);
|
switch_core_session_write_lock(session);
|
||||||
|
|
|
@ -503,8 +503,9 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_eavesdrop_session(switch_core_session
|
||||||
switch_channel_t *tchannel = switch_core_session_get_channel(tsession);
|
switch_channel_t *tchannel = switch_core_session_get_channel(tsession);
|
||||||
switch_frame_t *read_frame, write_frame = { 0 };
|
switch_frame_t *read_frame, write_frame = { 0 };
|
||||||
switch_codec_t codec = {0};
|
switch_codec_t codec = {0};
|
||||||
int16_t buf[1024];
|
int16_t buf[8192];
|
||||||
switch_codec_t *tread_codec = switch_core_session_get_read_codec(tsession);
|
switch_codec_t *tread_codec = switch_core_session_get_read_codec(tsession);
|
||||||
|
int tlen = tread_codec->implementation->bytes_per_frame;
|
||||||
|
|
||||||
ep = switch_core_session_alloc(session, sizeof(*ep));
|
ep = switch_core_session_alloc(session, sizeof(*ep));
|
||||||
|
|
||||||
|
@ -543,7 +544,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_eavesdrop_session(switch_core_session
|
||||||
|
|
||||||
|
|
||||||
if (switch_core_media_bug_add(tsession, eavesdrop_callback, ep, 0,
|
if (switch_core_media_bug_add(tsession, eavesdrop_callback, ep, 0,
|
||||||
SMBF_READ_STREAM | SMBF_WRITE_STREAM | SMBF_READ_REPLACE | SMBF_WRITE_REPLACE | SMBF_READ_PING,
|
SMBF_READ_STREAM | SMBF_WRITE_STREAM | SMBF_READ_REPLACE | SMBF_WRITE_REPLACE | SMBF_READ_PING | SMBF_THREAD_LOCK,
|
||||||
&bug) != SWITCH_STATUS_SUCCESS) {
|
&bug) != SWITCH_STATUS_SUCCESS) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Cannot attach bug\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Cannot attach bug\n");
|
||||||
goto end;
|
goto end;
|
||||||
|
@ -630,9 +631,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_eavesdrop_session(switch_core_session
|
||||||
switch_buffer_unlock(ep->w_buffer);
|
switch_buffer_unlock(ep->w_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (len > tlen) {
|
||||||
if (len > tread_codec->implementation->bytes_per_frame) {
|
len = tlen;
|
||||||
len = tread_codec->implementation->bytes_per_frame;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (switch_buffer_inuse(ep->buffer) >= len) {
|
if (switch_buffer_inuse(ep->buffer) >= len) {
|
||||||
|
|
Loading…
Reference in New Issue