[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / android / cloexec-accept4.rst
blob1633395d8f6a85ced63f49c9e31e4351b49d816a
1 .. title:: clang-tidy - android-cloexec-accept4
3 android-cloexec-accept4
4 =======================
6 ``accept4()`` should include ``SOCK_CLOEXEC`` in its type argument to avoid the
7 file descriptor leakage. Without this flag, an opened sensitive file would
8 remain open across a fork+exec to a lower-privileged SELinux domain.
10 Examples:
12 .. code-block:: c++
14   accept4(sockfd, addr, addrlen, SOCK_NONBLOCK);
16   // becomes
18   accept4(sockfd, addr, addrlen, SOCK_NONBLOCK | SOCK_CLOEXEC);