forked from Green-Sky/tomato
Green Sky
83e200df43
e29e185c03 feat: add ngc events 2b0dc0f46b add ngc related unpack functions b2315c50e0 Add groupchat API function that returns an IP address string for a peer 5f863a5492 feat: Add `to_string` functions for all public enums. 0c998a7598 add real timeout test 68c827609a chore: Move s390x build to post-merge. 028b017d79 perf: Slightly reduce bandwidth usage when there are few nodes. 90f7496819 feat: Enable ubsan on bootstrap nodes. 89b6450d66 test: Add check-c run to bazel build. REVERT: adbd5b32d8 feat: add ngc events git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: e29e185c03fea7337036e5ef4d1d9080a6cee721
905 lines
25 KiB
C
905 lines
25 KiB
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2016-2018 The TokTok team.
|
|
* Copyright © 2013-2015 Tox project.
|
|
*/
|
|
#include "msi.h"
|
|
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "../toxcore/ccompat.h"
|
|
#include "../toxcore/logger.h"
|
|
#include "../toxcore/util.h"
|
|
|
|
#define MSI_MAXMSG_SIZE 256
|
|
|
|
/**
|
|
* Protocol:
|
|
*
|
|
* `|id [1 byte]| |size [1 byte]| |data [$size bytes]| |...{repeat}| |0 {end byte}|`
|
|
*/
|
|
|
|
typedef enum MSIHeaderID {
|
|
ID_REQUEST = 1,
|
|
ID_ERROR,
|
|
ID_CAPABILITIES,
|
|
} MSIHeaderID;
|
|
|
|
|
|
typedef enum MSIRequest {
|
|
REQU_INIT,
|
|
REQU_PUSH,
|
|
REQU_POP,
|
|
} MSIRequest;
|
|
|
|
|
|
typedef struct MSIHeaderRequest {
|
|
MSIRequest value;
|
|
bool exists;
|
|
} MSIHeaderRequest;
|
|
|
|
typedef struct MSIHeaderError {
|
|
MSIError value;
|
|
bool exists;
|
|
} MSIHeaderError;
|
|
|
|
typedef struct MSIHeaderCapabilities {
|
|
uint8_t value;
|
|
bool exists;
|
|
} MSIHeaderCapabilities;
|
|
|
|
|
|
typedef struct MSIMessage {
|
|
MSIHeaderRequest request;
|
|
MSIHeaderError error;
|
|
MSIHeaderCapabilities capabilities;
|
|
} MSIMessage;
|
|
|
|
|
|
static void msg_init(MSIMessage *dest, MSIRequest request);
|
|
static int msg_parse_in(const Logger *log, MSIMessage *dest, const uint8_t *data, uint16_t length);
|
|
static uint8_t *msg_parse_header_out(MSIHeaderID id, uint8_t *dest, const void *value, uint8_t value_len,
|
|
uint16_t *length);
|
|
static int send_message(Messenger *m, uint32_t friend_number, const MSIMessage *msg);
|
|
static int send_error(Messenger *m, uint32_t friend_number, MSIError error);
|
|
static bool invoke_callback(MSICall *call, MSICallbackID cb);
|
|
static MSICall *get_call(MSISession *session, uint32_t friend_number);
|
|
static MSICall *new_call(MSISession *session, uint32_t friend_number);
|
|
static void kill_call(MSICall *call);
|
|
static void on_peer_status(Messenger *m, uint32_t friend_number, uint8_t status, void *data);
|
|
static void handle_init(MSICall *call, const MSIMessage *msg);
|
|
static void handle_push(MSICall *call, const MSIMessage *msg);
|
|
static void handle_pop(MSICall *call, const MSIMessage *msg);
|
|
static void handle_msi_packet(Messenger *m, uint32_t friend_number, const uint8_t *data, uint16_t length, void *object);
|
|
|
|
|
|
/*
|
|
* Public functions
|
|
*/
|
|
|
|
void msi_callback_invite(MSISession *session, msi_action_cb *callback)
|
|
{
|
|
session->invite_callback = callback;
|
|
}
|
|
void msi_callback_start(MSISession *session, msi_action_cb *callback)
|
|
{
|
|
session->start_callback = callback;
|
|
}
|
|
void msi_callback_end(MSISession *session, msi_action_cb *callback)
|
|
{
|
|
session->end_callback = callback;
|
|
}
|
|
void msi_callback_error(MSISession *session, msi_action_cb *callback)
|
|
{
|
|
session->error_callback = callback;
|
|
}
|
|
void msi_callback_peertimeout(MSISession *session, msi_action_cb *callback)
|
|
{
|
|
session->peertimeout_callback = callback;
|
|
}
|
|
void msi_callback_capabilities(MSISession *session, msi_action_cb *callback)
|
|
{
|
|
session->capabilities_callback = callback;
|
|
}
|
|
|
|
MSISession *msi_new(Messenger *m)
|
|
{
|
|
if (m == nullptr) {
|
|
return nullptr;
|
|
}
|
|
|
|
MSISession *retu = (MSISession *)calloc(1, sizeof(MSISession));
|
|
|
|
if (retu == nullptr) {
|
|
LOGGER_ERROR(m->log, "Allocation failed! Program might misbehave!");
|
|
return nullptr;
|
|
}
|
|
|
|
if (create_recursive_mutex(retu->mutex) != 0) {
|
|
LOGGER_ERROR(m->log, "Failed to init mutex! Program might misbehave");
|
|
free(retu);
|
|
return nullptr;
|
|
}
|
|
|
|
retu->messenger = m;
|
|
|
|
m_callback_msi_packet(m, handle_msi_packet, retu);
|
|
|
|
/* This is called when remote terminates session */
|
|
m_callback_connectionstatus_internal_av(m, on_peer_status, retu);
|
|
|
|
LOGGER_DEBUG(m->log, "New msi session: %p ", (void *)retu);
|
|
return retu;
|
|
}
|
|
int msi_kill(MSISession *session, const Logger *log)
|
|
{
|
|
if (session == nullptr) {
|
|
LOGGER_ERROR(log, "Tried to terminate non-existing session");
|
|
return -1;
|
|
}
|
|
|
|
m_callback_msi_packet(session->messenger, nullptr, nullptr);
|
|
|
|
if (pthread_mutex_trylock(session->mutex) != 0) {
|
|
LOGGER_ERROR(log, "Failed to acquire lock on msi mutex");
|
|
return -1;
|
|
}
|
|
|
|
if (session->calls != nullptr) {
|
|
MSIMessage msg;
|
|
msg_init(&msg, REQU_POP);
|
|
|
|
MSICall *it = get_call(session, session->calls_head);
|
|
|
|
while (it != nullptr) {
|
|
send_message(session->messenger, it->friend_number, &msg);
|
|
MSICall *temp_it = it;
|
|
it = it->next;
|
|
kill_call(temp_it); /* This will eventually free session->calls */
|
|
}
|
|
}
|
|
|
|
pthread_mutex_unlock(session->mutex);
|
|
pthread_mutex_destroy(session->mutex);
|
|
|
|
LOGGER_DEBUG(log, "Terminated session: %p", (void *)session);
|
|
free(session);
|
|
return 0;
|
|
}
|
|
int msi_invite(MSISession *session, MSICall **call, uint32_t friend_number, uint8_t capabilities)
|
|
{
|
|
if (session == nullptr) {
|
|
return -1;
|
|
}
|
|
|
|
LOGGER_DEBUG(session->messenger->log, "Session: %p Inviting friend: %u", (void *)session, friend_number);
|
|
|
|
if (pthread_mutex_trylock(session->mutex) != 0) {
|
|
LOGGER_ERROR(session->messenger->log, "Failed to acquire lock on msi mutex");
|
|
return -1;
|
|
}
|
|
|
|
if (get_call(session, friend_number) != nullptr) {
|
|
LOGGER_ERROR(session->messenger->log, "Already in a call");
|
|
pthread_mutex_unlock(session->mutex);
|
|
return -1;
|
|
}
|
|
|
|
MSICall *temp = new_call(session, friend_number);
|
|
|
|
if (temp == nullptr) {
|
|
pthread_mutex_unlock(session->mutex);
|
|
return -1;
|
|
}
|
|
|
|
temp->self_capabilities = capabilities;
|
|
|
|
MSIMessage msg;
|
|
msg_init(&msg, REQU_INIT);
|
|
|
|
msg.capabilities.exists = true;
|
|
msg.capabilities.value = capabilities;
|
|
|
|
send_message(temp->session->messenger, temp->friend_number, &msg);
|
|
|
|
temp->state = MSI_CALL_REQUESTING;
|
|
|
|
*call = temp;
|
|
|
|
LOGGER_DEBUG(session->messenger->log, "Invite sent");
|
|
pthread_mutex_unlock(session->mutex);
|
|
return 0;
|
|
}
|
|
int msi_hangup(MSICall *call)
|
|
{
|
|
if (call == nullptr || call->session == nullptr) {
|
|
return -1;
|
|
}
|
|
|
|
MSISession *session = call->session;
|
|
|
|
LOGGER_DEBUG(session->messenger->log, "Session: %p Hanging up call with friend: %u", (void *)call->session,
|
|
call->friend_number);
|
|
|
|
if (pthread_mutex_trylock(session->mutex) != 0) {
|
|
LOGGER_ERROR(session->messenger->log, "Failed to acquire lock on msi mutex");
|
|
return -1;
|
|
}
|
|
|
|
if (call->state == MSI_CALL_INACTIVE) {
|
|
LOGGER_ERROR(session->messenger->log, "Call is in invalid state!");
|
|
pthread_mutex_unlock(session->mutex);
|
|
return -1;
|
|
}
|
|
|
|
MSIMessage msg;
|
|
msg_init(&msg, REQU_POP);
|
|
|
|
send_message(session->messenger, call->friend_number, &msg);
|
|
|
|
kill_call(call);
|
|
pthread_mutex_unlock(session->mutex);
|
|
return 0;
|
|
}
|
|
int msi_answer(MSICall *call, uint8_t capabilities)
|
|
{
|
|
if (call == nullptr || call->session == nullptr) {
|
|
return -1;
|
|
}
|
|
|
|
MSISession *session = call->session;
|
|
|
|
LOGGER_DEBUG(session->messenger->log, "Session: %p Answering call from: %u", (void *)call->session,
|
|
call->friend_number);
|
|
|
|
if (pthread_mutex_trylock(session->mutex) != 0) {
|
|
LOGGER_ERROR(session->messenger->log, "Failed to acquire lock on msi mutex");
|
|
return -1;
|
|
}
|
|
|
|
if (call->state != MSI_CALL_REQUESTED) {
|
|
/* Though sending in invalid state will not cause anything weird
|
|
* Its better to not do it like a maniac */
|
|
LOGGER_ERROR(session->messenger->log, "Call is in invalid state!");
|
|
pthread_mutex_unlock(session->mutex);
|
|
return -1;
|
|
}
|
|
|
|
call->self_capabilities = capabilities;
|
|
|
|
MSIMessage msg;
|
|
msg_init(&msg, REQU_PUSH);
|
|
|
|
msg.capabilities.exists = true;
|
|
msg.capabilities.value = capabilities;
|
|
|
|
send_message(session->messenger, call->friend_number, &msg);
|
|
|
|
call->state = MSI_CALL_ACTIVE;
|
|
pthread_mutex_unlock(session->mutex);
|
|
|
|
return 0;
|
|
}
|
|
int msi_change_capabilities(MSICall *call, uint8_t capabilities)
|
|
{
|
|
if (call == nullptr || call->session == nullptr) {
|
|
return -1;
|
|
}
|
|
|
|
MSISession *session = call->session;
|
|
|
|
LOGGER_DEBUG(session->messenger->log, "Session: %p Trying to change capabilities to friend %u", (void *)call->session,
|
|
call->friend_number);
|
|
|
|
if (pthread_mutex_trylock(session->mutex) != 0) {
|
|
LOGGER_ERROR(session->messenger->log, "Failed to acquire lock on msi mutex");
|
|
return -1;
|
|
}
|
|
|
|
if (call->state != MSI_CALL_ACTIVE) {
|
|
LOGGER_ERROR(session->messenger->log, "Call is in invalid state!");
|
|
pthread_mutex_unlock(session->mutex);
|
|
return -1;
|
|
}
|
|
|
|
call->self_capabilities = capabilities;
|
|
|
|
MSIMessage msg;
|
|
msg_init(&msg, REQU_PUSH);
|
|
|
|
msg.capabilities.exists = true;
|
|
msg.capabilities.value = capabilities;
|
|
|
|
send_message(call->session->messenger, call->friend_number, &msg);
|
|
|
|
pthread_mutex_unlock(session->mutex);
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* Private functions
|
|
*/
|
|
static void msg_init(MSIMessage *dest, MSIRequest request)
|
|
{
|
|
memset(dest, 0, sizeof(*dest));
|
|
dest->request.exists = true;
|
|
dest->request.value = request;
|
|
}
|
|
|
|
static bool check_size(const Logger *log, const uint8_t *bytes, int *constraint, uint8_t size)
|
|
{
|
|
*constraint -= 2 + size;
|
|
|
|
if (*constraint < 1) {
|
|
LOGGER_ERROR(log, "Read over length!");
|
|
return false;
|
|
}
|
|
|
|
if (bytes[1] != size) {
|
|
LOGGER_ERROR(log, "Invalid data size!");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/** Assumes size == 1 */
|
|
static bool check_enum_high(const Logger *log, const uint8_t *bytes, uint8_t enum_high)
|
|
{
|
|
if (bytes[2] > enum_high) {
|
|
LOGGER_ERROR(log, "Failed enum high limit!");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
static int msg_parse_in(const Logger *log, MSIMessage *dest, const uint8_t *data, uint16_t length)
|
|
{
|
|
/* Parse raw data received from socket into MSIMessage struct */
|
|
|
|
assert(dest != nullptr);
|
|
|
|
if (length == 0 || data[length - 1] != 0) { /* End byte must have value 0 */
|
|
LOGGER_ERROR(log, "Invalid end byte");
|
|
return -1;
|
|
}
|
|
|
|
memset(dest, 0, sizeof(*dest));
|
|
|
|
const uint8_t *it = data;
|
|
int size_constraint = length;
|
|
|
|
while (*it != 0) {/* until end byte is hit */
|
|
switch (*it) {
|
|
case ID_REQUEST: {
|
|
if (!check_size(log, it, &size_constraint, 1) ||
|
|
!check_enum_high(log, it, REQU_POP)) {
|
|
return -1;
|
|
}
|
|
|
|
dest->request.value = (MSIRequest)it[2];
|
|
dest->request.exists = true;
|
|
it += 3;
|
|
break;
|
|
}
|
|
|
|
case ID_ERROR: {
|
|
if (!check_size(log, it, &size_constraint, 1) ||
|
|
!check_enum_high(log, it, MSI_E_UNDISCLOSED)) {
|
|
return -1;
|
|
}
|
|
|
|
dest->error.value = (MSIError)it[2];
|
|
dest->error.exists = true;
|
|
it += 3;
|
|
break;
|
|
}
|
|
|
|
case ID_CAPABILITIES: {
|
|
if (!check_size(log, it, &size_constraint, 1)) {
|
|
return -1;
|
|
}
|
|
|
|
dest->capabilities.value = it[2];
|
|
dest->capabilities.exists = true;
|
|
it += 3;
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
LOGGER_ERROR(log, "Invalid id byte");
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!dest->request.exists) {
|
|
LOGGER_ERROR(log, "Invalid request field!");
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
static uint8_t *msg_parse_header_out(MSIHeaderID id, uint8_t *dest, const void *value, uint8_t value_len,
|
|
uint16_t *length)
|
|
{
|
|
/* Parse a single header for sending */
|
|
assert(dest != nullptr);
|
|
assert(value != nullptr);
|
|
assert(value_len != 0);
|
|
|
|
*dest = id;
|
|
++dest;
|
|
*dest = value_len;
|
|
++dest;
|
|
|
|
memcpy(dest, value, value_len);
|
|
|
|
*length += 2 + value_len;
|
|
|
|
return dest + value_len; /* Set to next position ready to be written */
|
|
}
|
|
static int send_message(Messenger *m, uint32_t friend_number, const MSIMessage *msg)
|
|
{
|
|
/* Parse and send message */
|
|
assert(m != nullptr);
|
|
|
|
uint8_t parsed [MSI_MAXMSG_SIZE];
|
|
|
|
uint8_t *it = parsed;
|
|
uint16_t size = 0;
|
|
|
|
if (msg->request.exists) {
|
|
uint8_t cast = msg->request.value;
|
|
it = msg_parse_header_out(ID_REQUEST, it, &cast,
|
|
sizeof(cast), &size);
|
|
} else {
|
|
LOGGER_DEBUG(m->log, "Must have request field");
|
|
return -1;
|
|
}
|
|
|
|
if (msg->error.exists) {
|
|
uint8_t cast = msg->error.value;
|
|
it = msg_parse_header_out(ID_ERROR, it, &cast,
|
|
sizeof(cast), &size);
|
|
}
|
|
|
|
if (msg->capabilities.exists) {
|
|
it = msg_parse_header_out(ID_CAPABILITIES, it, &msg->capabilities.value,
|
|
sizeof(msg->capabilities.value), &size);
|
|
}
|
|
|
|
if (it == parsed) {
|
|
LOGGER_WARNING(m->log, "Parsing message failed; empty message");
|
|
return -1;
|
|
}
|
|
|
|
*it = 0;
|
|
++size;
|
|
|
|
if (m_msi_packet(m, friend_number, parsed, size)) {
|
|
LOGGER_DEBUG(m->log, "Sent message");
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
static int send_error(Messenger *m, uint32_t friend_number, MSIError error)
|
|
{
|
|
/* Send error message */
|
|
assert(m != nullptr);
|
|
|
|
LOGGER_DEBUG(m->log, "Sending error: %d to friend: %d", error, friend_number);
|
|
|
|
MSIMessage msg;
|
|
msg_init(&msg, REQU_POP);
|
|
|
|
msg.error.exists = true;
|
|
msg.error.value = error;
|
|
|
|
send_message(m, friend_number, &msg);
|
|
return 0;
|
|
}
|
|
static int invoke_callback_inner(MSICall *call, MSICallbackID id)
|
|
{
|
|
MSISession *session = call->session;
|
|
LOGGER_DEBUG(session->messenger->log, "invoking callback function: %d", id);
|
|
|
|
switch (id) {
|
|
case MSI_ON_INVITE:
|
|
return session->invite_callback(session->av, call);
|
|
|
|
case MSI_ON_START:
|
|
return session->start_callback(session->av, call);
|
|
|
|
case MSI_ON_END:
|
|
return session->end_callback(session->av, call);
|
|
|
|
case MSI_ON_ERROR:
|
|
return session->error_callback(session->av, call);
|
|
|
|
case MSI_ON_PEERTIMEOUT:
|
|
return session->peertimeout_callback(session->av, call);
|
|
|
|
case MSI_ON_CAPABILITIES:
|
|
return session->capabilities_callback(session->av, call);
|
|
}
|
|
|
|
LOGGER_FATAL(session->messenger->log, "invalid callback id: %d", id);
|
|
return -1;
|
|
}
|
|
static bool invoke_callback(MSICall *call, MSICallbackID cb)
|
|
{
|
|
assert(call != nullptr);
|
|
|
|
if (invoke_callback_inner(call, cb) != 0) {
|
|
LOGGER_WARNING(call->session->messenger->log,
|
|
"Callback state handling failed, sending error");
|
|
|
|
/* If no callback present or error happened while handling,
|
|
* an error message will be sent to friend
|
|
*/
|
|
if (call->error == MSI_E_NONE) {
|
|
call->error = MSI_E_HANDLE;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
static MSICall *get_call(MSISession *session, uint32_t friend_number)
|
|
{
|
|
assert(session != nullptr);
|
|
|
|
if (session->calls == nullptr || session->calls_tail < friend_number) {
|
|
return nullptr;
|
|
}
|
|
|
|
return session->calls[friend_number];
|
|
}
|
|
static MSICall *new_call(MSISession *session, uint32_t friend_number)
|
|
{
|
|
assert(session != nullptr);
|
|
|
|
MSICall *rc = (MSICall *)calloc(1, sizeof(MSICall));
|
|
|
|
if (rc == nullptr) {
|
|
return nullptr;
|
|
}
|
|
|
|
rc->session = session;
|
|
rc->friend_number = friend_number;
|
|
|
|
if (session->calls == nullptr) { /* Creating */
|
|
session->calls = (MSICall **)calloc(friend_number + 1, sizeof(MSICall *));
|
|
|
|
if (session->calls == nullptr) {
|
|
free(rc);
|
|
return nullptr;
|
|
}
|
|
|
|
session->calls_tail = friend_number;
|
|
session->calls_head = friend_number;
|
|
} else if (session->calls_tail < friend_number) { /* Appending */
|
|
MSICall **tmp = (MSICall **)realloc(session->calls, sizeof(MSICall *) * (friend_number + 1));
|
|
|
|
if (tmp == nullptr) {
|
|
free(rc);
|
|
return nullptr;
|
|
}
|
|
|
|
session->calls = tmp;
|
|
|
|
/* Set fields in between to null */
|
|
for (uint32_t i = session->calls_tail + 1; i < friend_number; ++i) {
|
|
session->calls[i] = nullptr;
|
|
}
|
|
|
|
rc->prev = session->calls[session->calls_tail];
|
|
session->calls[session->calls_tail]->next = rc;
|
|
|
|
session->calls_tail = friend_number;
|
|
} else if (session->calls_head > friend_number) { /* Inserting at front */
|
|
rc->next = session->calls[session->calls_head];
|
|
session->calls[session->calls_head]->prev = rc;
|
|
session->calls_head = friend_number;
|
|
}
|
|
|
|
session->calls[friend_number] = rc;
|
|
return rc;
|
|
}
|
|
static void kill_call(MSICall *call)
|
|
{
|
|
/* Assume that session mutex is locked */
|
|
if (call == nullptr) {
|
|
return;
|
|
}
|
|
|
|
MSISession *session = call->session;
|
|
|
|
LOGGER_DEBUG(session->messenger->log, "Killing call: %p", (void *)call);
|
|
|
|
MSICall *prev = call->prev;
|
|
MSICall *next = call->next;
|
|
|
|
if (prev != nullptr) {
|
|
prev->next = next;
|
|
} else if (next != nullptr) {
|
|
session->calls_head = next->friend_number;
|
|
} else {
|
|
goto CLEAR_CONTAINER;
|
|
}
|
|
|
|
if (next != nullptr) {
|
|
next->prev = prev;
|
|
} else if (prev != nullptr) {
|
|
session->calls_tail = prev->friend_number;
|
|
} else {
|
|
goto CLEAR_CONTAINER;
|
|
}
|
|
|
|
session->calls[call->friend_number] = nullptr;
|
|
free(call);
|
|
return;
|
|
|
|
CLEAR_CONTAINER:
|
|
session->calls_head = 0;
|
|
session->calls_tail = 0;
|
|
free(session->calls);
|
|
free(call);
|
|
session->calls = nullptr;
|
|
}
|
|
static void on_peer_status(Messenger *m, uint32_t friend_number, uint8_t status, void *data)
|
|
{
|
|
if (status != 0) {
|
|
// Friend is online.
|
|
return;
|
|
}
|
|
|
|
MSISession *session = (MSISession *)data;
|
|
LOGGER_DEBUG(m->log, "Friend %d is now offline", friend_number);
|
|
|
|
pthread_mutex_lock(session->mutex);
|
|
MSICall *call = get_call(session, friend_number);
|
|
|
|
if (call == nullptr) {
|
|
pthread_mutex_unlock(session->mutex);
|
|
return;
|
|
}
|
|
|
|
invoke_callback(call, MSI_ON_PEERTIMEOUT); /* Failure is ignored */
|
|
kill_call(call);
|
|
pthread_mutex_unlock(session->mutex);
|
|
}
|
|
static bool try_handle_init(MSICall *call, const MSIMessage *msg)
|
|
{
|
|
assert(call != nullptr);
|
|
LOGGER_DEBUG(call->session->messenger->log,
|
|
"Session: %p Handling 'init' friend: %d", (void *)call->session, call->friend_number);
|
|
|
|
if (!msg->capabilities.exists) {
|
|
LOGGER_WARNING(call->session->messenger->log, "Session: %p Invalid capabilities on 'init'", (void *)call->session);
|
|
call->error = MSI_E_INVALID_MESSAGE;
|
|
return false;
|
|
}
|
|
|
|
switch (call->state) {
|
|
case MSI_CALL_INACTIVE: {
|
|
/* Call requested */
|
|
call->peer_capabilities = msg->capabilities.value;
|
|
call->state = MSI_CALL_REQUESTED;
|
|
|
|
if (!invoke_callback(call, MSI_ON_INVITE)) {
|
|
return false;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_ACTIVE: {
|
|
/* If peer sent init while the call is already
|
|
* active it's probable that he is trying to
|
|
* re-call us while the call is not terminated
|
|
* on our side. We can assume that in this case
|
|
* we can automatically answer the re-call.
|
|
*/
|
|
|
|
LOGGER_INFO(call->session->messenger->log, "Friend is recalling us");
|
|
|
|
MSIMessage out_msg;
|
|
msg_init(&out_msg, REQU_PUSH);
|
|
|
|
out_msg.capabilities.exists = true;
|
|
out_msg.capabilities.value = call->self_capabilities;
|
|
|
|
send_message(call->session->messenger, call->friend_number, &out_msg);
|
|
|
|
/* If peer changed capabilities during re-call they will
|
|
* be handled accordingly during the next step
|
|
*/
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_REQUESTED: // fall-through
|
|
case MSI_CALL_REQUESTING: {
|
|
LOGGER_WARNING(call->session->messenger->log, "Session: %p Invalid state on 'init'", (void *)call->session);
|
|
call->error = MSI_E_INVALID_STATE;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
static void handle_init(MSICall *call, const MSIMessage *msg)
|
|
{
|
|
assert(call != nullptr);
|
|
LOGGER_DEBUG(call->session->messenger->log,
|
|
"Session: %p Handling 'init' friend: %d", (void *)call->session, call->friend_number);
|
|
|
|
if (!try_handle_init(call, msg)) {
|
|
send_error(call->session->messenger, call->friend_number, call->error);
|
|
kill_call(call);
|
|
}
|
|
}
|
|
static void handle_push(MSICall *call, const MSIMessage *msg)
|
|
{
|
|
assert(call != nullptr);
|
|
|
|
LOGGER_DEBUG(call->session->messenger->log, "Session: %p Handling 'push' friend: %d", (void *)call->session,
|
|
call->friend_number);
|
|
|
|
if (!msg->capabilities.exists) {
|
|
LOGGER_WARNING(call->session->messenger->log, "Session: %p Invalid capabilities on 'push'", (void *)call->session);
|
|
call->error = MSI_E_INVALID_MESSAGE;
|
|
goto FAILURE;
|
|
}
|
|
|
|
switch (call->state) {
|
|
case MSI_CALL_ACTIVE: {
|
|
if (call->peer_capabilities != msg->capabilities.value) {
|
|
/* Only act if capabilities changed */
|
|
LOGGER_INFO(call->session->messenger->log, "Friend is changing capabilities to: %u", msg->capabilities.value);
|
|
|
|
call->peer_capabilities = msg->capabilities.value;
|
|
|
|
if (!invoke_callback(call, MSI_ON_CAPABILITIES)) {
|
|
goto FAILURE;
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_REQUESTING: {
|
|
LOGGER_INFO(call->session->messenger->log, "Friend answered our call");
|
|
|
|
/* Call started */
|
|
call->peer_capabilities = msg->capabilities.value;
|
|
call->state = MSI_CALL_ACTIVE;
|
|
|
|
if (!invoke_callback(call, MSI_ON_START)) {
|
|
goto FAILURE;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_INACTIVE: // fall-through
|
|
case MSI_CALL_REQUESTED: {
|
|
/* Pushes during initialization state are ignored */
|
|
LOGGER_WARNING(call->session->messenger->log, "Ignoring invalid push");
|
|
break;
|
|
}
|
|
}
|
|
|
|
return;
|
|
|
|
FAILURE:
|
|
send_error(call->session->messenger, call->friend_number, call->error);
|
|
kill_call(call);
|
|
}
|
|
static void handle_pop(MSICall *call, const MSIMessage *msg)
|
|
{
|
|
assert(call != nullptr);
|
|
|
|
LOGGER_DEBUG(call->session->messenger->log, "Session: %p Handling 'pop', friend id: %d", (void *)call->session,
|
|
call->friend_number);
|
|
|
|
/* callback errors are ignored */
|
|
|
|
if (msg->error.exists) {
|
|
LOGGER_WARNING(call->session->messenger->log, "Friend detected an error: %d", msg->error.value);
|
|
call->error = msg->error.value;
|
|
invoke_callback(call, MSI_ON_ERROR);
|
|
} else {
|
|
switch (call->state) {
|
|
case MSI_CALL_INACTIVE: {
|
|
LOGGER_FATAL(call->session->messenger->log, "Handling what should be impossible case");
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_ACTIVE: {
|
|
/* Hangup */
|
|
LOGGER_INFO(call->session->messenger->log, "Friend hung up on us");
|
|
invoke_callback(call, MSI_ON_END);
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_REQUESTING: {
|
|
/* Reject */
|
|
LOGGER_INFO(call->session->messenger->log, "Friend rejected our call");
|
|
invoke_callback(call, MSI_ON_END);
|
|
break;
|
|
}
|
|
|
|
case MSI_CALL_REQUESTED: {
|
|
/* Cancel */
|
|
LOGGER_INFO(call->session->messenger->log, "Friend canceled call invite");
|
|
invoke_callback(call, MSI_ON_END);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
kill_call(call);
|
|
}
|
|
static void handle_msi_packet(Messenger *m, uint32_t friend_number, const uint8_t *data, uint16_t length, void *object)
|
|
{
|
|
LOGGER_DEBUG(m->log, "Got msi message");
|
|
|
|
MSISession *session = (MSISession *)object;
|
|
MSIMessage msg;
|
|
|
|
if (msg_parse_in(m->log, &msg, data, length) == -1) {
|
|
LOGGER_WARNING(m->log, "Error parsing message");
|
|
send_error(m, friend_number, MSI_E_INVALID_MESSAGE);
|
|
return;
|
|
}
|
|
|
|
LOGGER_DEBUG(m->log, "Successfully parsed message");
|
|
|
|
pthread_mutex_lock(session->mutex);
|
|
MSICall *call = get_call(session, friend_number);
|
|
|
|
if (call == nullptr) {
|
|
if (msg.request.value != REQU_INIT) {
|
|
send_error(m, friend_number, MSI_E_STRAY_MESSAGE);
|
|
pthread_mutex_unlock(session->mutex);
|
|
return;
|
|
}
|
|
|
|
call = new_call(session, friend_number);
|
|
|
|
if (call == nullptr) {
|
|
send_error(m, friend_number, MSI_E_SYSTEM);
|
|
pthread_mutex_unlock(session->mutex);
|
|
return;
|
|
}
|
|
}
|
|
|
|
switch (msg.request.value) {
|
|
case REQU_INIT: {
|
|
handle_init(call, &msg);
|
|
break;
|
|
}
|
|
|
|
case REQU_PUSH: {
|
|
handle_push(call, &msg);
|
|
break;
|
|
}
|
|
|
|
case REQU_POP: {
|
|
handle_pop(call, &msg); /* always kills the call */
|
|
break;
|
|
}
|
|
}
|
|
|
|
pthread_mutex_unlock(session->mutex);
|
|
}
|