Lesson 35 - Get Compute Auth Token Working
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
#ifndef AWS_COMMON_MATH_GCC_OVERFLOW_INL
|
||||
#define AWS_COMMON_MATH_GCC_OVERFLOW_INL
|
||||
|
||||
/**
|
||||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
* SPDX-License-Identifier: Apache-2.0.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This header is already included, but include it again to make editor
|
||||
* highlighting happier.
|
||||
*/
|
||||
#include <aws/common/common.h>
|
||||
#include <aws/common/math.h>
|
||||
|
||||
AWS_EXTERN_C_BEGIN
|
||||
/**
|
||||
* Multiplies a * b. If the result overflows, returns 2^64 - 1.
|
||||
*/
|
||||
AWS_STATIC_IMPL uint64_t aws_mul_u64_saturating(uint64_t a, uint64_t b) {
|
||||
uint64_t res;
|
||||
|
||||
if (__builtin_mul_overflow(a, b, &res)) {
|
||||
res = UINT64_MAX;
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
/**
|
||||
* If a * b overflows, returns AWS_OP_ERR; otherwise multiplies
|
||||
* a * b, returns the result in *r, and returns AWS_OP_SUCCESS.
|
||||
*/
|
||||
AWS_STATIC_IMPL int aws_mul_u64_checked(uint64_t a, uint64_t b, uint64_t *r) {
|
||||
if (__builtin_mul_overflow(a, b, r)) {
|
||||
return aws_raise_error(AWS_ERROR_OVERFLOW_DETECTED);
|
||||
}
|
||||
return AWS_OP_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* Multiplies a * b. If the result overflows, returns 2^32 - 1.
|
||||
*/
|
||||
AWS_STATIC_IMPL uint32_t aws_mul_u32_saturating(uint32_t a, uint32_t b) {
|
||||
uint32_t res;
|
||||
|
||||
if (__builtin_mul_overflow(a, b, &res)) {
|
||||
res = UINT32_MAX;
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
/**
|
||||
* If a * b overflows, returns AWS_OP_ERR; otherwise multiplies
|
||||
* a * b, returns the result in *r, and returns AWS_OP_SUCCESS.
|
||||
*/
|
||||
AWS_STATIC_IMPL int aws_mul_u32_checked(uint32_t a, uint32_t b, uint32_t *r) {
|
||||
if (__builtin_mul_overflow(a, b, r)) {
|
||||
return aws_raise_error(AWS_ERROR_OVERFLOW_DETECTED);
|
||||
}
|
||||
return AWS_OP_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* If a + b overflows, returns AWS_OP_ERR; otherwise adds
|
||||
* a + b, returns the result in *r, and returns AWS_OP_SUCCESS.
|
||||
*/
|
||||
AWS_STATIC_IMPL int aws_add_u64_checked(uint64_t a, uint64_t b, uint64_t *r) {
|
||||
if (__builtin_add_overflow(a, b, r)) {
|
||||
return aws_raise_error(AWS_ERROR_OVERFLOW_DETECTED);
|
||||
}
|
||||
return AWS_OP_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a + b. If the result overflows, returns 2^64 - 1.
|
||||
*/
|
||||
AWS_STATIC_IMPL uint64_t aws_add_u64_saturating(uint64_t a, uint64_t b) {
|
||||
uint64_t res;
|
||||
|
||||
if (__builtin_add_overflow(a, b, &res)) {
|
||||
res = UINT64_MAX;
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
/**
|
||||
* If a + b overflows, returns AWS_OP_ERR; otherwise adds
|
||||
* a + b, returns the result in *r, and returns AWS_OP_SUCCESS.
|
||||
*/
|
||||
AWS_STATIC_IMPL int aws_add_u32_checked(uint32_t a, uint32_t b, uint32_t *r) {
|
||||
if (__builtin_add_overflow(a, b, r)) {
|
||||
return aws_raise_error(AWS_ERROR_OVERFLOW_DETECTED);
|
||||
}
|
||||
return AWS_OP_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a + b. If the result overflows, returns 2^32 - 1.
|
||||
*/
|
||||
AWS_STATIC_IMPL uint32_t aws_add_u32_saturating(uint32_t a, uint32_t b) {
|
||||
uint32_t res;
|
||||
|
||||
if (__builtin_add_overflow(a, b, &res)) {
|
||||
res = UINT32_MAX;
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
AWS_EXTERN_C_END
|
||||
|
||||
#endif /* AWS_COMMON_MATH_GCC_OVERFLOW_INL */
|
||||
Reference in New Issue
Block a user