1
1
diff --git a/source/core_json.c b/source/core_json.c
2
- index 901b2e1..8bdd89c 100644
2
+ index d8694f0..761c44b 100644
3
3
--- a/source/core_json.c
4
4
+++ b/source/core_json.c
5
- @@ -62 ,6 +62 ,21 @@ typedef union
6
- #define isSquareOpen_ ( x ) ( ( x ) == '[ ' )
7
- #define isSquareClose_ ( x ) ( ( x ) == '] ' )
8
-
5
+ @@ -63 ,6 +63 ,21 @@ typedef union
6
+ #define isCurlyOpen_ ( x ) ( ( x ) == '{ ' )
7
+ #define isCurlyClose_ ( x ) ( ( x ) == '} ' )
8
+
9
9
+ /**
10
10
+ * Renaming all loop-contract clauses from CBMC for readability.
11
11
+ * For more information about loop contracts in CBMC, see
12
12
+ * https://diffblue.github.io/cbmc/contracts-user.html.
13
13
+ */
14
14
+ #ifdef CBMC
15
- + #define loopInvariant(...) __CPROVER_loop_invariant(__VA_ARGS__)
16
- + #define decreases(...) __CPROVER_decreases(__VA_ARGS__)
17
- + #define assigns(...) __CPROVER_assigns(__VA_ARGS__)
15
+ + #define loopInvariant(...) __CPROVER_loop_invariant(__VA_ARGS__)
16
+ + #define decreases(...) __CPROVER_decreases(__VA_ARGS__)
17
+ + #define assigns(...) __CPROVER_assigns(__VA_ARGS__)
18
18
+ #else
19
- + #define loopInvariant(...)
20
- + #define decreases(...)
21
- + #define assigns(...)
19
+ + #define loopInvariant(...)
20
+ + #define decreases(...)
21
+ + #define assigns(...)
22
22
+ #endif
23
23
+
24
24
/**
25
25
* @brief Advance buffer index beyond whitespace.
26
26
*
27
- @@ -78 ,6 +93 ,9 @@ static void skipSpace( const char * buf,
27
+ @@ -79 ,6 +94 ,9 @@ static void skipSpace( const char * buf,
28
28
coreJSON_ASSERT( ( buf != NULL ) && ( start != NULL ) && ( max > 0U ) );
29
-
29
+
30
30
for( i = *start; i < max; i++ )
31
31
+ assigns( i )
32
32
+ loopInvariant( *start <= i && i <= max )
33
33
+ decreases( max - i )
34
34
{
35
35
if( !isspace_( buf[ i ] ) )
36
36
{
37
- @@ -102 ,6 +120 ,13 @@ static size_t countHighBits( uint8_t c )
37
+ @@ -103 ,6 +121 ,13 @@ static size_t countHighBits( uint8_t c )
38
38
size_t i = 0;
39
-
39
+
40
40
while( ( n & 0x80U ) != 0U )
41
41
+ assigns( i, n )
42
42
+ loopInvariant (
@@ -48,7 +48,7 @@ index 901b2e1..8bdd89c 100644
48
48
{
49
49
i++;
50
50
n = ( n & 0x7FU ) << 1U;
51
- @@ -210 ,6 +235 ,13 @@ static bool skipUTF8MultiByte( const char * buf,
51
+ @@ -211 ,6 +236 ,13 @@ static bool skipUTF8MultiByte( const char * buf,
52
52
/* The bit count is 1 greater than the number of bytes,
53
53
* e.g., when j is 2, we skip one more byte. */
54
54
for( j = bitCount - 1U; j > 0U; j-- )
@@ -61,8 +61,8 @@ index 901b2e1..8bdd89c 100644
61
61
+ decreases( j )
62
62
{
63
63
i++;
64
-
65
- @@ -345 ,6 +377 ,12 @@ static bool skipOneHexEscape( const char * buf,
64
+
65
+ @@ -346 ,6 +378 ,12 @@ static bool skipOneHexEscape( const char * buf,
66
66
if( ( end < max ) && ( buf[ i ] == '\\' ) && ( buf[ i + 1U ] == 'u' ) )
67
67
{
68
68
for( i += 2U; i < end; i++ )
@@ -74,58 +74,50 @@ index 901b2e1..8bdd89c 100644
74
74
+ decreases( end - i )
75
75
{
76
76
uint8_t n = hexToInt( buf[ i ] );
77
-
78
- @@ -522 ,6 +560 ,9 @@ static bool skipString( const char * buf,
77
+
78
+ @@ -523 ,6 +561 ,9 @@ static bool skipString( const char * buf,
79
79
i++;
80
-
80
+
81
81
while( i < max )
82
82
+ assigns( i )
83
83
+ loopInvariant( *start + 1U <= i && i <= max )
84
84
+ decreases( max - i )
85
85
{
86
86
if( buf[ i ] == '"' )
87
87
{
88
- @@ -580 ,6 +621 ,9 @@ static bool strnEq( const char * a,
88
+ @@ -581 ,6 +622 ,9 @@ static bool strnEq( const char * a,
89
89
coreJSON_ASSERT( ( a != NULL ) && ( b != NULL ) );
90
-
90
+
91
91
for( i = 0; i < n; i++ )
92
92
+ assigns( i )
93
93
+ loopInvariant( i <= n )
94
94
+ decreases( n - i )
95
95
{
96
96
if( a[ i ] != b[ i ] )
97
97
{
98
- @@ -681,6 +725,7 @@ static bool skipAnyLiteral( const char * buf,
99
- * false otherwise.
100
- */
101
- #define MAX_FACTOR ( MAX_INDEX_VALUE / 10 )
102
- +
103
- static bool skipDigits( const char * buf,
104
- size_t * start,
105
- size_t max,
106
- @@ -695,6 +740,9 @@ static bool skipDigits( const char * buf,
98
+ @@ -696,6 +740,9 @@ static bool skipDigits( const char * buf,
107
99
saveStart = *start;
108
-
100
+
109
101
for( i = *start; i < max; i++ )
110
102
+ assigns( value, i )
111
103
+ loopInvariant( *start <= i && i <= max )
112
104
+ decreases( max - i )
113
105
{
114
106
if( !isdigit_( buf[ i ] ) )
115
107
{
116
- @@ -944 ,6 +992,9 @@ static void skipArrayScalars( const char * buf,
108
+ @@ -945 ,6 +992,9 @@ static void skipArrayScalars( const char * buf,
117
109
i = *start;
118
-
110
+
119
111
while( i < max )
120
112
+ assigns( i )
121
113
+ loopInvariant( *start <= i && i <= max )
122
114
+ decreases( max - i )
123
115
{
124
116
if( skipAnyScalar( buf, &i, max ) != true )
125
117
{
126
- @@ -986 ,6 +1037 ,13 @@ static bool skipObjectScalars( const char * buf,
118
+ @@ -991 ,6 +1041 ,13 @@ static bool skipObjectScalars( const char * buf,
127
119
i = *start;
128
-
120
+
129
121
while( i < max )
130
122
+ assigns( i, *start, comma )
131
123
+ loopInvariant(
@@ -137,9 +129,9 @@ index 901b2e1..8bdd89c 100644
137
129
{
138
130
if( skipString( buf, &i, max ) != true )
139
131
{
140
- @@ -1082 ,6 +1140 ,14 @@ static JSONStatus_t skipCollection( const char * buf,
132
+ @@ -1118 ,6 +1175 ,14 @@ static JSONStatus_t skipCollection( const char * buf,
141
133
i = *start;
142
-
134
+
143
135
while( i < max )
144
136
+ assigns( i, depth, c, __CPROVER_object_whole( stack ), ret )
145
137
+ loopInvariant(
@@ -152,27 +144,27 @@ index 901b2e1..8bdd89c 100644
152
144
{
153
145
c = buf[ i ];
154
146
i++;
155
- @@ -1363 ,6 +1429 ,9 @@ static bool objectSearch( const char * buf,
147
+ @@ -1407 ,6 +1472 ,9 @@ static bool objectSearch( const char * buf,
156
148
skipSpace( buf, &i, max );
157
-
149
+
158
150
while( i < max )
159
151
+ assigns( i, key, keyLength, value, valueLength )
160
152
+ loopInvariant( __CPROVER_loop_entry( i ) <= i && i <= max )
161
153
+ decreases( max - i )
162
154
{
163
155
if( nextKeyValuePair( buf, &i, max, &key, &keyLength,
164
156
&value, &valueLength ) != true )
165
- @@ -1430 ,6 +1499 ,9 @@ static bool arraySearch( const char * buf,
157
+ @@ -1474 ,6 +1542 ,9 @@ static bool arraySearch( const char * buf,
166
158
skipSpace( buf, &i, max );
167
-
159
+
168
160
while( i < max )
169
161
+ assigns( i, currentIndex, value, valueLength )
170
162
+ loopInvariant( __CPROVER_loop_entry( i ) <= i && i <= max && currentIndex < i )
171
163
+ decreases( max - i )
172
164
{
173
165
if( nextValue( buf, &i, max, &value, &valueLength ) != true )
174
166
{
175
- @@ -1495 ,6 +1567 ,9 @@ static bool skipQueryPart( const char * buf,
167
+ @@ -1539 ,6 +1610 ,9 @@ static bool skipQueryPart( const char * buf,
176
168
while( ( i < max ) &&
177
169
!isSeparator_( buf[ i ] ) &&
178
170
!isSquareOpen_( buf[ i ] ) )
@@ -182,9 +174,9 @@ index 901b2e1..8bdd89c 100644
182
174
{
183
175
i++;
184
176
}
185
- @@ -1541 ,6 +1616 ,17 @@ static JSONStatus_t multiSearch( const char * buf,
177
+ @@ -1585 ,6 +1659 ,17 @@ static JSONStatus_t multiSearch( const char * buf,
186
178
coreJSON_ASSERT( ( max > 0U ) && ( queryLength > 0U ) );
187
-
179
+
188
180
while( i < queryLength )
189
181
+ assigns( i, start, queryStart, value, length )
190
182
+ loopInvariant(
@@ -199,4 +191,4 @@ index 901b2e1..8bdd89c 100644
199
191
+ decreases( queryLength - i )
200
192
{
201
193
bool found = false;
202
-
194
+
0 commit comments