summaryrefslogtreecommitdiffstats
path: root/tinySIGCOMP/src/tcomp_message.c
blob: 2048c3f3312bbdd1a28d56625fbf1c854d30fb55 (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/*
* Copyright (C) 2010-2011 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO 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 3 of the License, or
* (at your option) any later version.
*
* DOUBANGO 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 DOUBANGO.
*
*/

/**@file tcomp_message.c
 * @brief  SIGCOMP message as per RFC 3320 subclause 7.
 * A message sent from the compressor dispatcher to the decompressordispatcher.  In case of a message-based transport such as UDP, a
 * SigComp message corresponds to exactly one datagram.  For a stream-based transport such as TCP, the SigComp messages are
 * separated by reserved delimiters.
 *
 * @author Mamadou Diop <diopmamadou(at)yahoo.fr>
 *

 */
#include "tcomp_message.h"
#include "tcomp_nack_codes.h"

#include "tsk_memory.h"
#include "tsk_debug.h"
#include "tsk_binaryutils.h"
#include "tsk_sha1.h"

#include <string.h>

#define MIN_LEN 2
#define HEADER_GET_LEN(message)		(message->headerSigComp & 0x03)
#define HEADER_GET_T(message)		(message->headerSigComp & 0x04)
#define HEADER_IS_VALID(message)	(message->headerSigComp >= 0xf8)

#define HEADER_GET_DEST_VALUE(destination) ( sigcomp_encoding_destination[destination] )
#define HEADER_GET_STATE_LENGTH(length) ( sigcomp_encoding_partial_id_length[length] )

static void initFeedbackItem(tcomp_message_t *message, uint8_t** start_ptr);
static void initStateId(tcomp_message_t *message, uint8_t** start_ptr, uint8_t state_len);
static void initStateful(tcomp_message_t *message, uint8_t** start_ptr, uint8_t* end_ptr);
static void initStateless(tcomp_message_t *message, uint8_t** start_ptr, uint8_t* end_ptr, int32_t *nack_code);
static void initNack(tcomp_message_t *message, uint8_t** start_ptr, uint8_t* end_ptr, int32_t* nack_code);

/*
Creates new SigComp message.
*/
tcomp_message_t* tcomp_message_create(const void* input_ptr, tsk_size_t input_size, tsk_bool_t stream, int32_t* nack_code)
{
    tcomp_message_t *message;

    if(!nack_code) {
        TSK_DEBUG_ERROR("Invalid parameter");
        return tsk_null;
    }

    if(!input_ptr) {
        TSK_DEBUG_ERROR("Invalid parameter");
        *nack_code = NACK_INTERNAL_ERROR;
        return tsk_null;
    }

    if(input_size < MIN_LEN) {
        TSK_DEBUG_ERROR("MESSAGE_TOO_SHORT");
        *nack_code = NACK_MESSAGE_TOO_SHORT;
        return tsk_null;
    }

    if((message = tsk_object_new(tcomp_message_def_t))) {
        uint8_t *dummy_ptr, *end_ptr;
        uint8_t state_len;

        message->startPtr = input_ptr;
        message->stateId = tcomp_buffer_create_null();
        message->remaining_sigcomp_buffer = tcomp_buffer_create_null();
        message->uploaded_UDVM_buffer = tcomp_buffer_create_null();
        message->ret_feedback_buffer= tcomp_buffer_create_null();

        message->isNack = 0;
        dummy_ptr = ((uint8_t*)input_ptr);
        end_ptr = (dummy_ptr + input_size);

        //
        message->totalSize = input_size;
        message->stream_based = stream;
        message->bytecodes_destination = 0;

        /* Get sigcomp header */
        message->headerSigComp = *dummy_ptr;
        dummy_ptr++;

        /* Check message validity --> magic code (11111)? */
        message->isOK = HEADER_IS_VALID(message);
        if(!message->isOK) {
            TSK_DEBUG_ERROR("SigComp Message not valid (magic code mismatch)");
            *nack_code = NACK_INTERNAL_ERROR;
            goto bail;
        }

        /* Feedback item */
        if((HEADER_GET_T(message)!=0)) {
            initFeedbackItem(message, &dummy_ptr);
            if(!message->isOK) {
                goto bail;
            }
        }

        /*
        * If the len field is non-zero, then the SigComp message contains a state identifier
        * to access a state item at the receiving endpoint.
        */
        state_len = HEADER_GET_STATE_LENGTH( HEADER_GET_LEN(message) );
        if(state_len) {
            initStateId(message, &dummy_ptr, state_len);
            initStateful(message, &dummy_ptr, end_ptr);
            TSK_DEBUG_INFO("SigComp - Decompressing stateful message with state id =");
            tcomp_buffer_print(message->stateId);
        }
        else {
            if( !*dummy_ptr && !(*(dummy_ptr+1)&0xf0) ) {
                // "code_len" field of zero --> it's a nack
                initNack(message, &dummy_ptr, end_ptr, nack_code);
            }
            else {
                initStateless(message, &dummy_ptr, end_ptr, nack_code);
            }
        }

        /*
        * The fields (RFC 3320 section 7) except for the "remaining SigComp message" are referred to
        * as the "SigComp header" (note that this may include the uploaded UDVM bytecode).
        */
        if(message->isOK) {
            message->header_size = ( message->totalSize - tcomp_buffer_getSize(message->remaining_sigcomp_buffer));
        }
    }
    else {
        TSK_DEBUG_ERROR("Failed to create new SigComp message");
    }

bail:
    if(message && !message->isOK) {
        TSK_OBJECT_SAFE_FREE(message);
    }

    return message;
}

/*
Iniatizes the feedback item field.
*/
static void initFeedbackItem(tcomp_message_t *message, uint8_t** start_ptr)
{
    /*
     0   1   2   3   4   5   6   7       0   1   2   3   4   5   6   7
    +---+---+---+---+---+---+---+---+   +---+---+---+---+---+---+---+---+
    | 0 |  returned_feedback_field  |   | 1 | returned_feedback_length  |
    +---+---+---+---+---+---+---+---+   +---+---+---+---+---+---+---+---+
                                       |                               |
                                       :    returned_feedback_field    :
                                       |                               |
                                       +---+---+---+---+---+---+---+---+
    */
    if((**start_ptr) <= 128) {
        tcomp_buffer_referenceBuff(message->ret_feedback_buffer, *start_ptr, 1);
        (void)(*start_ptr++);
    }
    else {
        tcomp_buffer_referenceBuff(message->ret_feedback_buffer, *start_ptr, 1+(**start_ptr&0x7f));
        *start_ptr += tcomp_buffer_getSize(message->ret_feedback_buffer);
    }
}

/*
Initializes the state identifier field.
*/
static void initStateId(tcomp_message_t *message, uint8_t** start_ptr, uint8_t state_len)
{
    tcomp_buffer_referenceBuff(message->stateId, *start_ptr, state_len);
    *start_ptr += state_len;
}

/*
Initializes a stateful SigComp message.
*/
static void initStateful(tcomp_message_t *message, uint8_t** start_ptr, uint8_t* end_ptr)
{
    /*
    +---+---+---+---+---+---+---+---+
    |                               |
    :   partial state identifier    :
    |                               |
    +---+---+---+---+---+---+---+---+
    |                               |
    :   remaining SigComp message   :
    |                               |
    +---+---+---+---+---+---+---+---+
    */
    message->isOK &= (*start_ptr<=end_ptr);
    if(message->isOK) {
        tcomp_buffer_referenceBuff(message->remaining_sigcomp_buffer, *start_ptr,
                                   ((end_ptr-*start_ptr)));
    }
}

/*
Initializes a stateless SigComp message.
*/
static void initStateless(tcomp_message_t *message, uint8_t** start_ptr, uint8_t* end_ptr, int32_t *nack_code)
{
    int has_bytecode = (HEADER_GET_LEN(message) == 0); // No state ==> message contains udvm bytecode
    message->isOK &= has_bytecode;
    if(!message->isOK) {
        return;
    }

    /*
    +---+---+---+---+---+---+---+---+
    |           code_len            |
    +---+---+---+---+---+---+---+---+
    |   code_len    |  destination  |
    +---+---+---+---+---+---+---+---+
    |                               |
    :    uploaded UDVM bytecode     :
    |                               |
    +---+---+---+---+---+---+---+---+
    |                               |
    :   remaining SigComp message   :
    |                               |
    +---+---+---+---+---+---+---+---+
    */
    {
        uint32_t code_len1, bytecodes_len;
        uint8_t code_len2, destination, *bytecodes_uploaded_udvm, *remaining_SigComp_message;

        uint8_t* dummy_ptr = ((uint8_t*)*start_ptr);

        /* Code_len --> 12bits [8+4] */
        code_len1 = *dummy_ptr;
        dummy_ptr++; /* skip first code_len 8bits */
        code_len2 = (*dummy_ptr) & 0xf0; /* code_len 4 remaining bits */
        destination = (*dummy_ptr) & 0x0f; /* 4bits after code_len */
        dummy_ptr++; /* skip code_len 4bits + destination 4bits ==> 1-byte */

        /* Get bytecodes length (12bits) */
        bytecodes_len = ( (code_len1<<4)|(code_len2>>4) );

        /* Starting memory address (code destination address). In UDVM. */
        message->bytecodes_destination = HEADER_GET_DEST_VALUE(destination);
        if((message->bytecodes_destination < 128) || (message->bytecodes_destination > 1024)) {
            TSK_DEBUG_ERROR("INVALID_CODE_LOCATION");
            *nack_code = NACK_INVALID_CODE_LOCATION;
            message->isOK = 0;
            return;
        }

        /* Uploaded UDVM pointer */
        bytecodes_uploaded_udvm = dummy_ptr; /* SigComp header, feedback_item, code_len and destination have been skipped */

        /* Skip uploaded udvm */
        dummy_ptr += bytecodes_len;

        /* remaining SigComp message */
        remaining_SigComp_message = dummy_ptr;

        /* check that remaining sigcomp message is valide */
        if( !(message->isOK &= (remaining_SigComp_message <= end_ptr )) ) {
            TSK_DEBUG_ERROR("MESSAGE_TOO_SHORT");
            *nack_code = NACK_MESSAGE_TOO_SHORT;
            return;
        }

        //
        // Setting buffers
        //
        tcomp_buffer_referenceBuff(message->uploaded_UDVM_buffer, bytecodes_uploaded_udvm, bytecodes_len);
        tcomp_buffer_referenceBuff(message->remaining_sigcomp_buffer, remaining_SigComp_message, ((end_ptr-remaining_SigComp_message)));
    }
}

/*
Initializes a NACK message as per RFC 4077.
*/
static void initNack(tcomp_message_t *message, uint8_t** start_ptr, uint8_t* end_ptr, int32_t* nack_code)
{
    /*
    +---+---+---+---+---+---+---+---+
    |         code_len = 0          |
    +---+---+---+---+---+---+---+---+
    | code_len = 0  |  version = 1  |
    +---+---+---+---+---+---+---+---+
    |          Reason Code          |
    +---+---+---+---+---+---+---+---+
    |  OPCODE of failed instruction |
    +---+---+---+---+---+---+---+---+
    |   PC of failed instruction    |
    |                               |
    +---+---+---+---+---+---+---+---+
    |                               |
    : SHA-1 Hash of failed message  :
    |                               |
    +---+---+---+---+---+---+---+---+
    |                               |
    :         Error Details         :
    |                               |
    +---+---+---+---+---+---+---+---+*/

    uint8_t* dummy_ptr;
    message->isNack = 1;
    if( (end_ptr - *start_ptr)<25 ) {
        *nack_code = NACK_MESSAGE_TOO_SHORT;
        TSK_DEBUG_ERROR("MESSAGE_TOO_SHORT");
        message->isOK = 0;
        return;
    }

    dummy_ptr = ((uint8_t*)*start_ptr);
    dummy_ptr++; /* skip first code_len byte */
    if(!(message->isOK = (*dummy_ptr++ == NACK_VERSION))) {
        return;
    }

    if(!message->nack_info) {
        message->nack_info = tcomp_nackinfo_create();
    }

    message->nack_info->reasonCode = *dummy_ptr++;
    message->nack_info->opcode = *dummy_ptr++;
    message->nack_info->pc = TSK_BINARY_GET_2BYTES(dummy_ptr);
    dummy_ptr+=2;
    memcpy(message->nack_info->sha1, dummy_ptr, TSK_SHA1_DIGEST_SIZE);
    dummy_ptr += TSK_SHA1_DIGEST_SIZE;
    if(dummy_ptr < end_ptr) {
        /* Has error details */
        tcomp_buffer_appendBuff(message->nack_info->details, dummy_ptr, (end_ptr-dummy_ptr));
    }
}





//========================================================
//	SigComp message object definition
//

static tsk_object_t* tcomp_message_ctor(tsk_object_t *self, va_list * app)
{
    tcomp_message_t *message = self;

    if(message) {
    }

    return self;
}

static tsk_object_t* tcomp_message_dtor(tsk_object_t *self)
{
    tcomp_message_t *message = self;

    if(message) {
        TSK_OBJECT_SAFE_FREE(message->stateId);
        TSK_OBJECT_SAFE_FREE(message->remaining_sigcomp_buffer);
        TSK_OBJECT_SAFE_FREE(message->uploaded_UDVM_buffer);
        TSK_OBJECT_SAFE_FREE(message->ret_feedback_buffer);
        TSK_OBJECT_SAFE_FREE(message->nack_info);
    }
    else {
        TSK_DEBUG_WARN("NULL SigComp message.");
    }

    return self;
}

static const tsk_object_def_t tcomp_message_def_s = {
    sizeof(tcomp_message_t),
    tcomp_message_ctor,
    tcomp_message_dtor,
    tsk_null
};
const tsk_object_def_t* tcomp_message_def_t = &tcomp_message_def_s;
OpenPOWER on IntegriCloud