summaryrefslogtreecommitdiff
path: root/toxmsi/toxmsi_header.c
blob: 448ebc7f9d508461e607b305df0b5d0626668e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */

#include "toxmsi_message.h"
#include <string.h>
#include "../toxrtp/toxrtp_helper.h"
#include <assert.h>
#include "../toxcore/Lossless_UDP.h"

#define ALLOC_ADD_DATA(_tempval, _hdrlist, _fielddef, _msgvar, _alloctype)    \
_tempval = msi_search_field(_hdrlist, (const uint8_t*)_fielddef);       \
if ( _tempval ){                             \
    _msgvar = calloc(sizeof(_alloctype), 1); \
    assert(_msgvar);                         \
    _msgvar->_header_value = _tempval;       \
}

uint8_t* msi_search_field ( msi_header_t* _list, const uint8_t* _field )
{
    assert(_list);
    assert(_field);

    msi_header_t* _iterator;

    for ( _iterator = _list;
          _iterator && strcmp((const char*)_iterator->_header_field, (const char*)_field) != 0;
          _iterator = _iterator->next );

    if ( _iterator ){
        return t_strallcpy(_iterator->_header_value);
    } else return NULL;
}

int msi_parse_headers ( msi_msg_t* _msg )
{
    assert(_msg);

    if ( !_msg->_headers )
        return FAILURE;

    msi_header_t* _list = _msg->_headers;
    uint8_t* _field_current;

    ALLOC_ADD_DATA(_field_current, _list, _CALL_ID_FIELD, _msg->_call_id, msi_header_call_id_t)
    ALLOC_ADD_DATA(_field_current, _list, _VERSION_FIELD, _msg->_version, msi_header_version_t)
    ALLOC_ADD_DATA(_field_current, _list, _REQUEST_FIELD, _msg->_request, msi_header_request_t)
    ALLOC_ADD_DATA(_field_current, _list, _RESPONSE_FIELD, _msg->_response, msi_header_response_t)
    ALLOC_ADD_DATA(_field_current, _list, _FRIENDID_FIELD, _msg->_friend_id, msi_header_friendid_t)
    ALLOC_ADD_DATA(_field_current, _list, _CALLTYPE_FIELD, _msg->_call_type, msi_header_call_type_t)
    ALLOC_ADD_DATA(_field_current, _list, _USERAGENT_FIELD, _msg->_user_agent, msi_header_user_agent_t)
    ALLOC_ADD_DATA(_field_current, _list, _INFO_FIELD, _msg->_info, msi_header_info_t)
    ALLOC_ADD_DATA(_field_current, _list, _REASON_FIELD, _msg->_reason, msi_header_reason_t)

    /* Since we don't need the raw header anymore remove it */
    msi_header_t* _temp;
    while ( _list ){
        _temp = _list->next;
        free(_list->_header_field);
        free(_list->_header_value);
        free(_list);
        _list = _temp;
    }

    _msg->_headers = NULL;

    return SUCCESS;
}

/*
 * If you find better way of parsing values let me know
 */
msi_header_t* msi_add_new_header ( uint8_t* _value )
{
    if ( !_value )
        return NULL;

    size_t _length = t_memlen(_value);

    if ( !_length ) {
        return NULL;
    }

    size_t _first_len = t_strfind(_value, (const uint8_t*)" ");
    if ( !_first_len ){
        return NULL;
    }

    size_t _second_len = (_length - _first_len);
    if ( !_second_len ){
        return NULL;
    }


    uint8_t* _identifier = calloc(sizeof (uint8_t), (_first_len + 1) );
    uint8_t* _data = calloc(sizeof (uint8_t), (_second_len + 1) );

    assert(_identifier);
    assert(_data);


    uint8_t* _p_it = _value;
    size_t _num_it;

    for ( _num_it = 0; *_p_it != ' '; _num_it++ ){
        _identifier[_num_it] = *_p_it;
        ++_p_it;
    }
    _identifier[_num_it] = '\0';
    ++_p_it;


    for ( _num_it = 0; *_p_it != '\r'; _num_it++ ){
        _data[_num_it] = *_p_it;
        ++_p_it;
    }
    _data[_num_it] = '\r';
    _data[_num_it + 1] = '\0';

    msi_header_t* _retu = calloc(sizeof(msi_header_t), 1);
    assert(_retu);

    _retu->_header_field = _identifier;
    _retu->_header_value = _data;

    _retu->next = NULL;

    return _retu;
}

msi_header_t* msi_parse_raw_data ( const uint8_t* _data )
{
    assert(_data);

    uint8_t* _header_string;

    _header_string = (uint8_t*) strtok ((char*)_data, _RAW_TERMINATOR);

    msi_header_t* _head = msi_add_new_header(_header_string);
    msi_header_t* _it = _head;

    while ( _header_string && _it ){

        _header_string = (uint8_t*) strtok (NULL, _RAW_TERMINATOR);
        _it->next = msi_add_new_header(_header_string);
        if ( _it->next ){
            _it = _it->next;
        }
    }

    /* Iterate through list and remove all fault headers if any */

    msi_header_t* _tmp = _it;

    for ( _it = _head; _it; _it = _it->next ){

        if ( !_it->_header_value || !_it->_header_field ) {
            _tmp ->next = _it->next;

            if ( _it->_header_field )
                free(_it->_header_field);
            if ( _it->_header_value )
                free(_it->_header_value);

            if ( _it == _head ){
                _head = _head->next;
            }

            free(_it);
            _it = _tmp;
        } else
            _tmp = _it;

    }

    return _head;
}