stat.c revision 8fd04b8338ed5093ec2d1e668fa620b7de44c177
2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License (the "License").
2N/A * You may not use this file except in compliance with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A
2N/A/*
2N/A * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
2N/A * Use is subject to license terms.
2N/A */
2N/A
2N/A#include "lint.h"
2N/A#include <sys/types.h>
2N/A#include <sys/syscall.h>
2N/A#include <sys/stat.h>
2N/A#include <sys/fcntl.h>
2N/A
2N/A#if !defined(_LP64) && _FILE_OFFSET_BITS == 64
2N/A
2N/A#pragma weak _fstatat64 = fstatat64
2N/Aint
2N/Afstatat64(int fd, const char *name, struct stat64 *sb, int flags)
2N/A{
2N/A return (syscall(SYS_fstatat64, fd, name, sb, flags));
2N/A}
2N/A
2N/A#pragma weak _stat64 = stat64
2N/Aint
2N/Astat64(const char *name, struct stat64 *sb)
2N/A{
2N/A#if defined(_RETAIN_OLD_SYSCALLS)
2N/A return (syscall(SYS_stat64, name, sb));
2N/A#else
2N/A return (fstatat64(AT_FDCWD, name, sb, 0));
2N/A#endif
2N/A}
2N/A
2N/A#pragma weak _lstat64 = lstat64
2N/Aint
2N/Alstat64(const char *name, struct stat64 *sb)
2N/A{
2N/A#if defined(_RETAIN_OLD_SYSCALLS)
2N/A return (syscall(SYS_lstat64, name, sb));
2N/A#else
2N/A return (fstatat64(AT_FDCWD, name, sb, AT_SYMLINK_NOFOLLOW));
2N/A#endif
2N/A}
2N/A
2N/A#pragma weak _fstat64 = fstat64
2N/Aint
2N/Afstat64(int fd, struct stat64 *sb)
2N/A{
2N/A#if defined(_RETAIN_OLD_SYSCALLS)
2N/A return (syscall(SYS_fstat64, fd, sb));
2N/A#else
2N/A return (fstatat64(fd, NULL, sb, 0));
2N/A#endif
2N/A}
2N/A
2N/A#else /* !defined(_LP64) && _FILE_OFFSET_BITS == 64 */
2N/A
2N/A#pragma weak _fstatat = fstatat
2N/Aint
2N/Afstatat(int fd, const char *name, struct stat *sb, int flags)
2N/A{
2N/A return (syscall(SYS_fstatat, fd, name, sb, flags));
2N/A}
2N/A
2N/A#pragma weak _stat = stat
2N/Aint
2N/Astat(const char *name, struct stat *sb)
2N/A{
2N/A#if defined(_RETAIN_OLD_SYSCALLS)
2N/A return (syscall(SYS_stat, name, sb));
2N/A#else
2N/A return (fstatat(AT_FDCWD, name, sb, 0));
2N/A#endif
2N/A}
2N/A
2N/A#pragma weak _lstat = lstat
2N/Aint
2N/Alstat(const char *name, struct stat *sb)
2N/A{
2N/A#if defined(_RETAIN_OLD_SYSCALLS)
2N/A return (syscall(SYS_lstat, name, sb));
2N/A#else
2N/A return (fstatat(AT_FDCWD, name, sb, AT_SYMLINK_NOFOLLOW));
2N/A#endif
2N/A}
2N/A
2N/A#pragma weak _fstat = fstat
2N/Aint
2N/Afstat(int fd, struct stat *sb)
2N/A{
2N/A#if defined(_RETAIN_OLD_SYSCALLS)
2N/A return (syscall(SYS_fstat, fd, sb));
2N/A#else
2N/A return (fstatat(fd, NULL, sb, 0));
2N/A#endif
2N/A}
2N/A
2N/A#endif /* !defined(_LP64) && _FILE_OFFSET_BITS == 64 */
2N/A