blob: a2e394c3cb8ed3157498cba55fae0c23aed8c49a [file] [edit]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation of getgrgid_r.
///
//===----------------------------------------------------------------------===//
#include "src/grp/getgrgid_r.h"
#include "hdr/types/gid_t.h"
#include "hdr/types/size_t.h"
#include "hdr/types/struct_group.h"
#include "src/__support/CPP/span.h"
#include "src/__support/common.h"
#include "src/__support/macros/null_check.h"
#include "src/grp/grp_utils.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, getgrgid_r,
(gid_t gid, struct group *grp, char *buffer, size_t bufsize,
struct group **result)) {
LIBC_CRASH_ON_NULLPTR(grp);
LIBC_CRASH_ON_NULLPTR(buffer);
LIBC_CRASH_ON_NULLPTR(result);
*result = nullptr;
const auto res = grp::find_by_gid(gid, grp, cpp::span<char>(buffer, bufsize));
if (!res.has_value())
return res.error();
*result = res.value() ? grp : nullptr;
return 0;
}
} // namespace LIBC_NAMESPACE_DECL