1997-10-31 22:51:10 +00:00
|
|
|
/* Convert between the kernel's `struct stat' format, and libc's.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
1997-10-31 22:51:10 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-10-31 22:51:10 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-10-31 22:51:10 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1997-10-31 22:51:10 +00:00
|
|
|
|
2003-06-11 22:37:05 +00:00
|
|
|
#include <errno.h>
|
1997-10-31 22:51:10 +00:00
|
|
|
#include <string.h>
|
2003-06-11 22:37:05 +00:00
|
|
|
#include <sys/stat.h>
|
2003-06-20 16:24:36 +00:00
|
|
|
#include <kernel_stat.h>
|
2003-06-11 22:37:05 +00:00
|
|
|
#include <xstatconv.h>
|
2010-05-04 03:25:04 +00:00
|
|
|
#include <sys/syscall.h>
|
1997-10-31 22:51:10 +00:00
|
|
|
|
2003-06-11 22:37:05 +00:00
|
|
|
int
|
|
|
|
__xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
|
1997-10-31 22:51:10 +00:00
|
|
|
{
|
|
|
|
switch (vers)
|
|
|
|
{
|
|
|
|
case _STAT_VER_KERNEL:
|
1997-11-11 23:54:33 +00:00
|
|
|
*(struct kernel_stat *) ubuf = *kbuf;
|
1997-10-31 22:51:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case _STAT_VER_GLIBC2:
|
|
|
|
{
|
|
|
|
struct glibc2_stat *buf = ubuf;
|
|
|
|
|
|
|
|
buf->st_dev = kbuf->st_dev;
|
|
|
|
buf->st_ino = kbuf->st_ino;
|
|
|
|
buf->st_mode = kbuf->st_mode;
|
|
|
|
buf->st_nlink = kbuf->st_nlink;
|
|
|
|
buf->st_uid = kbuf->st_uid;
|
|
|
|
buf->st_gid = kbuf->st_gid;
|
|
|
|
buf->st_rdev = kbuf->st_rdev;
|
|
|
|
buf->st_size = kbuf->st_size;
|
|
|
|
buf->st_atime = kbuf->st_atime;
|
|
|
|
buf->st_mtime = kbuf->st_mtime;
|
|
|
|
buf->st_ctime = kbuf->st_ctime;
|
|
|
|
buf->st_blksize = kbuf->st_blksize;
|
|
|
|
buf->st_blocks = kbuf->st_blocks;
|
|
|
|
buf->st_flags = kbuf->st_flags;
|
|
|
|
buf->st_gen = kbuf->st_gen;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case _STAT_VER_GLIBC2_1:
|
|
|
|
{
|
2004-03-11 02:58:44 +00:00
|
|
|
struct glibc21_stat *buf = ubuf;
|
1997-10-31 22:51:10 +00:00
|
|
|
|
|
|
|
buf->st_dev = kbuf->st_dev;
|
|
|
|
buf->st_ino = kbuf->st_ino;
|
|
|
|
buf->st_mode = kbuf->st_mode;
|
|
|
|
buf->st_nlink = kbuf->st_nlink;
|
|
|
|
buf->st_uid = kbuf->st_uid;
|
|
|
|
buf->st_gid = kbuf->st_gid;
|
|
|
|
buf->st_rdev = kbuf->st_rdev;
|
|
|
|
buf->st_size = kbuf->st_size;
|
|
|
|
buf->st_atime = kbuf->st_atime;
|
|
|
|
buf->st_mtime = kbuf->st_mtime;
|
|
|
|
buf->st_ctime = kbuf->st_ctime;
|
|
|
|
buf->st_blocks = kbuf->st_blocks;
|
|
|
|
buf->st_blksize = kbuf->st_blksize;
|
|
|
|
buf->st_flags = kbuf->st_flags;
|
|
|
|
buf->st_gen = kbuf->st_gen;
|
|
|
|
buf->__pad3 = 0;
|
2013-11-26 11:29:20 +00:00
|
|
|
buf->__glibc_reserved[0] = 0;
|
|
|
|
buf->__glibc_reserved[1] = 0;
|
|
|
|
buf->__glibc_reserved[2] = 0;
|
|
|
|
buf->__glibc_reserved[3] = 0;
|
1997-10-31 22:51:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-03-11 02:58:44 +00:00
|
|
|
case _STAT_VER_GLIBC2_3_4:
|
|
|
|
{
|
|
|
|
struct stat64 *buf = ubuf;
|
|
|
|
|
|
|
|
buf->st_dev = kbuf->st_dev;
|
|
|
|
buf->st_ino = kbuf->st_ino;
|
|
|
|
buf->st_rdev = kbuf->st_rdev;
|
|
|
|
buf->st_size = kbuf->st_size;
|
|
|
|
buf->st_blocks = kbuf->st_blocks;
|
|
|
|
|
|
|
|
buf->st_mode = kbuf->st_mode;
|
|
|
|
buf->st_uid = kbuf->st_uid;
|
|
|
|
buf->st_gid = kbuf->st_gid;
|
|
|
|
buf->st_blksize = kbuf->st_blksize;
|
|
|
|
buf->st_nlink = kbuf->st_nlink;
|
|
|
|
buf->__pad0 = 0;
|
|
|
|
|
|
|
|
buf->st_atime = kbuf->st_atime;
|
|
|
|
buf->st_atimensec = 0;
|
|
|
|
buf->st_mtime = kbuf->st_mtime;
|
|
|
|
buf->st_mtimensec = 0;
|
|
|
|
buf->st_ctime = kbuf->st_ctime;
|
|
|
|
buf->st_ctimensec = 0;
|
|
|
|
|
2013-11-26 11:29:20 +00:00
|
|
|
buf->__glibc_reserved[0] = 0;
|
|
|
|
buf->__glibc_reserved[1] = 0;
|
|
|
|
buf->__glibc_reserved[2] = 0;
|
2004-03-11 02:58:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1997-10-31 22:51:10 +00:00
|
|
|
default:
|
|
|
|
__set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|