From cad937c12d93653ed1bf548eed8fc1a178f991d8 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 17 Oct 2001 01:10:29 +0000 Subject: This commit makes large file support actually work (when enabled in the config file). I've tested this and it works for me. -Erik --- libc/sysdeps/linux/common/Makefile | 2 +- libc/sysdeps/linux/common/open64.c | 48 +++++++++++++++ libc/sysdeps/linux/common/statfix64.c | 51 ++++++++++++++++ libc/sysdeps/linux/common/statfix64.h | 41 +++++++++++++ libc/sysdeps/linux/common/syscalls.c | 110 ++++++++++++++++++++++++++++++++++ 5 files changed, 251 insertions(+), 1 deletion(-) create mode 100644 libc/sysdeps/linux/common/open64.c create mode 100644 libc/sysdeps/linux/common/statfix64.c create mode 100644 libc/sysdeps/linux/common/statfix64.h (limited to 'libc/sysdeps') diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 34e4de015..93c25e1ae 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -27,7 +27,7 @@ include $(TOPDIR)Rules.mak CSRC= waitpid.c kernel_version.c statfix.c getdnnm.c gethstnm.c \ mkfifo.c setegid.c wait.c errno.c getpagesize.c seteuid.c \ wait3.c setpgrp.c getdtablesize.c create_module.c ptrace.c \ - cmsg_nxthdr.c + cmsg_nxthdr.c open64.c statfix64.c COBJS=$(patsubst %.c,%.o, $(CSRC)) MSRC=syscalls.c diff --git a/libc/sysdeps/linux/common/open64.c b/libc/sysdeps/linux/common/open64.c new file mode 100644 index 000000000..62deddcb4 --- /dev/null +++ b/libc/sysdeps/linux/common/open64.c @@ -0,0 +1,48 @@ +/* Copyright (C) 1991, 1995-1997, 1999, 2000 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + 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. + + 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + + +#include +#include +#include + +#ifndef O_LARGEFILE +#define O_LARGEFILE 0100000 +#endif + +#ifdef __UCLIBC_HAVE_LFS__ + +/* Open FILE with access OFLAG. If OFLAG includes O_CREAT, + a third argument is the file protection. */ +int open64 (const char *file, int oflag, ...) +{ + int mode = 0; + + if (oflag & O_CREAT) + { + va_list arg; + va_start (arg, oflag); + mode = va_arg (arg, int); + va_end (arg); + } + + return open(file, oflag | O_LARGEFILE, mode); +} + +#endif /* __UCLIBC_HAVE_LFS__ */ + diff --git a/libc/sysdeps/linux/common/statfix64.c b/libc/sysdeps/linux/common/statfix64.c new file mode 100644 index 000000000..23759d754 --- /dev/null +++ b/libc/sysdeps/linux/common/statfix64.c @@ -0,0 +1,51 @@ +/* vi: set sw=4 ts=4: */ +/* + * Convert from the kernel's version of struct stat to libc's version + * + * Copyright (C) 2000, 2001 by Lineo, inc. + * Written by Erik Andersen , + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program 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 Library General Public License + * for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + + +/* Pull in whatever this particular arch's kernel thinks the kernel version of + * struct stat should look like. It turns out that each arch has a different + * opinion on the subject. Then pull in libc's version of struct stat... */ +#include "statfix64.h" + +#ifdef __UCLIBC_HAVE_LFS__ + +/* Convert from the kernel's version of struct stat to libc's version */ +void statfix64(struct libc_stat64 *libcstat, struct kernel_stat64 *kstat) +{ + libcstat->st_dev = kstat->st_dev; + libcstat->st_ino = kstat->st_ino; + libcstat->st_mode = kstat->st_mode; + libcstat->st_nlink = kstat->st_nlink; + libcstat->st_uid = kstat->st_uid; + libcstat->st_gid = kstat->st_gid; + libcstat->st_rdev = kstat->st_rdev; + libcstat->st_size = kstat->st_size; + libcstat->st_blksize = kstat->st_blksize; + libcstat->st_blocks = kstat->st_blocks; + libcstat->st_atime = kstat->st_atime; + libcstat->st_mtime = kstat->st_mtime; + libcstat->st_ctime = kstat->st_ctime; +} + +#endif /* __UCLIBC_HAVE_LFS__ */ + diff --git a/libc/sysdeps/linux/common/statfix64.h b/libc/sysdeps/linux/common/statfix64.h new file mode 100644 index 000000000..acf9e8440 --- /dev/null +++ b/libc/sysdeps/linux/common/statfix64.h @@ -0,0 +1,41 @@ +#ifndef STATFIX_H +#define STATFIX_H + +#include + +#define _FILE_OFFSET_BITS 64 +#define __USE_FILE_OFFSET64 +#define __USE_LARGEFILE64 + +#ifdef __UCLIBC_HAVE_LFS__ + +#include + +/* Pull in whatever this particular arch's kernel thinks the kernel version of + * struct stat should look like. It turns out that each arch has a different + * opinion on the subject, and different kernel revs use different names... */ +#define stat kernel_stat +#define new_stat kernel_stat +#define stat64 kernel_stat64 +#define new_stat64 kernel_stat64 +#include +#undef new_stat64 +#undef stat64 +#undef new_stat +#undef stat + + +/* Now pull in libc's version of stat */ +#define stat libc_stat +#define stat64 libc_stat64 +#include +#undef stat64 +#undef stat + +extern void statfix64(struct libc_stat64 *libcstat, struct kernel_stat64 *kstat); +extern int __fxstat64(int version, int fd, struct libc_stat64 * statbuf); + +#endif /* __UCLIBC_HAVE_LFS__ */ + +#endif + diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index c4a5c0135..047ec801c 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -1026,6 +1026,9 @@ loff_t llseek(int fd, loff_t offset, int whence) return ret ? (loff_t) ret : result; } +#ifdef __UCLIBC_HAVE_LFS__ +weak_alias(llseek, lseek64); +#endif #endif //#define __NR_getdents 141 @@ -1221,4 +1224,111 @@ _syscall3(int, chown, const char *, path, uid_t, owner, gid_t, group); //#define __NR_vfork 190 //See sysdeps/linux/vfork.[cS] for architecture specific implementation... +#ifdef __UCLIBC_HAVE_LFS__ + +//#define __NR_truncate64 193 +#ifdef L_truncate64 +#include +_syscall2(int, truncate64, const char *, path, __off64_t, length); +#endif + +//#define __NR_ftruncate64 194 +#ifdef L_ftruncate64 +#include +_syscall2(int, ftruncate64, int, fd, __off64_t, length); +#endif + + +//#define __NR_stat64 195 +#ifdef L___stat64 +#include +#include "statfix64.h" +#define __NR___stat64 __NR_stat64 +#ifdef __STR_NR_stat64 +#define __STR_NR___stat64 __STR_NR_stat64 +#endif +extern int __stat64(const char *file_name, struct kernel_stat64 *buf); +_syscall2(int, __stat64, const char *, file_name, struct kernel_stat64 *, buf); + +int __xstat64(int version, const char * file_name, struct libc_stat64 * cstat) +{ + struct kernel_stat64 kstat; + int result = __stat64(file_name, &kstat); + + if (result == 0) { + statfix64(cstat, &kstat); + } + return result; +} + +int stat64(const char *file_name, struct libc_stat64 *buf) +{ + return(__xstat64(0, file_name, buf)); +} +#endif + +//#define __NR_lstat64 196 +#ifdef L___lstat64 +#include +#include "statfix64.h" +#define __NR___lstat64 __NR_lstat64 +#ifdef __STR_NR_lstat64 +#define __STR_NR___lstat64 __STR_NR_lstat64 +#endif +extern int __lstat64(const char *file_name, struct kernel_stat64 *buf); +_syscall2(int, __lstat64, const char *, file_name, struct kernel_stat64 *, buf); + +int __lxstat64(int version, const char * file_name, struct libc_stat64 * cstat) +{ + struct kernel_stat64 kstat; + int result = __lstat64(file_name, &kstat); + + if (result == 0) { + statfix64(cstat, &kstat); + } + return result; +} + +int lstat64(const char *file_name, struct libc_stat64 *buf) +{ + return(__lxstat64(0, file_name, buf)); +} +#endif + +//#define __NR_fstat64 197 +#ifdef L___fstat64 +#include +#include "statfix64.h" +#define __NR___fstat64 __NR_fstat64 +#ifdef __STR_NR_fstat64 +#define __STR_NR___fstat64 __STR_NR_fstat64 +#endif +extern int __fstat64(int filedes, struct kernel_stat64 *buf); +_syscall2(int, __fstat64, int, filedes, struct kernel_stat64 *, buf); + +int __fxstat64(int version, int fd, struct libc_stat64 * cstat) +{ + struct kernel_stat64 kstat; + int result = __fstat64(fd, &kstat); + + if (result == 0) { + statfix64(cstat, &kstat); + } + return result; +} + +int fstat64(int filedes, struct libc_stat64 *buf) +{ + return(__fxstat64(0, filedes, buf)); +} +#endif + + +//#define __NR_getdents64 220 +//#define __NR_fcntl64 221 + + +#endif /* __UCLIBC_HAVE_LFS__ */ + + -- cgit v1.2.3