//===-- Unittests for bind ------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "src/sys/socket/bind.h" #include "src/sys/socket/socket.h" #include "src/stdio/remove.h" #include "src/unistd/close.h" #include "test/UnitTest/ErrnoCheckingTest.h" #include "test/UnitTest/ErrnoSetterMatcher.h" #include "test/UnitTest/Test.h" #include // For AF_UNIX and SOCK_DGRAM using LIBC_NAMESPACE::testing::ErrnoSetterMatcher::Succeeds; using LlvmLibcBindTest = LIBC_NAMESPACE::testing::ErrnoCheckingTest; TEST_F(LlvmLibcBindTest, BindLocalSocket) { const char *FILENAME = "bind_file.test"; auto SOCK_PATH = libc_make_test_file_path(FILENAME); int sock = LIBC_NAMESPACE::socket(AF_UNIX, SOCK_DGRAM, 0); ASSERT_GE(sock, 0); ASSERT_ERRNO_SUCCESS(); struct sockaddr_un my_addr; my_addr.sun_family = AF_UNIX; unsigned int i = 0; for (; SOCK_PATH[i] != '\0' && (i < sizeof(sockaddr_un) - sizeof(sa_family_t)); ++i) my_addr.sun_path[i] = SOCK_PATH[i]; my_addr.sun_path[i] = '\0'; // It's important that the path fits in the struct, if it doesn't then we // can't try to bind to the file. ASSERT_LT( i, static_cast(sizeof(sockaddr_un) - sizeof(sa_family_t))); ASSERT_THAT( LIBC_NAMESPACE::bind(sock, reinterpret_cast(&my_addr), sizeof(struct sockaddr_un)), Succeeds(0)); ASSERT_THAT(LIBC_NAMESPACE::close(sock), Succeeds(0)); ASSERT_THAT(LIBC_NAMESPACE::remove(SOCK_PATH), Succeeds(0)); }