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
|
/*
* 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 "utils/s2n_io.h"
#include <sys/wait.h>
#include "s2n_test.h"
#include "tests/testlib/s2n_testlib.h"
#define S2N_TEST_SIGNAL SIGUSR1
#define S2N_TEST_SUCCESS 123
static int s2n_test_mocked_interrupt(uint8_t n_times, uint8_t *counter)
{
if (*counter < n_times) {
(*counter)++;
errno = EINTR;
return -1;
}
return S2N_TEST_SUCCESS;
}
static int s2n_test_real_interrupt(int fd, uint8_t n_times, uint8_t *counter)
{
if (*counter < n_times) {
(*counter)++;
/* There is no data being written to fd,
* so this will block indefinitely unless interrupted.
*/
uint8_t buffer = 0;
int r = read(fd, &buffer, 1);
EXPECT_TRUE(r < 0);
EXPECT_EQUAL(errno, EINTR);
return r;
}
return S2N_TEST_SUCCESS;
}
static void s2n_test_sig_handler(int signum)
{
EXPECT_EQUAL(signum, S2N_TEST_SIGNAL);
}
static int s2n_fail_without_errno(uint8_t *counter)
{
(*counter)++;
if (*counter > 10) {
/* To avoid an infinite loop on test case failure, eventually return success */
return 0;
}
return -1;
}
int main(int argc, char **argv)
{
BEGIN_TEST();
/* Test S2N_IO_RETRY_EINTR */
{
const uint8_t n_times = 5;
/* Retries on errno == EINTR */
{
uint8_t counter = 0;
int result = 0;
S2N_IO_RETRY_EINTR(result, s2n_test_mocked_interrupt(n_times, &counter));
EXPECT_EQUAL(result, S2N_TEST_SUCCESS);
EXPECT_EQUAL(counter, n_times);
};
/* Retries on real interrupt */
{
DEFER_CLEANUP(struct s2n_test_io_pair io_pair = { 0 }, s2n_io_pair_close);
EXPECT_SUCCESS(s2n_io_pair_init(&io_pair));
struct sigaction action = {
.sa_handler = s2n_test_sig_handler,
};
sigaction(SIGUSR1, &action, NULL);
fflush(stdout);
pid_t pid = fork();
if (pid == 0) {
uint8_t counter = 0;
int result = 0;
S2N_IO_RETRY_EINTR(result,
s2n_test_real_interrupt(io_pair.client, n_times, &counter));
EXPECT_EQUAL(result, S2N_TEST_SUCCESS);
EXPECT_EQUAL(counter, n_times);
exit(0);
}
/* Keep sending the signal until the process exits */
int status = 0;
while (waitpid(pid, &status, WNOHANG) == 0) {
EXPECT_EQUAL(kill(pid, S2N_TEST_SIGNAL), 0);
}
EXPECT_EQUAL(status, EXIT_SUCCESS);
};
/* Handles IO methods that don't properly set errno */
{
/* Set errno to EINTR to try to trigger retry */
errno = EINTR;
uint8_t counter = 0;
int result = 0;
S2N_IO_RETRY_EINTR(result, s2n_fail_without_errno(&counter));
EXPECT_EQUAL(result, -1);
EXPECT_EQUAL(counter, 1);
EXPECT_EQUAL(errno, 0);
};
};
END_TEST();
}
|