-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
268 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use | ||
# this file except in compliance with the License. A copy of the License is | ||
# located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
# implied. See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Expected runtime is 10 seconds. | ||
|
||
MAX_BLOB_SIZE = 20 | ||
DEFINES += -DMAX_BLOB_SIZE=$(MAX_BLOB_SIZE) | ||
|
||
CBMCFLAGS += | ||
|
||
PROOF_UID = s2n_stuffer_shift | ||
HARNESS_ENTRY = $(PROOF_UID)_harness | ||
HARNESS_FILE = $(HARNESS_ENTRY).c | ||
|
||
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE) | ||
PROOF_SOURCES += $(PROOF_SOURCE)/cbmc_utils.c | ||
PROOF_SOURCES += $(PROOF_SOURCE)/make_common_datastructures.c | ||
PROOF_SOURCES += $(PROOF_STUB)/memmove_simple.c | ||
|
||
PROJECT_SOURCES += $(SRCDIR)/error/s2n_errno.c | ||
PROJECT_SOURCES += $(SRCDIR)/stuffer/s2n_stuffer.c | ||
PROJECT_SOURCES += $(SRCDIR)/utils/s2n_blob.c | ||
PROJECT_SOURCES += $(SRCDIR)/utils/s2n_ensure.c | ||
PROJECT_SOURCES += $(SRCDIR)/utils/s2n_mem.c | ||
PROJECT_SOURCES += $(SRCDIR)/utils/s2n_result.c | ||
PROJECT_SOURCES += $(SRCDIR)/utils/s2n_safety.c | ||
|
||
UNWINDSET += memmove_impl.0:$(call addone,$(MAX_BLOB_SIZE)) | ||
UNWINDSET += memmove_impl.1:$(call addone,$(MAX_BLOB_SIZE)) | ||
|
||
include ../Makefile.common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# This file marks this directory as containing a CBMC proof. |
46 changes: 46 additions & 0 deletions
46
tests/cbmc/proofs/s2n_stuffer_shift/s2n_stuffer_shift_harness.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
#include <assert.h> | ||
#include <cbmc_proof/cbmc_utils.h> | ||
#include <cbmc_proof/make_common_datastructures.h> | ||
|
||
#include "api/s2n.h" | ||
#include "stuffer/s2n_stuffer.h" | ||
|
||
void s2n_stuffer_shift_harness() | ||
{ | ||
struct s2n_stuffer *stuffer = cbmc_allocate_s2n_stuffer(); | ||
__CPROVER_assume(s2n_result_is_ok(s2n_stuffer_validate(stuffer))); | ||
__CPROVER_assume(s2n_blob_is_bounded(&stuffer->blob, MAX_BLOB_SIZE)); | ||
|
||
/* Save previous state from stuffer. */ | ||
struct s2n_stuffer old_stuffer = *stuffer; | ||
uint32_t shift = old_stuffer.read_cursor; | ||
struct store_byte_from_buffer old_byte = { 0 }; | ||
save_byte_from_blob(&old_stuffer.blob, &old_byte); | ||
__CPROVER_assume(old_byte.idx >= old_stuffer.read_cursor); | ||
__CPROVER_assume(old_byte.idx < old_stuffer.write_cursor); | ||
|
||
int result = s2n_stuffer_shift(stuffer); | ||
assert(s2n_result_is_ok(s2n_stuffer_validate(stuffer))); | ||
|
||
if (result == S2N_SUCCESS) { | ||
old_byte.idx -= shift; | ||
old_stuffer.write_cursor -= shift; | ||
old_stuffer.read_cursor = 0; | ||
} | ||
assert_stuffer_equivalence(stuffer, &old_stuffer, &old_byte); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use | ||
* this file except in compliance with the License. A copy of the License is | ||
* located at | ||
* | ||
* http://aws.amazon.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#undef memmove | ||
|
||
#include <assert.h> | ||
#include <cbmc_proof/nondet.h> | ||
#include <stdint.h> | ||
#include <stdlib.h> | ||
|
||
/** | ||
* CBMC can struggle to model memmove. | ||
* If a proof needs real memmove behavior without paying its high cost, | ||
* that proof can use this simple looping based solution. | ||
*/ | ||
void *memmove_impl(void *dest, const void *src, size_t n) { | ||
__CPROVER_HIDE:; | ||
if (n > 0) { | ||
assert(dest); | ||
assert(src); | ||
} | ||
|
||
uint8_t *dest_bytes = (uint8_t*) dest; | ||
uint8_t *src_bytes = (uint8_t*) src; | ||
|
||
/* src and dst can overlap, so we need to save a copy of src | ||
* in case modifying dst modifies src */ | ||
uint8_t *src_copy = malloc(n); | ||
if (src_copy == NULL) { | ||
return NULL; | ||
} | ||
for (size_t i = 0; i < n; i++) { | ||
src_copy[i] = src_bytes[i]; | ||
} | ||
|
||
for (size_t i = 0; i < n; i++) { | ||
dest_bytes[i] = src_copy[i]; | ||
} | ||
|
||
free(src_copy); | ||
return dest; | ||
} | ||
|
||
void *memmove(void *dest, const void *src, size_t n) { | ||
__CPROVER_HIDE:; | ||
return memmove_impl(dest, src, n); | ||
} | ||
|
||
void *__builtin___memmove_chk(void *dest, const void *src, size_t n, size_t size) { | ||
__CPROVER_HIDE:; | ||
(void)size; | ||
return memmove_impl(dest, src, n); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters