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
|
/*
* 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 "tls/s2n_shutdown.c"
#include "s2n_test.h"
#include "testlib/s2n_testlib.h"
#include "tls/s2n_alerts.h"
#define ALERT_LEN (sizeof(uint16_t))
int main(int argc, char **argv)
{
BEGIN_TEST();
const uint8_t close_notify_alert[] = {
2 /* AlertLevel = fatal */,
0 /* AlertDescription = close_notify */
};
/* Test s2n_shutdown */
{
/* Await close_notify if close_notify_received is not set */
{
struct s2n_connection *conn;
EXPECT_NOT_NULL(conn = s2n_connection_new(S2N_SERVER));
struct s2n_stuffer input;
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&input, 0));
struct s2n_stuffer output;
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&output, 0));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&input, &output, conn));
/* Verify state prior to alert */
EXPECT_FALSE(conn->close_notify_received);
s2n_blocked_status blocked;
EXPECT_FAILURE_WITH_ERRNO(s2n_shutdown(conn, &blocked), S2N_ERR_IO_BLOCKED);
EXPECT_EQUAL(blocked, S2N_BLOCKED_ON_READ);
/* Verify state after shutdown attempt */
EXPECT_FALSE(conn->close_notify_received);
EXPECT_SUCCESS(s2n_connection_free(conn));
EXPECT_SUCCESS(s2n_stuffer_free(&input));
EXPECT_SUCCESS(s2n_stuffer_free(&output));
};
/* Do not await close_notify if close_notify_received is set */
{
struct s2n_connection *conn;
EXPECT_NOT_NULL(conn = s2n_connection_new(S2N_SERVER));
struct s2n_stuffer input;
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&input, 0));
struct s2n_stuffer output;
EXPECT_SUCCESS(s2n_stuffer_growable_alloc(&output, 0));
EXPECT_SUCCESS(s2n_connection_set_io_stuffers(&input, &output, conn));
/* Verify state prior to alert */
EXPECT_FALSE(conn->close_notify_received);
/* Write and process the alert */
EXPECT_SUCCESS(s2n_stuffer_write_bytes(&conn->in, close_notify_alert, sizeof(close_notify_alert)));
EXPECT_SUCCESS(s2n_process_alert_fragment(conn));
/* Verify state after alert */
EXPECT_TRUE(conn->close_notify_received);
s2n_blocked_status blocked;
EXPECT_SUCCESS(s2n_shutdown(conn, &blocked));
EXPECT_EQUAL(blocked, S2N_NOT_BLOCKED);
/* Verify state after shutdown attempt */
EXPECT_TRUE(conn->close_notify_received);
EXPECT_SUCCESS(s2n_connection_free(conn));
EXPECT_SUCCESS(s2n_stuffer_free(&input));
EXPECT_SUCCESS(s2n_stuffer_free(&output));
};
};
END_TEST();
}
|