summaryrefslogtreecommitdiffstats
path: root/tinySIGCOMP/src/tcomp_udvm.bytecopy.c
blob: edc1c5661f4c51ccf4a4462fe639a347d8fe7ba4 (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
/*
* 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_udvm.nack.c
 * @brief  SigComp UDVM machine (byte copying).
 *
 * @author Mamadou Diop <diopmamadou(at)yahoo.fr>
 *

 */
#include "tcomp_udvm.h"

#include "tsk_debug.h"


#define TCOMP_UDVM_MEMORY_REGISTERS_PTR TCOMP_UDVM_GET_BUFFER_AT(UDVM_REGISTERS_START)


/**RFC3320-Setction_8.4.  Byte copying
From UDVM to UDVM
*/
tsk_bool_t tcomp_udvm_bytecopy_self(tcomp_udvm_t *udvm, uint32_t *destination, uint32_t source, uint32_t tsk_size_tocopy)
{
    uint32_t byte_copy_left, byte_copy_right;
    uint8_t* destination_ptr;

    //if (*destination == TCOMP_UDVM_GET_SIZE() || source == TCOMP_UDVM_GET_SIZE())
    if (*destination >= TCOMP_UDVM_GET_SIZE() || source >= TCOMP_UDVM_GET_SIZE()) {
        /* SEGFAULT */
        tcomp_udvm_createNackInfo2(udvm, NACK_SEGFAULT);
        return tsk_false;
    }

    /*
    * The string of bytes is copied in ascending order of memory address,
    * respecting the bounds set by byte_copy_left and byte_copy_right.
    */
    byte_copy_left = TCOMP_UDVM_GET_2BYTES_VAL(TCOMP_UDVM_HEADER_BYTE_COPY_LEFT_INDEX);
    byte_copy_right = TCOMP_UDVM_GET_2BYTES_VAL(TCOMP_UDVM_HEADER_BYTE_COPY_RIGHT_INDEX);

    // string of bytes is copied one byte at a time
    while((tsk_size_tocopy--)) {
        if(!(destination_ptr = TCOMP_UDVM_GET_BUFFER_AT((*destination)++))) {
            tcomp_udvm_createNackInfo2(udvm, NACK_SEGFAULT);
            return tsk_false;
        }
        *destination_ptr = *TCOMP_UDVM_GET_BUFFER_AT(source++);
        *destination = (*destination == byte_copy_right)? byte_copy_left : *destination;
        source = (source == byte_copy_right)? byte_copy_left : source;
    }

    return tsk_true;
}

/**RFC3320-Setction_8.4.  Byte copying
From EXTERNAL to UDVM
*/
tsk_bool_t tcomp_udvm_bytecopy_to(tcomp_udvm_t *udvm, uint32_t destination, const uint8_t* source, uint32_t tsk_size_tocopy)
{
    uint32_t byte_copy_left, byte_copy_right;
    uint8_t* destination_ptr;

    if(destination == TCOMP_UDVM_GET_SIZE()) {
        /* SEGFAULT */
        tcomp_udvm_createNackInfo2(udvm, NACK_SEGFAULT);
        return tsk_false;
    }

    /*
    * The string of bytes is copied in ascending order of memory address,
    * respecting the bounds set by byte_copy_left and byte_copy_right.
    */
    byte_copy_left = TCOMP_UDVM_GET_2BYTES_VAL(TCOMP_UDVM_HEADER_BYTE_COPY_LEFT_INDEX);
    byte_copy_right = TCOMP_UDVM_GET_2BYTES_VAL(TCOMP_UDVM_HEADER_BYTE_COPY_RIGHT_INDEX);

    // string of bytes is copied one byte at a time
    while((tsk_size_tocopy--)) {
        if(!(destination_ptr = TCOMP_UDVM_GET_BUFFER_AT(destination++))) {
            tcomp_udvm_createNackInfo2(udvm, NACK_SEGFAULT);
            return tsk_false;
        }
        *destination_ptr = *(source++);
        destination = (destination == byte_copy_right)? byte_copy_left : destination;
    }

    return tsk_true;
}

/**RFC3320-Setction_8.4.  Byte copying
From UDVM to EXTERNAL
*/
tsk_bool_t tcomp_udvm_bytecopy_from(tcomp_udvm_t *udvm, uint8_t* destination, uint32_t source, uint32_t tsk_size_tocopy)
{
    uint32_t byte_copy_left, byte_copy_right;
    uint8_t* source_ptr;

    if(source >= TCOMP_UDVM_GET_SIZE()) {
        TSK_DEBUG_ERROR("SEGFAULT");
        tcomp_udvm_createNackInfo2(udvm, NACK_SEGFAULT);
        return tsk_false;
    }

    /*
    * The string of bytes is copied in ascending order of memory address,
    * respecting the bounds set by byte_copy_left and byte_copy_right.
    */
    byte_copy_left = TCOMP_UDVM_GET_2BYTES_VAL(TCOMP_UDVM_HEADER_BYTE_COPY_LEFT_INDEX);
    byte_copy_right = TCOMP_UDVM_GET_2BYTES_VAL(TCOMP_UDVM_HEADER_BYTE_COPY_RIGHT_INDEX);


    // string of bytes is copied one byte at a time
    while((tsk_size_tocopy--)) {
        if(!(source_ptr = TCOMP_UDVM_GET_BUFFER_AT(source++))) {
            tcomp_udvm_createNackInfo2(udvm, NACK_SEGFAULT);
            return tsk_false;
        }
        *(destination++) = *source_ptr;
        source = (source == byte_copy_right)? byte_copy_left : source;
    }

    return tsk_true;
}
OpenPOWER on IntegriCloud