2012-04-18 21:44:51 +00:00
|
|
|
/*
|
|
|
|
Serval Voice Over Mesh Protocol (VoMP)
|
2012-08-02 01:59:37 +00:00
|
|
|
Copyright (C) 2012 Paul Gardner-Stephen
|
|
|
|
Copyright (C) 2012 Serval Project Inc.
|
2012-04-18 21:44:51 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-04-19 19:49:42 +00:00
|
|
|
VoMP works using a 6-state model of a phone call, and relies on MDP for
|
2012-04-18 21:44:51 +00:00
|
|
|
auth-cryption of frames. VoMP provides it's own replay protection.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serval.h"
|
2012-11-07 06:12:45 +00:00
|
|
|
#include "str.h"
|
2012-12-11 05:29:46 +00:00
|
|
|
#include "conf.h"
|
2012-08-02 01:59:37 +00:00
|
|
|
#include "strbuf.h"
|
2012-08-13 08:52:17 +00:00
|
|
|
#include "strlcpy.h"
|
2012-12-07 05:32:58 +00:00
|
|
|
#include "overlay_address.h"
|
2012-08-06 05:16:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Typical call state lifecycle between 2 parties.
|
|
|
|
Legend;
|
|
|
|
# incoming command from monitor client
|
|
|
|
$ outgoing monitor status
|
|
|
|
<> vomp packet with state change sent across the network
|
2012-08-08 01:26:05 +00:00
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
Monitor Init
|
2012-08-08 01:26:05 +00:00
|
|
|
# MONITOR VOMP [supported codec list]
|
2012-08-06 05:16:46 +00:00
|
|
|
|
|
|
|
Dialing
|
2012-08-08 01:26:05 +00:00
|
|
|
// client requests an outgoing call
|
|
|
|
# CALL [sid] [myDid] [TheirDid]
|
2012-09-28 02:00:03 +00:00
|
|
|
> CALLPREP + codecs + phone numbers
|
2012-08-08 01:26:05 +00:00
|
|
|
// let the client know what token we are going to use for the remainder of the call
|
|
|
|
$ CALLTO [token] [mySid] [myDid] [TheirSid] [TheirDid]
|
|
|
|
// allocate a session number and tell them our codecs,
|
|
|
|
// but we don't need to do anything else yet,
|
|
|
|
// this might be a replay attack
|
2012-08-06 05:16:46 +00:00
|
|
|
< NOCALL + codecs
|
2012-08-08 01:26:05 +00:00
|
|
|
// Ok, we have a network path, lets try to establish the call
|
2012-09-27 06:57:37 +00:00
|
|
|
$ CODECS [token] [their supported codec list]
|
2012-08-06 05:16:46 +00:00
|
|
|
> RINGOUT
|
2012-09-27 06:57:37 +00:00
|
|
|
$ CODECS [token] [their supported codec list]
|
2012-08-08 01:26:05 +00:00
|
|
|
// (Note that if both parties are trying to dial each other,
|
|
|
|
// the call should jump straight to INCALL)
|
|
|
|
// inform client about the call request
|
|
|
|
$ CALLFROM [token] [mySid] [myDid] [TheirSid] [TheirDid]
|
|
|
|
// Note that we may need to wait for other external processes
|
|
|
|
// before a phone is actually ringing
|
2012-08-06 05:16:46 +00:00
|
|
|
# RING [token]
|
2012-08-08 01:26:05 +00:00
|
|
|
< RINGIN
|
|
|
|
// All good, there's a phone out there ringing, you can indicate that to the user
|
2012-08-06 05:16:46 +00:00
|
|
|
$ RINGING [token]
|
|
|
|
|
|
|
|
Answering
|
|
|
|
# PICKUP [token]
|
|
|
|
< INCALL
|
2012-08-08 01:26:05 +00:00
|
|
|
// The client can now start sending audio
|
2012-08-06 05:16:46 +00:00
|
|
|
> INCALL
|
|
|
|
$ INCALL [token]
|
2012-08-08 01:26:05 +00:00
|
|
|
// The client can now start sending audio
|
2012-08-06 05:16:46 +00:00
|
|
|
$ INCALL [token]
|
|
|
|
|
|
|
|
Tell any clients that the call hasn't timed out yet
|
|
|
|
(if servald is behaving this should be redundant, if it isn't behaving how do we hangup?)
|
|
|
|
$ KEEPALIVE [token]
|
|
|
|
|
|
|
|
Hanging up (may also be triggered on network or call establishment timeout)
|
|
|
|
# HANGUP [token]
|
|
|
|
> CALLENDED
|
|
|
|
$ HANGUP [token]
|
|
|
|
< CALLENDED
|
|
|
|
$ HANGUP [token]
|
|
|
|
*/
|
|
|
|
|
2012-09-28 02:00:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Minimum network format requirements;
|
|
|
|
- your call session, packed integer
|
|
|
|
- my call state
|
|
|
|
- my sequence number
|
|
|
|
|
|
|
|
Pre-ring call setup;
|
|
|
|
- my call session
|
|
|
|
- my supported codec list
|
|
|
|
- your number
|
|
|
|
- my number
|
|
|
|
- my name
|
|
|
|
|
|
|
|
In call audio;
|
|
|
|
- codec
|
|
|
|
- elapsed time from call start
|
|
|
|
- audio duration
|
|
|
|
- audio data (remainder of payload)
|
|
|
|
|
|
|
|
Assuming minimum audio duration per packet is 20ms, 1 byte sequence should let us deal with ~2.5s of jitter.
|
|
|
|
If we have >2.5s of jitter, the network is obviously too crappy to support a voice call anyway.
|
|
|
|
|
|
|
|
If we can assume constant duration per codec, and I believe we can,
|
|
|
|
we can use the sequence number to derive the other audio timing information.
|
|
|
|
|
|
|
|
We need to resume a call even with large periods of zero traffic (eg >10s),
|
|
|
|
we should be able to use our own wall clock to estimate which 5s interval the audio belongs to.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
// ideally these id's should only be used on the network, with monitor events to inform clients of state changes
|
|
|
|
#define VOMP_STATE_NOCALL 1
|
|
|
|
#define VOMP_STATE_CALLPREP 2
|
|
|
|
#define VOMP_STATE_RINGINGOUT 3
|
|
|
|
#define VOMP_STATE_RINGINGIN 4
|
|
|
|
#define VOMP_STATE_INCALL 5
|
|
|
|
#define VOMP_STATE_CALLENDED 6
|
2012-08-06 05:16:46 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
#define VOMP_REJECT_HANGUP 0
|
|
|
|
#define VOMP_REJECT_NOPHONE 1
|
|
|
|
#define VOMP_REJECT_NOCODEC 2
|
|
|
|
#define VOMP_REJECT_BUSY 3
|
|
|
|
#define VOMP_REJECT_TIMEOUT 4
|
2012-09-28 02:00:03 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
#define VOMP_SESSION_MASK 0xffff
|
2012-09-28 02:00:03 +00:00
|
|
|
#define VOMP_MAX_CALLS 16
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
#define VOMP_VERSION 0x02
|
2012-09-28 02:00:03 +00:00
|
|
|
|
2012-08-13 04:31:57 +00:00
|
|
|
struct vomp_call_half {
|
2012-12-07 05:32:58 +00:00
|
|
|
struct subscriber *subscriber;
|
2012-08-13 04:31:57 +00:00
|
|
|
char did[64];
|
|
|
|
unsigned char state;
|
|
|
|
unsigned int session;
|
|
|
|
unsigned int sequence;
|
2012-08-13 06:45:10 +00:00
|
|
|
};
|
|
|
|
|
2012-10-22 03:35:15 +00:00
|
|
|
struct jitter_sample{
|
|
|
|
int sample_clock;
|
|
|
|
int local_clock;
|
|
|
|
int delta;
|
|
|
|
int sort_index;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define JITTER_SAMPLES 128
|
|
|
|
struct jitter_measurements{
|
|
|
|
struct jitter_sample samples[JITTER_SAMPLES];
|
|
|
|
struct jitter_sample *sorted_samples[JITTER_SAMPLES];
|
|
|
|
int next_sample;
|
|
|
|
int max_sample_clock;
|
|
|
|
int sample_count;
|
|
|
|
};
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
#define SEEN_SAMPLES 16
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state {
|
|
|
|
struct sched_ent alarm;
|
2012-08-13 04:31:57 +00:00
|
|
|
struct vomp_call_half local;
|
|
|
|
struct vomp_call_half remote;
|
2012-08-06 05:16:46 +00:00
|
|
|
int initiated_call;
|
|
|
|
time_ms_t create_time;
|
|
|
|
time_ms_t last_activity;
|
|
|
|
time_ms_t audio_clock;
|
2012-11-14 05:20:22 +00:00
|
|
|
int remote_audio_clock;
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
// last local & remote status we sent to all interested parties
|
|
|
|
int last_sent_status;
|
2012-11-14 05:20:22 +00:00
|
|
|
int rejection_reason;
|
2012-09-27 06:57:37 +00:00
|
|
|
unsigned char remote_codec_flags[CODEC_FLAGS_LENGTH];
|
2012-10-22 03:35:15 +00:00
|
|
|
struct jitter_measurements jitter;
|
2012-08-06 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
2012-09-28 02:00:03 +00:00
|
|
|
/* Some clients may only support one call at a time, even then we allow for multiple call states.
|
2012-10-22 03:35:15 +00:00
|
|
|
This is partly to deal with denial of service attacks that might occur by causing
|
|
|
|
the ejection of newly allocated session numbers before the caller has had a chance
|
|
|
|
to progress the call to a further state. */
|
2012-04-18 21:44:51 +00:00
|
|
|
int vomp_call_count=0;
|
2012-11-14 05:20:22 +00:00
|
|
|
// TODO allocate call structures dynamically
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state vomp_call_states[VOMP_MAX_CALLS];
|
2012-07-03 05:43:39 +00:00
|
|
|
struct profile_total vomp_stats;
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
static void vomp_process_tick(struct sched_ent *alarm);
|
|
|
|
strbuf strbuf_append_vomp_supported_codecs(strbuf sb, const unsigned char supported_codecs[256]);
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-09-27 06:57:37 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_codec_timespan(int c, int data_size)
|
|
|
|
{
|
|
|
|
switch(c) {
|
|
|
|
case VOMP_CODEC_16SIGNED: return data_size/16;
|
|
|
|
case VOMP_CODEC_ULAW: return data_size/8;
|
|
|
|
case VOMP_CODEC_ALAW: return data_size/8;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int vomp_parse_dtmf_digit(char c)
|
|
|
|
{
|
|
|
|
if (c>='0'&&c<='9') return c-0x30;
|
|
|
|
switch (c) {
|
|
|
|
case 'a': case 'A': return 0xa;
|
|
|
|
case 'b': case 'B': return 0xb;
|
|
|
|
case 'c': case 'C': return 0xc;
|
|
|
|
case 'd': case 'D': return 0xd;
|
|
|
|
case '*': return 0xe;
|
|
|
|
case '#': return 0xf;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char vomp_dtmf_digit_to_char(int digit)
|
|
|
|
{
|
|
|
|
if (digit<0) return '?';
|
|
|
|
if (digit<10) return '0'+digit;
|
|
|
|
if (digit<0xe) return 'A'+digit-0xa;
|
|
|
|
if (digit==0xe) return '*';
|
|
|
|
if (digit==0xf) return '#';
|
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
|
2012-12-19 00:08:17 +00:00
|
|
|
static int store_jitter_sample(struct jitter_measurements *measurements, int sample_clock, int local_clock, int *delay){
|
2012-10-22 03:35:15 +00:00
|
|
|
IN();
|
2012-11-14 05:20:22 +00:00
|
|
|
int i, count=0;
|
|
|
|
|
|
|
|
// have a quick look through recent samples, drop if already seen
|
|
|
|
if (measurements->sample_count>0){
|
|
|
|
i=measurements->next_sample -1;
|
|
|
|
while(count<SEEN_SAMPLES && count<=measurements->sample_count){
|
|
|
|
if (i<0)
|
|
|
|
i=measurements->sample_count -1;
|
|
|
|
if (measurements->samples[i].sample_clock == sample_clock)
|
|
|
|
RETURN(-1);
|
|
|
|
i--;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-22 03:35:15 +00:00
|
|
|
struct jitter_sample *sample = &measurements->samples[measurements->next_sample];
|
|
|
|
|
|
|
|
measurements->next_sample++;
|
|
|
|
if (measurements->next_sample>=JITTER_SAMPLES)
|
|
|
|
measurements->next_sample=0;
|
|
|
|
|
|
|
|
int delta=(local_clock - sample_clock);
|
|
|
|
|
|
|
|
int pos=0;
|
|
|
|
if (measurements->sample_count>0){
|
|
|
|
int old_index = measurements->sample_count;
|
|
|
|
if (measurements->sample_count>=JITTER_SAMPLES){
|
|
|
|
old_index = sample->sort_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
// binary search to find insert position
|
|
|
|
int min=0;
|
|
|
|
int max=measurements->sample_count -1;
|
|
|
|
while(min<=max){
|
|
|
|
pos = (max+min) / 2;
|
|
|
|
if (delta <= measurements->sorted_samples[pos]->delta){
|
|
|
|
max = pos-1;
|
|
|
|
}else{
|
|
|
|
pos++;
|
|
|
|
min = pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos>=measurements->sample_count)
|
|
|
|
pos=measurements->sample_count -1;
|
|
|
|
|
|
|
|
// shuffle the sorted array elements
|
|
|
|
for (i=old_index;i>pos;i--){
|
|
|
|
measurements->sorted_samples[i]=measurements->sorted_samples[i-1];
|
|
|
|
measurements->sorted_samples[i]->sort_index=i;
|
|
|
|
}
|
|
|
|
for (i=old_index;i<pos;i++){
|
|
|
|
measurements->sorted_samples[i]=measurements->sorted_samples[i+1];
|
|
|
|
measurements->sorted_samples[i]->sort_index=i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
measurements->sorted_samples[pos]=sample;
|
|
|
|
|
|
|
|
if (measurements->sample_count<JITTER_SAMPLES)
|
|
|
|
measurements->sample_count++;
|
|
|
|
|
|
|
|
sample->sample_clock = sample_clock;
|
|
|
|
sample->local_clock = local_clock;
|
|
|
|
sample->delta = delta;
|
|
|
|
sample->sort_index = pos;
|
|
|
|
|
|
|
|
if (sample_clock > measurements->max_sample_clock)
|
|
|
|
measurements->max_sample_clock=sample_clock;
|
|
|
|
|
2012-12-19 00:08:17 +00:00
|
|
|
*delay=sample->delta - measurements->sorted_samples[0]->delta;
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
RETURN(0);
|
2013-02-16 17:47:24 +00:00
|
|
|
OUT();
|
2012-10-22 03:35:15 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int get_jitter_size(struct jitter_measurements *measurements){
|
2012-10-22 03:35:15 +00:00
|
|
|
IN();
|
|
|
|
int i=JITTER_SAMPLES -4;
|
|
|
|
int jitter;
|
|
|
|
if (i>=measurements->sample_count)
|
|
|
|
i=measurements->sample_count -1;
|
2012-12-19 00:08:17 +00:00
|
|
|
jitter=measurements->sorted_samples[i]->delta - measurements->sorted_samples[0]->delta;
|
|
|
|
if (jitter < 60)
|
|
|
|
jitter=60;
|
2012-10-22 03:35:15 +00:00
|
|
|
RETURN(jitter);
|
2013-02-16 17:47:24 +00:00
|
|
|
OUT();
|
2012-10-22 03:35:15 +00:00
|
|
|
}
|
|
|
|
|
2012-09-27 06:57:37 +00:00
|
|
|
void set_codec_flag(int codec, unsigned char *flags){
|
|
|
|
if (codec<0 || codec>255)
|
|
|
|
return;
|
|
|
|
flags[codec >> 3] |= 1<<(codec & 7);
|
|
|
|
}
|
|
|
|
|
|
|
|
int is_codec_set(int codec, unsigned char *flags){
|
|
|
|
if (codec<0 || codec>255)
|
|
|
|
return 0;
|
|
|
|
return flags[codec >> 3] & (1<<(codec & 7));
|
|
|
|
}
|
2012-04-23 04:00:22 +00:00
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *vomp_find_call_by_session(int session_token)
|
2012-04-19 19:49:42 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
if (session_token==vomp_call_states[i].local.session)
|
|
|
|
return &vomp_call_states[i];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_generate_session_id()
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
int session_id=0;
|
|
|
|
while (!session_id)
|
|
|
|
{
|
|
|
|
if (urandombytes((unsigned char *)&session_id,sizeof(int)))
|
|
|
|
return WHY("Insufficient entropy");
|
|
|
|
session_id&=VOMP_SESSION_MASK;
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp) DEBUGF("session=0x%08x",session_id);
|
2012-07-03 05:43:39 +00:00
|
|
|
int i;
|
|
|
|
/* reject duplicate call session numbers */
|
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
if (session_id==vomp_call_states[i].local.session
|
|
|
|
||session_id==vomp_call_states[i].local.session){
|
|
|
|
session_id=0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return session_id;
|
|
|
|
}
|
|
|
|
|
2012-12-07 05:32:58 +00:00
|
|
|
static struct vomp_call_state *vomp_create_call(struct subscriber *remote,
|
|
|
|
struct subscriber *local,
|
2012-07-03 05:43:39 +00:00
|
|
|
unsigned int remote_session,
|
2012-08-08 01:26:05 +00:00
|
|
|
unsigned int local_session)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
if (!local_session)
|
|
|
|
local_session=vomp_generate_session_id();
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call = &vomp_call_states[vomp_call_count];
|
2012-07-03 05:43:39 +00:00
|
|
|
vomp_call_count++;
|
|
|
|
|
|
|
|
/* prepare slot */
|
2012-08-06 05:16:46 +00:00
|
|
|
bzero(call,sizeof(struct vomp_call_state));
|
2012-12-07 05:32:58 +00:00
|
|
|
call->local.subscriber=local;
|
|
|
|
call->remote.subscriber=remote;
|
2012-07-03 05:43:39 +00:00
|
|
|
call->local.session=local_session;
|
|
|
|
call->remote.session=remote_session;
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.state=VOMP_STATE_NOCALL;
|
|
|
|
call->remote.state=VOMP_STATE_NOCALL;
|
2012-07-05 06:22:21 +00:00
|
|
|
call->last_sent_status=-1;
|
2012-07-30 07:52:38 +00:00
|
|
|
call->create_time=gettime_ms();
|
2012-07-03 05:43:39 +00:00
|
|
|
call->last_activity=call->create_time;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-07-03 05:43:39 +00:00
|
|
|
call->alarm.alarm = call->create_time+VOMP_CALL_STATUS_INTERVAL;
|
|
|
|
call->alarm.function = vomp_process_tick;
|
|
|
|
vomp_stats.name="vomp_process_tick";
|
|
|
|
call->alarm.stats=&vomp_stats;
|
|
|
|
schedule(&call->alarm);
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUGF("Returning new call #%d",local_session);
|
2012-07-03 05:43:39 +00:00
|
|
|
return call;
|
|
|
|
}
|
|
|
|
|
2012-12-07 05:32:58 +00:00
|
|
|
static struct vomp_call_state *vomp_find_or_create_call(struct subscriber *remote,
|
|
|
|
struct subscriber *local,
|
2012-04-18 21:44:51 +00:00
|
|
|
unsigned int sender_session,
|
2012-04-22 09:45:55 +00:00
|
|
|
unsigned int recvr_session,
|
2012-07-03 05:43:39 +00:00
|
|
|
int sender_state,
|
|
|
|
int recvr_state)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call;
|
2012-07-03 05:43:39 +00:00
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUGF("%d calls already in progress.",vomp_call_count);
|
2012-04-18 21:44:51 +00:00
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
call = &vomp_call_states[i];
|
|
|
|
|
2012-04-18 21:44:51 +00:00
|
|
|
/* do the fast comparison first, and only if that matches proceed to
|
|
|
|
the slower SID comparisons */
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUGF("asking for %06x:%06x, this call %06x:%06x",
|
2012-04-24 05:10:30 +00:00
|
|
|
sender_session,recvr_session,
|
2012-07-03 05:43:39 +00:00
|
|
|
call->remote.session,
|
|
|
|
call->local.session);
|
2012-04-21 21:38:33 +00:00
|
|
|
|
|
|
|
int checked=0;
|
2012-07-03 05:43:39 +00:00
|
|
|
if (call->remote.session&&sender_session) {
|
2012-04-21 21:38:33 +00:00
|
|
|
checked++;
|
2012-07-03 05:43:39 +00:00
|
|
|
if(sender_session!=call->remote.session)
|
2012-04-21 21:38:33 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-07-03 05:43:39 +00:00
|
|
|
if (call->local.session&&recvr_session) {
|
2012-04-21 21:38:33 +00:00
|
|
|
checked++;
|
2012-07-03 05:43:39 +00:00
|
|
|
if(recvr_session!=call->local.session)
|
2012-04-21 21:38:33 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!checked) continue;
|
2012-12-07 05:32:58 +00:00
|
|
|
if (remote!=call->remote.subscriber || local!=call->local.subscriber)
|
|
|
|
continue;
|
2012-07-03 05:43:39 +00:00
|
|
|
|
|
|
|
/* it matches. */
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-04-21 11:06:26 +00:00
|
|
|
/* Record session number if required */
|
2012-07-03 05:43:39 +00:00
|
|
|
if (!call->remote.session)
|
|
|
|
call->remote.session=sender_session;
|
2012-04-21 11:06:26 +00:00
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp) {
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUGF("%06x:%06x matches call #%d %06x:%06x",
|
2012-04-24 05:10:30 +00:00
|
|
|
sender_session,recvr_session,i,
|
2012-07-03 05:43:39 +00:00
|
|
|
call->remote.session,
|
|
|
|
call->local.session);
|
2012-04-24 05:10:30 +00:00
|
|
|
}
|
2012-04-21 21:38:33 +00:00
|
|
|
|
2012-07-03 05:43:39 +00:00
|
|
|
return call;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
/* Don't create a call record if either party has already ended it */
|
|
|
|
if (sender_state==VOMP_STATE_CALLENDED || recvr_state==VOMP_STATE_CALLENDED){
|
|
|
|
WHYF("Not creating a call record when the call has already ended");
|
2012-04-22 09:45:55 +00:00
|
|
|
return NULL;
|
2012-11-14 05:20:22 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
/* Only create a call record if the remote party is trying to prepare a call */
|
|
|
|
if (sender_state==VOMP_STATE_CALLPREP && recvr_state==VOMP_STATE_NOCALL && recvr_session==0)
|
2012-12-07 05:32:58 +00:00
|
|
|
return vomp_create_call(remote, local, sender_session, recvr_session);
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
WHYF("Not creating a call record for state %d %d", sender_state, recvr_state);
|
2012-07-05 06:22:21 +00:00
|
|
|
return NULL;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 02:00:03 +00:00
|
|
|
static void prepare_vomp_header(struct vomp_call_state *call, overlay_mdp_frame *mdp){
|
|
|
|
mdp->packetTypeAndFlags=MDP_TX;
|
2012-12-07 05:32:58 +00:00
|
|
|
bcopy(call->local.subscriber->sid,mdp->out.src.sid,SID_SIZE);
|
2012-09-28 02:00:03 +00:00
|
|
|
mdp->out.src.port=MDP_PORT_VOMP;
|
2012-12-07 05:32:58 +00:00
|
|
|
bcopy(call->remote.subscriber->sid,mdp->out.dst.sid,SID_SIZE);
|
2012-09-28 02:00:03 +00:00
|
|
|
mdp->out.dst.port=MDP_PORT_VOMP;
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
mdp->out.payload[0]=VOMP_VERSION;
|
|
|
|
mdp->out.payload[1]=(call->local.session>>8)&0xff;
|
|
|
|
mdp->out.payload[2]=(call->local.session>>0)&0xff;
|
|
|
|
mdp->out.payload[3]=(call->remote.session>>8)&0xff;
|
|
|
|
mdp->out.payload[4]=(call->remote.session>>0)&0xff;
|
|
|
|
mdp->out.payload[5]=(call->remote.state<<4)|call->local.state;
|
|
|
|
mdp->out.payload_length=6;
|
2012-12-11 06:17:36 +00:00
|
|
|
|
|
|
|
// keep trying to punch a NAT tunnel for 10s
|
|
|
|
// note that requests are rate limited internally to one packet per second
|
|
|
|
time_ms_t now = gettime_ms();
|
|
|
|
if (call->local.state < VOMP_STATE_CALLENDED && call->create_time + 10000 >now)
|
|
|
|
overlay_send_stun_request(directory_service, call->remote.subscriber);
|
2012-09-28 02:00:03 +00:00
|
|
|
}
|
|
|
|
|
2012-04-19 19:49:42 +00:00
|
|
|
/* send updated call status to end-point and to any interested listeners as
|
|
|
|
appropriate */
|
2012-04-21 11:51:26 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_send_status_remote(struct vomp_call_state *call)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
overlay_mdp_frame mdp;
|
2012-08-13 04:31:57 +00:00
|
|
|
unsigned short *len=&mdp.out.payload_length;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
bzero(&mdp,sizeof(mdp));
|
2012-09-28 02:00:03 +00:00
|
|
|
prepare_vomp_header(call, &mdp);
|
2012-12-15 23:35:32 +00:00
|
|
|
mdp.out.queue=OQ_ORDINARY;
|
2012-08-02 01:59:37 +00:00
|
|
|
if (call->local.state < VOMP_STATE_RINGINGOUT && call->remote.state < VOMP_STATE_RINGINGOUT) {
|
2012-08-13 04:31:57 +00:00
|
|
|
int didLen;
|
2012-09-27 06:57:37 +00:00
|
|
|
unsigned char codecs[CODEC_FLAGS_LENGTH];
|
2012-08-13 04:31:57 +00:00
|
|
|
|
|
|
|
/* Include the list of supported codecs */
|
2012-09-27 06:57:37 +00:00
|
|
|
monitor_get_all_supported_codecs(codecs);
|
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
int i;
|
2012-08-02 01:59:37 +00:00
|
|
|
for (i = 0; i < 256; ++i)
|
2012-09-27 06:57:37 +00:00
|
|
|
if (is_codec_set(i,codecs)) {
|
2012-08-13 04:31:57 +00:00
|
|
|
mdp.out.payload[(*len)++]=i;
|
2012-04-23 04:00:22 +00:00
|
|
|
}
|
2012-08-13 04:31:57 +00:00
|
|
|
mdp.out.payload[(*len)++]=0;
|
|
|
|
|
2012-09-27 06:57:37 +00:00
|
|
|
/* Include src and dst phone numbers */
|
2012-08-13 04:31:57 +00:00
|
|
|
if (call->initiated_call){
|
2012-08-13 06:45:10 +00:00
|
|
|
DEBUGF("Sending phone numbers %s, %s",call->local.did,call->remote.did);
|
|
|
|
didLen = snprintf((char *)(mdp.out.payload + *len), sizeof(mdp.out.payload) - *len, "%s", call->local.did);
|
|
|
|
*len+=didLen+1;
|
2012-08-13 04:31:57 +00:00
|
|
|
didLen = snprintf((char *)(mdp.out.payload + *len), sizeof(mdp.out.payload) - *len, "%s", call->remote.did);
|
2012-08-13 06:45:10 +00:00
|
|
|
*len+=didLen+1;
|
2012-08-13 04:31:57 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUGF("mdp frame with codec list is %d bytes", mdp.out.payload_length);
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
2012-05-06 12:53:58 +00:00
|
|
|
|
2012-09-27 06:57:37 +00:00
|
|
|
call->local.sequence++;
|
|
|
|
|
2012-09-14 06:20:04 +00:00
|
|
|
overlay_mdp_dispatch(&mdp,0,NULL,0);
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-19 22:32:03 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
int vomp_received_audio(struct vomp_call_state *call, int audio_codec, int time, int sequence,
|
|
|
|
const unsigned char *audio, int audio_length)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-09-28 02:00:03 +00:00
|
|
|
if (call->local.state!=VOMP_STATE_INCALL)
|
|
|
|
return -1;
|
2012-08-13 06:45:10 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
// note we assume the caller will be consistent about providing time and sequence info
|
|
|
|
if (time==-1){
|
|
|
|
time = call->audio_clock;
|
|
|
|
call->audio_clock+=vomp_codec_timespan(audio_codec, audio_length);
|
2012-08-13 06:45:10 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
if (sequence==-1)
|
|
|
|
sequence = call->local.sequence++;
|
|
|
|
|
|
|
|
overlay_mdp_frame mdp;
|
|
|
|
unsigned short *len=&mdp.out.payload_length;
|
|
|
|
|
|
|
|
bzero(&mdp,sizeof(mdp));
|
|
|
|
prepare_vomp_header(call, &mdp);
|
|
|
|
|
|
|
|
mdp.out.payload[(*len)++]=audio_codec;
|
|
|
|
time = time / 20;
|
|
|
|
mdp.out.payload[(*len)++]=(time>>8)&0xff;
|
|
|
|
mdp.out.payload[(*len)++]=(time>>0)&0xff;
|
|
|
|
mdp.out.payload[(*len)++]=(sequence>>8)&0xff;
|
|
|
|
mdp.out.payload[(*len)++]=(sequence>>0)&0xff;
|
|
|
|
|
|
|
|
bcopy(audio,&mdp.out.payload[(*len)],audio_length);
|
|
|
|
(*len)+=audio_length;
|
|
|
|
|
2012-12-15 23:35:32 +00:00
|
|
|
mdp.out.queue=OQ_ISOCHRONOUS_VOICE;
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
overlay_mdp_dispatch(&mdp,0,NULL,0);
|
|
|
|
|
2012-08-13 06:45:10 +00:00
|
|
|
return 0;
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int monitor_call_status(struct vomp_call_state *call)
|
2012-08-06 05:16:46 +00:00
|
|
|
{
|
|
|
|
char msg[1024];
|
|
|
|
int n = snprintf(msg,1024,"\nCALLSTATUS:%06x:%06x:%d:%d:%d:%s:%s:%s:%s\n",
|
|
|
|
call->local.session,call->remote.session,
|
|
|
|
call->local.state,call->remote.state,
|
2012-09-28 02:00:03 +00:00
|
|
|
0,
|
2012-12-07 05:32:58 +00:00
|
|
|
alloca_tohex_sid(call->local.subscriber->sid),
|
|
|
|
alloca_tohex_sid(call->remote.subscriber->sid),
|
2012-08-06 05:16:46 +00:00
|
|
|
call->local.did,call->remote.did);
|
|
|
|
|
|
|
|
monitor_tell_clients(msg, n, MONITOR_VOMP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int monitor_send_audio(struct vomp_call_state *call, int audio_codec, int time, int sequence,
|
2012-12-19 00:08:17 +00:00
|
|
|
const unsigned char *audio, int audio_length, int delay)
|
2012-08-06 05:16:46 +00:00
|
|
|
{
|
|
|
|
if (0) DEBUGF("Tell call monitor about audio for call %06x:%06x",
|
|
|
|
call->local.session,call->remote.session);
|
|
|
|
char msg[1024 + MAX_AUDIO_BYTES];
|
|
|
|
/* All commands followed by binary data start with *len:, so that
|
|
|
|
they can be easily parsed at the far end, even if not supported.
|
|
|
|
Put newline at start of these so that receiving data in command
|
|
|
|
mode doesn't confuse the parser. */
|
2012-10-22 03:35:15 +00:00
|
|
|
|
|
|
|
int jitter_delay = get_jitter_size(&call->jitter);
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int msglen = snprintf(msg, 1024,
|
2012-12-19 00:08:17 +00:00
|
|
|
"\n*%d:AUDIO:%x:%d:%d:%d:%d:%d\n",
|
2012-11-14 05:20:22 +00:00
|
|
|
audio_length,
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.session,
|
2012-11-14 05:20:22 +00:00
|
|
|
audio_codec, time, sequence,
|
2012-12-19 00:08:17 +00:00
|
|
|
jitter_delay, delay);
|
2012-08-06 05:16:46 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
bcopy(audio, &msg[msglen], audio_length);
|
|
|
|
msglen+=audio_length;
|
2012-08-06 05:16:46 +00:00
|
|
|
msg[msglen++]='\n';
|
|
|
|
monitor_tell_clients(msg, msglen, MONITOR_VOMP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
// update local state and notify interested clients with the correct message
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_update_local_state(struct vomp_call_state *call, int new_state){
|
2012-08-08 01:26:05 +00:00
|
|
|
if (call->local.state>=new_state)
|
|
|
|
return 0;
|
|
|
|
|
2012-09-27 06:57:37 +00:00
|
|
|
if (new_state > VOMP_STATE_CALLPREP && new_state <= VOMP_STATE_INCALL && call->local.state<=VOMP_STATE_CALLPREP){
|
|
|
|
// tell clients about the remote codec list
|
|
|
|
int i;
|
|
|
|
unsigned char our_codecs[CODEC_FLAGS_LENGTH];
|
|
|
|
char msg[256];
|
|
|
|
monitor_get_all_supported_codecs(our_codecs);
|
|
|
|
strbuf b = strbuf_local(msg, sizeof msg);
|
|
|
|
strbuf_sprintf(b, "\nCODECS:%06x", call->local.session);
|
|
|
|
|
|
|
|
for (i = 0; i < 256; ++i){
|
|
|
|
if (is_codec_set(i,call->remote_codec_flags) && is_codec_set(i,our_codecs)) {
|
|
|
|
strbuf_sprintf(b, ":%d", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
strbuf_putc(b, '\n');
|
|
|
|
monitor_tell_clients(strbuf_str(b), strbuf_len(b), MONITOR_VOMP);
|
|
|
|
}
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
switch(new_state){
|
|
|
|
case VOMP_STATE_CALLPREP:
|
|
|
|
// tell client our session id.
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nCALLTO:%06x:%s:%s:%s:%s\n",
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.session,
|
2012-12-07 05:32:58 +00:00
|
|
|
alloca_tohex_sid(call->local.subscriber->sid), call->local.did,
|
|
|
|
alloca_tohex_sid(call->remote.subscriber->sid), call->remote.did);
|
2012-08-08 01:26:05 +00:00
|
|
|
break;
|
|
|
|
case VOMP_STATE_CALLENDED:
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nHANGUP:%06x\n", call->local.session);
|
2012-08-08 01:26:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
call->local.state=new_state;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update remote state and notify interested clients with the correct message
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_update_remote_state(struct vomp_call_state *call, int new_state){
|
2012-08-08 01:26:05 +00:00
|
|
|
if (call->remote.state>=new_state)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch(new_state){
|
|
|
|
case VOMP_STATE_RINGINGOUT:
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nCALLFROM:%06x:%s:%s:%s:%s\n",
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.session,
|
2012-12-07 05:32:58 +00:00
|
|
|
alloca_tohex_sid(call->local.subscriber->sid), call->local.did,
|
|
|
|
alloca_tohex_sid(call->remote.subscriber->sid), call->remote.did);
|
2012-08-08 01:26:05 +00:00
|
|
|
break;
|
|
|
|
case VOMP_STATE_RINGINGIN:
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nRINGING:%06x\n", call->local.session);
|
2012-08-08 01:26:05 +00:00
|
|
|
break;
|
|
|
|
case VOMP_STATE_INCALL:
|
|
|
|
if (call->remote.state==VOMP_STATE_RINGINGIN){
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nANSWERED:%06x\n", call->local.session);
|
2012-08-08 01:26:05 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
call->remote.state=new_state;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
// send call state updates if required.
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_update(struct vomp_call_state *call)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
int combined_status=(call->remote.state<<4)|call->local.state;
|
|
|
|
|
|
|
|
if (call->last_sent_status==combined_status)
|
|
|
|
return 0;
|
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUGF("Call state changed to %d %d, sending updates",call->local.state, call->remote.state);
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
call->last_sent_status=combined_status;
|
|
|
|
|
|
|
|
// tell the remote party
|
|
|
|
vomp_send_status_remote(call);
|
|
|
|
|
|
|
|
// tell monitor clients
|
2012-08-06 05:16:46 +00:00
|
|
|
if (monitor_socket_count && monitor_client_interested(MONITOR_VOMP))
|
2012-07-05 06:22:21 +00:00
|
|
|
monitor_call_status(call);
|
|
|
|
|
2012-04-19 22:32:03 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int to_absolute_value(int short_value, int reference_value){
|
|
|
|
short_value = (reference_value & 0xFFFF0000) | short_value;
|
|
|
|
|
|
|
|
if (short_value + 0x8000 < reference_value)
|
|
|
|
short_value+=0x10000;
|
|
|
|
|
|
|
|
if (short_value > reference_value + 0x8000)
|
|
|
|
short_value-=0x10000;
|
|
|
|
|
|
|
|
return short_value;
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_process_audio(struct vomp_call_state *call, overlay_mdp_frame *mdp, time_ms_t now)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-11-14 05:20:22 +00:00
|
|
|
int ofs=6;
|
2012-04-24 10:56:16 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
if(ofs>=mdp->in.payload_length)
|
|
|
|
return 0;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
int codec=mdp->in.payload[ofs++];
|
2012-08-21 03:24:14 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
int time = mdp->in.payload[ofs]<<8 | mdp->in.payload[ofs+1]<<0;
|
|
|
|
ofs+=2;
|
|
|
|
int sequence = mdp->in.payload[ofs]<<8 | mdp->in.payload[ofs+1]<<0;
|
|
|
|
ofs+=2;
|
|
|
|
|
|
|
|
// rebuild absolute time value from short relative time.
|
2013-05-27 01:10:22 +00:00
|
|
|
int decoded_time = to_absolute_value(time, call->remote_audio_clock);
|
|
|
|
int decoded_sequence = to_absolute_value(sequence, call->remote.sequence);
|
|
|
|
|
|
|
|
if (call->remote_audio_clock < decoded_time &&
|
|
|
|
call->remote.sequence < decoded_sequence){
|
|
|
|
call->remote_audio_clock = decoded_time;
|
|
|
|
call->remote.sequence = decoded_sequence;
|
|
|
|
}else if (call->remote_audio_clock < decoded_time ||
|
|
|
|
call->remote.sequence < decoded_sequence){
|
|
|
|
WARNF("Mismatch while decoding sequence and time offset (%d, %d) + (%d, %d) = (%d, %d)",
|
|
|
|
time, sequence,
|
|
|
|
call->remote_audio_clock, call->remote.sequence,
|
|
|
|
decoded_time, decoded_sequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
decoded_time=decoded_time * 20;
|
2012-11-14 05:20:22 +00:00
|
|
|
|
|
|
|
int audio_len = mdp->in.payload_length - ofs;
|
2012-12-19 00:08:17 +00:00
|
|
|
int delay=0;
|
|
|
|
|
2013-05-27 01:10:22 +00:00
|
|
|
if (store_jitter_sample(&call->jitter, decoded_time, now, &delay))
|
2012-11-14 05:20:22 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Pass audio frame to all registered listeners */
|
|
|
|
if (monitor_socket_count)
|
2013-05-27 01:10:22 +00:00
|
|
|
monitor_send_audio(call, codec, decoded_time, decoded_sequence,
|
2012-11-14 05:20:22 +00:00
|
|
|
&mdp->in.payload[ofs],
|
2012-12-19 00:08:17 +00:00
|
|
|
audio_len, delay);
|
2012-04-24 05:10:30 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_ringing(struct vomp_call_state *call){
|
2012-07-31 06:15:24 +00:00
|
|
|
if (call){
|
2012-08-13 06:45:10 +00:00
|
|
|
if ((!call->initiated_call) && call->local.state<VOMP_STATE_RINGINGIN && call->remote.state==VOMP_STATE_RINGINGOUT){
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-13 06:45:10 +00:00
|
|
|
DEBUGF("RING RING!");
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_RINGINGIN);
|
2012-07-31 06:15:24 +00:00
|
|
|
vomp_update(call);
|
2012-08-13 06:45:10 +00:00
|
|
|
}else
|
|
|
|
return WHY("Can't ring, call is not being dialled");
|
2012-07-31 06:15:24 +00:00
|
|
|
}
|
2012-04-19 20:25:58 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_call_destroy(struct vomp_call_state *call)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-09-27 06:57:37 +00:00
|
|
|
DEBUGF("Destroying call %06x:%06x [%s,%s]", call->local.session, call->remote.session, call->local.did,call->remote.did);
|
|
|
|
|
2012-04-19 20:25:58 +00:00
|
|
|
/* now release the call structure */
|
2012-07-03 05:43:39 +00:00
|
|
|
int i = (call - vomp_call_states);
|
|
|
|
unschedule(&call->alarm);
|
2012-09-27 06:57:37 +00:00
|
|
|
call->local.session=0;
|
|
|
|
call->remote.session=0;
|
2012-07-03 05:43:39 +00:00
|
|
|
|
|
|
|
vomp_call_count--;
|
|
|
|
if (i!=vomp_call_count){
|
|
|
|
unschedule(&vomp_call_states[vomp_call_count].alarm);
|
|
|
|
bcopy(&vomp_call_states[vomp_call_count],
|
|
|
|
call,
|
2012-08-06 05:16:46 +00:00
|
|
|
sizeof(struct vomp_call_state));
|
2012-07-03 05:43:39 +00:00
|
|
|
schedule(&call->alarm);
|
|
|
|
}
|
2012-04-19 20:25:58 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 05:32:58 +00:00
|
|
|
int vomp_dial(struct subscriber *local, struct subscriber *remote, const char *local_did, const char *remote_did)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
/* TODO use local_did and remote_did start putting the call together.
|
|
|
|
These need to be passed to the node being called to provide caller id,
|
|
|
|
and potentially handle call-routing, e.g., if it is a gateway.
|
|
|
|
*/
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUG("Dialing");
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
if (vomp_call_count>=VOMP_MAX_CALLS)
|
|
|
|
return WHY("All call slots in use");
|
|
|
|
|
|
|
|
/* allocate unique call session token, which is how the client will
|
|
|
|
refer to this call during its life */
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call=vomp_create_call(
|
2012-12-07 05:32:58 +00:00
|
|
|
remote,
|
|
|
|
local,
|
2012-07-05 06:22:21 +00:00
|
|
|
0,
|
2012-08-08 01:26:05 +00:00
|
|
|
0);
|
2012-08-13 04:31:57 +00:00
|
|
|
|
|
|
|
/* Copy local / remote phone numbers */
|
|
|
|
strlcpy(call->local.did, local_did, sizeof(call->local.did));
|
|
|
|
strlcpy(call->remote.did, remote_did, sizeof(call->remote.did));
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_CALLPREP);
|
2012-07-05 06:22:21 +00:00
|
|
|
// remember that we initiated this call, not the other party
|
|
|
|
call->initiated_call = 1;
|
|
|
|
|
|
|
|
/* send status update to remote, thus causing call to be created
|
|
|
|
(hopefully) at far end. */
|
|
|
|
vomp_update(call);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_pickup(struct vomp_call_state *call)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
if (call){
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUG("Picking up");
|
2012-08-13 06:45:10 +00:00
|
|
|
if (call->local.state<=VOMP_STATE_RINGINGIN && call->remote.state==VOMP_STATE_RINGINGOUT){
|
|
|
|
vomp_update_local_state(call, VOMP_STATE_INCALL);
|
|
|
|
call->create_time=gettime_ms();
|
|
|
|
/* state machine does job of starting audio stream, just tell everyone about
|
|
|
|
the changed state. */
|
|
|
|
vomp_update(call);
|
|
|
|
}else
|
|
|
|
return WHY("Can't pickup, call is not ringing");
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_hangup(struct vomp_call_state *call)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
if (call){
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUG("Hanging up");
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_CALLENDED);
|
2012-07-05 06:22:21 +00:00
|
|
|
vomp_update(call);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
static int vomp_extract_remote_codec_list(struct vomp_call_state *call,overlay_mdp_frame *mdp)
|
2012-04-23 07:22:10 +00:00
|
|
|
{
|
2012-11-14 05:20:22 +00:00
|
|
|
int ofs=6;
|
2012-08-13 04:31:57 +00:00
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.vomp)
|
2012-08-02 01:59:37 +00:00
|
|
|
dump("codec list mdp frame", (unsigned char *)&mdp->in.payload[0],mdp->in.payload_length);
|
2012-08-13 04:31:57 +00:00
|
|
|
|
|
|
|
for (;ofs<mdp->in.payload_length && mdp->in.payload[ofs];ofs++){
|
2012-09-27 06:57:37 +00:00
|
|
|
int codec = mdp->in.payload[ofs];
|
|
|
|
set_codec_flag(codec, call->remote_codec_flags);
|
2012-08-13 04:31:57 +00:00
|
|
|
}
|
|
|
|
if (!call->initiated_call){
|
|
|
|
ofs++;
|
|
|
|
if (ofs<mdp->in.payload_length)
|
2012-08-13 06:45:10 +00:00
|
|
|
ofs+=strlcpy(call->remote.did, (char *)(mdp->in.payload+ofs), sizeof(call->remote.did))+1;
|
2012-08-13 04:31:57 +00:00
|
|
|
if (ofs<mdp->in.payload_length)
|
|
|
|
ofs+=strlcpy(call->local.did, (char *)(mdp->in.payload+ofs), sizeof(call->local.did));
|
2012-04-24 05:10:30 +00:00
|
|
|
}
|
2012-04-23 07:22:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-18 21:44:51 +00:00
|
|
|
/* At this point we know the MDP frame is addressed to the VoMP port, but
|
|
|
|
we have not inspected the contents. As these frames are wire-format, we
|
|
|
|
must pay attention to endianness. */
|
2012-04-18 23:17:59 +00:00
|
|
|
int vomp_mdp_received(overlay_mdp_frame *mdp)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-10-22 03:35:15 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
|
|
|
|
2012-04-18 21:44:51 +00:00
|
|
|
if (mdp->packetTypeAndFlags&(MDP_NOCRYPT|MDP_NOSIGN))
|
|
|
|
{
|
|
|
|
/* stream-crypted audio frame */
|
2012-04-18 23:17:59 +00:00
|
|
|
return WHY("not implemented");
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* only auth-crypted frames make it this far */
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call=NULL;
|
2012-04-18 21:44:51 +00:00
|
|
|
|
|
|
|
switch(mdp->in.payload[0]) {
|
2012-11-14 05:20:22 +00:00
|
|
|
case VOMP_VERSION:
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-11-14 05:20:22 +00:00
|
|
|
unsigned int sender_session=(mdp->in.payload[1]<<8)|mdp->in.payload[2];
|
|
|
|
unsigned int recvr_session=(mdp->in.payload[3]<<8)|mdp->in.payload[4];
|
|
|
|
int recvr_state=mdp->in.payload[5]>>4;
|
|
|
|
int sender_state=mdp->in.payload[5]&0xf;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
/* wants to create a call session.
|
|
|
|
Main aim here: replay protection. An adversary should not be able to
|
|
|
|
replay previous VoMP packets to cause any action. We do this by
|
|
|
|
allocating a new session number for each call. As an adversary may be
|
|
|
|
trying to use such replays to cause a denial of service attack we need
|
|
|
|
to be able to track multiple potential session numbers even from the
|
|
|
|
same SID. */
|
2012-12-07 05:32:58 +00:00
|
|
|
struct subscriber *local=find_subscriber(mdp->in.dst.sid, SID_SIZE, 0);
|
|
|
|
struct subscriber *remote=find_subscriber(mdp->in.src.sid, SID_SIZE, 0);
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-12-07 05:32:58 +00:00
|
|
|
call=vomp_find_or_create_call(remote,local,
|
2012-07-05 06:22:21 +00:00
|
|
|
sender_session,recvr_session,
|
|
|
|
sender_state,recvr_state);
|
|
|
|
|
|
|
|
if (!call)
|
|
|
|
return WHY("Unable to find or create call");
|
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (!recvr_session && (config.debug.vomp))
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUG("recvr_session==0, created call");
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
// stale packet or forgery attempt? Should we just drop it?
|
|
|
|
if (sender_state < call->remote.state)
|
|
|
|
sender_state = call->remote.state;
|
2012-08-06 05:16:46 +00:00
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
// we don't really care what state they think we are in.
|
|
|
|
// Though we could use this information to indicate a network error.
|
|
|
|
recvr_state = call->local.state;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-08-13 04:31:57 +00:00
|
|
|
if ((!monitor_socket_count)
|
2012-08-06 05:16:46 +00:00
|
|
|
&&(!monitor_client_interested(MONITOR_VOMP)))
|
2012-08-08 01:26:05 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
/* No registered listener, so we cannot answer the call, so just reject
|
|
|
|
it. */
|
2012-09-27 06:57:37 +00:00
|
|
|
WHY("Rejecting call, no listening clients");
|
2012-11-14 05:20:22 +00:00
|
|
|
call->rejection_reason=VOMP_REJECT_NOPHONE;
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-07-05 06:22:21 +00:00
|
|
|
/* now let the state machine progress to destroy the call */
|
|
|
|
}
|
2012-05-06 23:01:53 +00:00
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
if (recvr_state < VOMP_STATE_RINGINGOUT && sender_state < VOMP_STATE_RINGINGOUT){
|
2012-11-14 05:20:22 +00:00
|
|
|
|
|
|
|
// TODO, pass codec list to connected clients, let them pick a codec they can use first?
|
|
|
|
|
2012-09-27 06:57:37 +00:00
|
|
|
unsigned char supported_codecs[CODEC_FLAGS_LENGTH];
|
|
|
|
int i, found=0;
|
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
// the other party should have given us their list of supported codecs
|
|
|
|
vomp_extract_remote_codec_list(call,mdp);
|
2012-09-27 06:57:37 +00:00
|
|
|
|
|
|
|
// make sure we have at least one codec in common
|
|
|
|
monitor_get_all_supported_codecs(supported_codecs);
|
|
|
|
|
|
|
|
// look for a matching bit
|
|
|
|
for (i=0;i<CODEC_FLAGS_LENGTH;i++){
|
|
|
|
if (supported_codecs[i] & call->remote_codec_flags[i]){
|
|
|
|
found=1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// nope, we can't speak the same language.
|
|
|
|
if (!found){
|
|
|
|
WHY("Rejecting call, no matching codecs found");
|
2012-11-14 05:20:22 +00:00
|
|
|
call->rejection_reason=VOMP_REJECT_NOCODEC;
|
2012-09-27 06:57:37 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sender_state==VOMP_STATE_CALLENDED){
|
|
|
|
/* For whatever reason, the far end has given up on the call,
|
|
|
|
so we must also move to CALLENDED no matter what state we were in */
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Consider states: our actual state, sender state, what the sender thinks
|
|
|
|
our state is, and what we think the sender's state is. But largely it
|
|
|
|
breaks down to what we think our state is, and what they think their
|
|
|
|
state is. That leaves us with just 6X6=36 cases.
|
|
|
|
*/
|
2012-08-08 01:26:05 +00:00
|
|
|
int combined_state=recvr_state<<3 | sender_state;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
switch(combined_state) {
|
|
|
|
case (VOMP_STATE_NOCALL<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
/* The remote party is in the call-prep state tryng to dial us.
|
|
|
|
We'll send them our codec list, then they can tell us to ring.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGIN<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* they are ringing us and we are ringing. Lets keep doing that. */
|
|
|
|
case (VOMP_STATE_NOCALL<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* We have have issued a session, the remote party is now indicating
|
|
|
|
that they would like us to start ringing.
|
|
|
|
So change our state to RINGINGIN. */
|
|
|
|
|
2012-11-14 05:20:22 +00:00
|
|
|
if (call->initiated_call){
|
2012-07-05 06:22:21 +00:00
|
|
|
// hey, quit it, we were trying to call you.
|
2012-11-14 05:20:22 +00:00
|
|
|
call->rejection_reason=VOMP_REJECT_BUSY;
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-11-14 05:20:22 +00:00
|
|
|
}else{
|
2012-07-31 06:15:24 +00:00
|
|
|
// Don't automatically transition to RINGIN, wait for a client to tell us when.
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_CALLPREP<<3)|VOMP_STATE_NOCALL:
|
|
|
|
case (VOMP_STATE_CALLPREP<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
/* We are getting ready to ring, and the other end has issued a session
|
|
|
|
number, (and may be calling us at the same time).
|
|
|
|
Now is the time to ring out.
|
|
|
|
However, until the remote party has acknowledged with RINGIN,
|
|
|
|
don't indicate their ringing state to the user.
|
|
|
|
*/
|
|
|
|
if (call->initiated_call){
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_RINGINGOUT;
|
2012-07-05 06:22:21 +00:00
|
|
|
}else{
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_NOCALL:
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
/* We are calling them, and they have not yet answered, just wait */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_RINGINGIN:
|
|
|
|
/* we are calling them and they have acknowledged it.
|
|
|
|
Now we can play a tone to indicate they are ringing */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* Woah, we're trying to dial each other?? That must have been well timed.
|
|
|
|
Jump to INCALL and start audio */
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_INCALL;
|
2012-07-05 06:22:21 +00:00
|
|
|
// reset create time when call is established
|
2012-07-30 07:52:38 +00:00
|
|
|
call->create_time=gettime_ms();
|
2012-07-05 06:22:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_INCALL<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* we think the call is in progress, but the far end hasn't replied yet
|
|
|
|
Just wait. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_INCALL:
|
|
|
|
/* They have answered, we can jump to incall as well */
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_INCALL;
|
2012-07-05 06:22:21 +00:00
|
|
|
// reset create time when call is established
|
2012-07-30 07:52:38 +00:00
|
|
|
call->create_time=gettime_ms();
|
2012-07-05 06:22:21 +00:00
|
|
|
// Fall through
|
|
|
|
case (VOMP_STATE_INCALL<<3)|VOMP_STATE_INCALL:
|
|
|
|
/* play any audio that they have sent us. */
|
2012-11-14 05:20:22 +00:00
|
|
|
vomp_process_audio(call,mdp,now);
|
2012-07-05 06:22:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_NOCALL:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_RINGINGIN:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_INCALL:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_CALLENDED:
|
|
|
|
/* If we ended the call, we'll wait for the far end to reply before destroying it */
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
Any state not explicitly listed above is considered invalid and possibly stale,
|
|
|
|
the packet will be completely ignored.
|
|
|
|
*/
|
2012-08-08 01:26:05 +00:00
|
|
|
WHYF("Ignoring invalid call state %d.%d",sender_state,recvr_state);
|
2012-07-05 06:22:21 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_remote_state(call, sender_state);
|
|
|
|
vomp_update_local_state(call, recvr_state);
|
2012-07-30 07:52:38 +00:00
|
|
|
call->last_activity=gettime_ms();
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
// TODO if we hear a stale echo of our state should we force another outgoing packet now?
|
|
|
|
// will that always cause 2 outgoing packets?
|
|
|
|
|
|
|
|
/* send an update to the call status if required */
|
|
|
|
vomp_update(call);
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-04-21 21:38:33 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* unsupported VoMP frame */
|
2012-04-21 21:38:33 +00:00
|
|
|
WHYF("Unsupported VoMP frame type = 0x%02x",mdp->in.payload[0]);
|
2012-04-18 21:44:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-18 23:17:59 +00:00
|
|
|
return WHY("Malformed VoMP MDP packet?");
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-04-20 06:11:13 +00:00
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
static void vomp_process_tick(struct sched_ent *alarm)
|
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
char msg[32];
|
|
|
|
int len;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-07-03 05:43:39 +00:00
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call = (struct vomp_call_state *)alarm;
|
2012-09-27 06:57:37 +00:00
|
|
|
|
2012-08-09 02:22:44 +00:00
|
|
|
/* See if any calls need to be expired.
|
|
|
|
Allow VOMP_CALL_DIAL_TIMEOUT ms for the other party to ring / request ringing
|
|
|
|
Allow VOMP_CALL_RING_TIMEOUT ms for the ringing party to answer
|
|
|
|
Allow VOMP_CALL_NETWORK_TIMEOUT ms between received packets
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((call->remote.state < VOMP_STATE_RINGINGOUT && call->create_time + VOMP_CALL_DIAL_TIMEOUT < now) ||
|
|
|
|
(call->local.state < VOMP_STATE_INCALL && call->create_time + VOMP_CALL_RING_TIMEOUT < now) ||
|
|
|
|
(call->last_activity+VOMP_CALL_NETWORK_TIMEOUT<now) ){
|
2012-09-27 06:57:37 +00:00
|
|
|
|
|
|
|
/* tell any local clients that call has died */
|
2012-11-14 05:20:22 +00:00
|
|
|
call->rejection_reason=VOMP_REJECT_TIMEOUT;
|
2012-09-27 06:57:37 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_CALLENDED);
|
|
|
|
vomp_update_remote_state(call, VOMP_STATE_CALLENDED);
|
|
|
|
vomp_update(call);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
If we are calling ourselves, mdp packets are processed as soon as they are sent.
|
|
|
|
So we can't risk moving call entries around at that time as that will change pointers that are still on the stack.
|
|
|
|
So instead we wait for the next vomp tick to destroy the structure
|
|
|
|
*/
|
|
|
|
if (call->local.state==VOMP_STATE_CALLENDED
|
|
|
|
&&call->remote.state==VOMP_STATE_CALLENDED){
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_call_destroy(call);
|
|
|
|
return;
|
2012-07-03 05:43:39 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
/* update everyone if the state has changed */
|
|
|
|
vomp_update(call);
|
|
|
|
/* force a packet to the other party. We are still here */
|
|
|
|
vomp_send_status_remote(call);
|
|
|
|
|
|
|
|
/* tell local monitor clients the call is still alive */
|
|
|
|
len = snprintf(msg,sizeof(msg) -1,"\nKEEPALIVE:%06x\n", call->local.session);
|
|
|
|
monitor_tell_clients(msg, len, MONITOR_VOMP);
|
|
|
|
|
2012-07-30 07:52:38 +00:00
|
|
|
alarm->alarm = gettime_ms() + VOMP_CALL_STATUS_INTERVAL;
|
2012-07-12 00:45:16 +00:00
|
|
|
alarm->deadline = alarm->alarm + VOMP_CALL_STATUS_INTERVAL/2;
|
2012-07-02 03:49:54 +00:00
|
|
|
schedule(alarm);
|
2012-04-21 11:51:26 +00:00
|
|
|
}
|