[libc][POSIX][unistd] implement getsid (#127341)

Fixes https://github.com/llvm/llvm-project/issues/126603

---------

Signed-off-by: ZakyHermawan <zaky.hermawan9615@gmail.com>
This commit is contained in:
Zaky Hermawan
2025-02-20 05:26:18 +07:00
committed by GitHub
parent 0fe0968c93
commit ef49760fa9
10 changed files with 110 additions and 0 deletions

View File

@@ -329,6 +329,7 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.unistd.geteuid libc.src.unistd.geteuid
libc.src.unistd.getpid libc.src.unistd.getpid
libc.src.unistd.getppid libc.src.unistd.getppid
libc.src.unistd.getsid
libc.src.unistd.gettid libc.src.unistd.gettid
libc.src.unistd.getuid libc.src.unistd.getuid
libc.src.unistd.isatty libc.src.unistd.isatty

View File

@@ -326,6 +326,7 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.unistd.geteuid libc.src.unistd.geteuid
libc.src.unistd.getpid libc.src.unistd.getpid
libc.src.unistd.getppid libc.src.unistd.getppid
libc.src.unistd.getsid
libc.src.unistd.gettid libc.src.unistd.gettid
libc.src.unistd.getuid libc.src.unistd.getuid
libc.src.unistd.isatty libc.src.unistd.isatty

View File

@@ -328,6 +328,7 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.unistd.geteuid libc.src.unistd.geteuid
libc.src.unistd.getpid libc.src.unistd.getpid
libc.src.unistd.getppid libc.src.unistd.getppid
libc.src.unistd.getsid
libc.src.unistd.gettid libc.src.unistd.gettid
libc.src.unistd.getuid libc.src.unistd.getuid
libc.src.unistd.isatty libc.src.unistd.isatty

View File

@@ -161,6 +161,12 @@ functions:
return_type: int return_type: int
arguments: arguments:
- type: void - type: void
- name: getsid
standards:
- POSIX
return_type: pid_t
arguments:
- type: pid_t
- name: gettid - name: gettid
standards: standards:
- Linux - Linux

View File

@@ -125,6 +125,13 @@ add_entrypoint_object(
.${LIBC_TARGET_OS}.getppid .${LIBC_TARGET_OS}.getppid
) )
add_entrypoint_object(
getsid
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.getsid
)
add_entrypoint_object( add_entrypoint_object(
geteuid geteuid
ALIAS ALIAS

21
libc/src/unistd/getsid.h Normal file
View File

@@ -0,0 +1,21 @@
//===-- Implementation header for getsid ------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_UNISTD_GETSID_H
#define LLVM_LIBC_SRC_UNISTD_GETSID_H
#include "hdr/types/pid_t.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
pid_t getsid(pid_t);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_UNISTD_GETSID_H

View File

@@ -235,6 +235,19 @@ add_entrypoint_object(
libc.src.__support.OSUtil.osutil libc.src.__support.OSUtil.osutil
) )
add_entrypoint_object(
getsid
SRCS
getsid.cpp
HDRS
../getsid.h
DEPENDS
libc.hdr.types.pid_t
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.errno
)
add_entrypoint_object( add_entrypoint_object(
getuid getuid
SRCS SRCS

View File

@@ -0,0 +1,29 @@
//===-- Linux implementation of getsid-------------------------------------===//
//
// 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/unistd/getsid.h"
#include "hdr/types/pid_t.h"
#include "src/__support/OSUtil/syscall.h" // For internal syscall function.
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
#include "src/errno/libc_errno.h"
#include <sys/syscall.h> // For syscall numbers.
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(pid_t, getsid, (pid_t pid)) {
pid_t ret = LIBC_NAMESPACE::syscall_impl<pid_t>(SYS_getsid, pid);
if (ret < 0) {
libc_errno = static_cast<int>(-ret);
return -1;
}
return ret;
}
} // namespace LIBC_NAMESPACE_DECL

View File

@@ -394,6 +394,16 @@ add_libc_unittest(
libc.src.unistd.getppid libc.src.unistd.getppid
) )
add_libc_unittest(
getsid_test
SUITE
libc_unistd_unittests
SRCS
getsid_test.cpp
DEPENDS
libc.src.unistd.getsid
)
add_libc_unittest( add_libc_unittest(
getuid_test getuid_test
SUITE SUITE

View File

@@ -0,0 +1,21 @@
//===-- Unittests for getsid ----------------------------------------------===//
//
// 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/errno/libc_errno.h"
#include "src/unistd/getsid.h"
#include "test/UnitTest/Test.h"
TEST(LlvmLibcGetPidTest, GetCurrSID) {
pid_t sid = LIBC_NAMESPACE::getsid(0);
ASSERT_NE(sid, -1);
ASSERT_ERRNO_SUCCESS();
pid_t nonexist_sid = LIBC_NAMESPACE::getsid(-1);
ASSERT_EQ(nonexist_sid, -1);
ASSERT_ERRNO_FAILURE();
}