123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /*
- * 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.
- */
- /*
- * The goal of s2n_result is to provide a strongly-typed error
- * signal value, which provides the compiler with enough information
- * to catch bugs.
- *
- * Historically, s2n has used int to signal errors. This has caused a few issues:
- *
- * ## GUARD in a function returning integer types
- *
- * There is no compiler error if `GUARD(nested_call());` is used in a function
- * that is meant to return integer type - not a error signal.
- *
- * ```c
- * uint8_t s2n_answer_to_the_ultimate_question() {
- * POSIX_GUARD(s2n_sleep_for_years(7500000));
- * return 42;
- * }
- * ```
- *
- * In this function we intended to return a `uint8_t` but used a
- * `GUARD` which will return -1 if the call fails. This can lead to
- * very subtle bugs.
- *
- * ## `GUARD`ing a function returning any integer type
- *
- * There is no compiler error if `GUARD(nested_call());` is used
- * on a function that doesn't actually return an error signal
- *
- * ```c
- * int s2n_deep_thought() {
- * POSIX_GUARD(s2n_answer_to_the_ultimate_question());
- * return 0;
- * }
- * ```
- *
- * In this function we intended guard against a failure of
- * `s2n_answer_to_the_ultimate_question` but that function doesn't
- * actually return an error signal. Again, this can lead to sublte
- * bugs.
- *
- * ## Ignored error signals
- *
- * Without the `warn_unused_result` function attribute, the compiler
- * provides no warning when forgetting to `GUARD` a function. Missing
- * a `GUARD` can lead to subtle bugs.
- *
- * ```c
- * int s2n_answer_to_the_ultimate_question() {
- * s2n_sleep_for_years(7500000); // <- THIS SHOULD BE GUARDED!!!
- * return 42;
- * }
- * ```
- *
- * # Solution
- *
- * s2n_result provides a newtype declaration, which is popular in
- * languages like [Haskell](https://wiki.haskell.org/Newtype) and
- * [Rust](https://doc.rust-lang.org/rust-by-example/generics/new_types.html).
- *
- * Functions that return S2N_RESULT are automatically marked with the
- * `warn_unused_result` attribute, which ensures they are GUARDed.
- */
- #include "utils/s2n_result.h"
- #include <stdbool.h>
- #include "api/s2n.h"
- /* returns true when the result is S2N_RESULT_OK */
- inline bool s2n_result_is_ok(s2n_result result)
- {
- return result.__error_signal == S2N_SUCCESS;
- }
- /* returns true when the result is S2N_RESULT_ERROR */
- inline bool s2n_result_is_error(s2n_result result)
- {
- return result.__error_signal == S2N_FAILURE;
- }
- /* ignores the returned result of a function */
- inline void s2n_result_ignore(s2n_result result)
- {
- /* noop */
- }
|