Commit 70902864 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] (1/5) beginning of getattr series.

	added new helpers - vfs_stat(), vfs_lstat() and vfs_fstat().
	fs/stat.c switched to use them.

Following patches will

	stat(2) variants in arch/* that used to copy inode fields manually
	switched to vfs_*stat() and partially cleaned up

	irix_...() switched from sys_new*stat() to vfs_*stat() and cleaned
	up.  Missing LFS check added.

	similar for solaris ones

	ditto for x86 compatibility ones on ia64.

We are almost ready to switch to ->getattr() - let filesystem decide what
values should go into ->st_... (e.g. for CODA life would become much
easier if it could just use ->i_size of caching file, for supermount
we want ->i_ino inherited from underlying fs, etc.)

Another thing that needs to be done is fixing the rest of LFS/uid size
fsckups in architecture-specific variants of stat() - I've fixed several,
but quite a few are still there.
parent 4b64f8f0
...@@ -25,68 +25,28 @@ do_revalidate(struct dentry *dentry) ...@@ -25,68 +25,28 @@ do_revalidate(struct dentry *dentry)
return 0; return 0;
} }
static int do_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
#if !defined(__alpha__) && !defined(__sparc__) && !defined(__ia64__) && !defined(CONFIG_ARCH_S390) && !defined(__hppa__) && !defined(__x86_64__)
/*
* For backward compatibility? Maybe this should be moved
* into arch/i386 instead?
*/
static int cp_old_stat(struct inode * inode, struct __old_kernel_stat * statbuf)
{ {
static int warncount = 5; int res = 0;
struct __old_kernel_stat tmp;
if (warncount > 0) {
warncount--;
printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n",
current->comm);
} else if (warncount < 0) {
/* it's laughable, but... */
warncount = 0;
}
tmp.st_dev = kdev_t_to_nr(inode->i_dev);
tmp.st_ino = inode->i_ino;
tmp.st_mode = inode->i_mode;
tmp.st_nlink = inode->i_nlink;
SET_OLDSTAT_UID(tmp, inode->i_uid);
SET_OLDSTAT_GID(tmp, inode->i_gid);
tmp.st_rdev = kdev_t_to_nr(inode->i_rdev);
#if BITS_PER_LONG == 32
if (inode->i_size > MAX_NON_LFS)
return -EOVERFLOW;
#endif
tmp.st_size = inode->i_size;
tmp.st_atime = inode->i_atime;
tmp.st_mtime = inode->i_mtime;
tmp.st_ctime = inode->i_ctime;
return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
}
#endif
static int cp_new_stat(struct inode * inode, struct stat * statbuf)
{
struct stat tmp;
unsigned int blocks, indirect; unsigned int blocks, indirect;
struct inode *inode = dentry->d_inode;
memset(&tmp, 0, sizeof(tmp));
tmp.st_dev = kdev_t_to_nr(inode->i_dev); res = do_revalidate(dentry);
tmp.st_ino = inode->i_ino; if (res)
tmp.st_mode = inode->i_mode; return res;
tmp.st_nlink = inode->i_nlink;
SET_STAT_UID(tmp, inode->i_uid); stat->dev = kdev_t_to_nr(inode->i_dev);
SET_STAT_GID(tmp, inode->i_gid); stat->ino = inode->i_ino;
tmp.st_rdev = kdev_t_to_nr(inode->i_rdev); stat->mode = inode->i_mode;
#if BITS_PER_LONG == 32 stat->nlink = inode->i_nlink;
if (inode->i_size > MAX_NON_LFS) stat->uid = inode->i_uid;
return -EOVERFLOW; stat->gid = inode->i_gid;
#endif stat->rdev = kdev_t_to_nr(inode->i_rdev);
tmp.st_size = inode->i_size; stat->atime = inode->i_atime;
tmp.st_atime = inode->i_atime; stat->mtime = inode->i_mtime;
tmp.st_mtime = inode->i_mtime; stat->ctime = inode->i_ctime;
tmp.st_ctime = inode->i_ctime; stat->ctime = inode->i_ctime;
stat->size = inode->i_size;
/* /*
* st_blocks and st_blksize are approximated with a simple algorithm if * st_blocks and st_blksize are approximated with a simple algorithm if
* they aren't supported directly by the filesystem. The minix and msdos * they aren't supported directly by the filesystem. The minix and msdos
...@@ -106,7 +66,7 @@ static int cp_new_stat(struct inode * inode, struct stat * statbuf) ...@@ -106,7 +66,7 @@ static int cp_new_stat(struct inode * inode, struct stat * statbuf)
#define I_B (BLOCK_SIZE / sizeof(unsigned short)) #define I_B (BLOCK_SIZE / sizeof(unsigned short))
if (!inode->i_blksize) { if (!inode->i_blksize) {
blocks = (tmp.st_size + BLOCK_SIZE - 1) / BLOCK_SIZE; blocks = (stat->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS;
if (blocks > D_B) { if (blocks > D_B) {
indirect = (blocks - D_B + I_B - 1) / I_B; indirect = (blocks - D_B + I_B - 1) / I_B;
blocks += indirect; blocks += indirect;
...@@ -117,130 +77,178 @@ static int cp_new_stat(struct inode * inode, struct stat * statbuf) ...@@ -117,130 +77,178 @@ static int cp_new_stat(struct inode * inode, struct stat * statbuf)
blocks++; blocks++;
} }
} }
tmp.st_blocks = (BLOCK_SIZE / 512) * blocks; stat->blocks = (BLOCK_SIZE / 512) * blocks;
tmp.st_blksize = BLOCK_SIZE; stat->blksize = BLOCK_SIZE;
} else { } else {
tmp.st_blocks = inode->i_blocks; stat->blocks = inode->i_blocks;
tmp.st_blksize = inode->i_blksize; stat->blksize = inode->i_blksize;
} }
return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; return 0;
} }
int vfs_stat(char *name, struct kstat *stat)
#if !defined(__alpha__) && !defined(__sparc__) && !defined(__ia64__) && !defined(CONFIG_ARCH_S390) && !defined(__hppa__) && !defined(__x86_64__)
/*
* For backward compatibility? Maybe this should be moved
* into arch/i386 instead?
*/
asmlinkage long sys_stat(char * filename, struct __old_kernel_stat * statbuf)
{ {
struct nameidata nd; struct nameidata nd;
int error; int error;
error = user_path_walk(filename, &nd); error = user_path_walk(name, &nd);
if (!error) { if (!error) {
error = do_revalidate(nd.dentry); error = do_getattr(nd.mnt, nd.dentry, stat);
if (!error)
error = cp_old_stat(nd.dentry->d_inode, statbuf);
path_release(&nd); path_release(&nd);
} }
return error; return error;
} }
#endif
asmlinkage long sys_newstat(char * filename, struct stat * statbuf) int vfs_lstat(char *name, struct kstat *stat)
{ {
struct nameidata nd; struct nameidata nd;
int error; int error;
error = user_path_walk(filename, &nd); error = user_path_walk_link(name, &nd);
if (!error) { if (!error) {
error = do_revalidate(nd.dentry); error = do_getattr(nd.mnt, nd.dentry, stat);
if (!error)
error = cp_new_stat(nd.dentry->d_inode, statbuf);
path_release(&nd); path_release(&nd);
} }
return error; return error;
} }
int vfs_fstat(unsigned int fd, struct kstat *stat)
{
struct file *f = fget(fd);
int error = -EBADF;
if (f) {
error = do_getattr(f->f_vfsmnt, f->f_dentry, stat);
fput(f);
}
return error;
}
#if !defined(__alpha__) && !defined(__sparc__) && !defined(__ia64__) && !defined(CONFIG_ARCH_S390) && !defined(__hppa__) && !defined(__x86_64__) #if !defined(__alpha__) && !defined(__sparc__) && !defined(__ia64__) && !defined(CONFIG_ARCH_S390) && !defined(__hppa__) && !defined(__x86_64__)
/* /*
* For backward compatibility? Maybe this should be moved * For backward compatibility? Maybe this should be moved
* into arch/i386 instead? * into arch/i386 instead?
*/ */
asmlinkage long sys_lstat(char * filename, struct __old_kernel_stat * statbuf) static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat * statbuf)
{ {
struct nameidata nd; static int warncount = 5;
int error; struct __old_kernel_stat tmp;
error = user_path_walk_link(filename, &nd); if (warncount > 0) {
if (!error) { warncount--;
error = do_revalidate(nd.dentry); printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n",
if (!error) current->comm);
error = cp_old_stat(nd.dentry->d_inode, statbuf); } else if (warncount < 0) {
path_release(&nd); /* it's laughable, but... */
warncount = 0;
} }
return error;
}
#endif tmp.st_dev = stat->dev;
tmp.st_ino = stat->ino;
tmp.st_mode = stat->mode;
tmp.st_nlink = stat->nlink;
SET_OLDSTAT_UID(tmp, stat->uid);
SET_OLDSTAT_GID(tmp, stat->gid);
tmp.st_rdev = stat->rdev;
#if BITS_PER_LONG == 32
if (stat->size > MAX_NON_LFS)
return -EOVERFLOW;
#endif
tmp.st_size = stat->size;
tmp.st_atime = stat->atime;
tmp.st_mtime = stat->mtime;
tmp.st_ctime = stat->ctime;
return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
}
asmlinkage long sys_newlstat(char * filename, struct stat * statbuf) asmlinkage long sys_stat(char * filename, struct __old_kernel_stat * statbuf)
{ {
struct nameidata nd; struct kstat stat;
int error; int error = vfs_stat(filename, &stat);
if (!error)
error = cp_old_stat(&stat, statbuf);
error = user_path_walk_link(filename, &nd);
if (!error) {
error = do_revalidate(nd.dentry);
if (!error)
error = cp_new_stat(nd.dentry->d_inode, statbuf);
path_release(&nd);
}
return error; return error;
} }
asmlinkage long sys_lstat(char * filename, struct __old_kernel_stat * statbuf)
{
struct kstat stat;
int error = vfs_lstat(filename, &stat);
#if !defined(__alpha__) && !defined(__sparc__) && !defined(__ia64__) && !defined(CONFIG_ARCH_S390) && !defined(__hppa__) && !defined(__x86_64__) if (!error)
error = cp_old_stat(&stat, statbuf);
/* return error;
* For backward compatibility? Maybe this should be moved }
* into arch/i386 instead?
*/
asmlinkage long sys_fstat(unsigned int fd, struct __old_kernel_stat * statbuf) asmlinkage long sys_fstat(unsigned int fd, struct __old_kernel_stat * statbuf)
{ {
struct file * f; struct kstat stat;
int err = -EBADF; int error = vfs_fstat(fd, &stat);
f = fget(fd); if (!error)
if (f) { error = cp_old_stat(&stat, statbuf);
struct dentry * dentry = f->f_dentry;
err = do_revalidate(dentry); return error;
if (!err)
err = cp_old_stat(dentry->d_inode, statbuf);
fput(f);
}
return err;
} }
#endif #endif
static int cp_new_stat(struct kstat *stat, struct stat *statbuf)
{
struct stat tmp;
memset(&tmp, 0, sizeof(tmp));
tmp.st_dev = stat->dev;
tmp.st_ino = stat->ino;
tmp.st_mode = stat->mode;
tmp.st_nlink = stat->nlink;
SET_STAT_UID(tmp, stat->uid);
SET_STAT_GID(tmp, stat->gid);
tmp.st_rdev = stat->rdev;
#if BITS_PER_LONG == 32
if (stat->size > MAX_NON_LFS)
return -EOVERFLOW;
#endif
tmp.st_size = stat->size;
tmp.st_atime = stat->atime;
tmp.st_mtime = stat->mtime;
tmp.st_ctime = stat->ctime;
tmp.st_blocks = stat->blocks;
tmp.st_blksize = stat->blksize;
return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
}
asmlinkage long sys_newstat(char * filename, struct stat * statbuf)
{
struct kstat stat;
int error = vfs_stat(filename, &stat);
if (!error)
error = cp_new_stat(&stat, statbuf);
return error;
}
asmlinkage long sys_newlstat(char * filename, struct stat * statbuf)
{
struct kstat stat;
int error = vfs_lstat(filename, &stat);
if (!error)
error = cp_new_stat(&stat, statbuf);
return error;
}
asmlinkage long sys_newfstat(unsigned int fd, struct stat * statbuf) asmlinkage long sys_newfstat(unsigned int fd, struct stat * statbuf)
{ {
struct file * f; struct kstat stat;
int err = -EBADF; int error = vfs_fstat(fd, &stat);
f = fget(fd); if (!error)
if (f) { error = cp_new_stat(&stat, statbuf);
struct dentry * dentry = f->f_dentry;
err = do_revalidate(dentry); return error;
if (!err)
err = cp_new_stat(dentry->d_inode, statbuf);
fput(f);
}
return err;
} }
asmlinkage long sys_readlink(const char * path, char * buf, int bufsiz) asmlinkage long sys_readlink(const char * path, char * buf, int bufsiz)
...@@ -270,110 +278,59 @@ asmlinkage long sys_readlink(const char * path, char * buf, int bufsiz) ...@@ -270,110 +278,59 @@ asmlinkage long sys_readlink(const char * path, char * buf, int bufsiz)
/* ---------- LFS-64 ----------- */ /* ---------- LFS-64 ----------- */
#if !defined(__alpha__) && !defined(__ia64__) && !defined(__mips64) && !defined(__x86_64__) && !defined(CONFIG_ARCH_S390X) #if !defined(__alpha__) && !defined(__ia64__) && !defined(__mips64) && !defined(__x86_64__) && !defined(CONFIG_ARCH_S390X)
static long cp_new_stat64(struct inode * inode, struct stat64 * statbuf) static long cp_new_stat64(struct kstat *stat, struct stat64 *statbuf)
{ {
struct stat64 tmp; struct stat64 tmp;
unsigned int blocks, indirect;
memset(&tmp, 0, sizeof(tmp)); memset(&tmp, 0, sizeof(tmp));
tmp.st_dev = kdev_t_to_nr(inode->i_dev); tmp.st_dev = stat->dev;
tmp.st_ino = inode->i_ino; tmp.st_ino = stat->ino;
#ifdef STAT64_HAS_BROKEN_ST_INO #ifdef STAT64_HAS_BROKEN_ST_INO
tmp.__st_ino = inode->i_ino; tmp.__st_ino = stat->ino;
#endif #endif
tmp.st_mode = inode->i_mode; tmp.st_mode = stat->mode;
tmp.st_nlink = inode->i_nlink; tmp.st_nlink = stat->nlink;
tmp.st_uid = inode->i_uid; tmp.st_uid = stat->uid;
tmp.st_gid = inode->i_gid; tmp.st_gid = stat->gid;
tmp.st_rdev = kdev_t_to_nr(inode->i_rdev); tmp.st_rdev = stat->rdev;
tmp.st_atime = inode->i_atime; tmp.st_atime = stat->atime;
tmp.st_mtime = inode->i_mtime; tmp.st_mtime = stat->mtime;
tmp.st_ctime = inode->i_ctime; tmp.st_ctime = stat->ctime;
tmp.st_size = inode->i_size; tmp.st_size = stat->size;
/* tmp.st_blocks = stat->blocks;
* st_blocks and st_blksize are approximated with a simple algorithm if tmp.st_blksize = stat->blksize;
* they aren't supported directly by the filesystem. The minix and msdos
* filesystems don't keep track of blocks, so they would either have to
* be counted explicitly (by delving into the file itself), or by using
* this simple algorithm to get a reasonable (although not 100% accurate)
* value.
*/
/*
* Use minix fs values for the number of direct and indirect blocks. The
* count is now exact for the minix fs except that it counts zero blocks.
* Everything is in units of BLOCK_SIZE until the assignment to
* tmp.st_blksize.
*/
#define D_B 7
#define I_B (BLOCK_SIZE / sizeof(unsigned short))
if (!inode->i_blksize) {
blocks = (tmp.st_size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS;
if (blocks > D_B) {
indirect = (blocks - D_B + I_B - 1) / I_B;
blocks += indirect;
if (indirect > 1) {
indirect = (indirect - 1 + I_B - 1) / I_B;
blocks += indirect;
if (indirect > 1)
blocks++;
}
}
tmp.st_blocks = (BLOCK_SIZE / 512) * blocks;
tmp.st_blksize = BLOCK_SIZE;
} else {
tmp.st_blocks = inode->i_blocks;
tmp.st_blksize = inode->i_blksize;
}
return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
} }
asmlinkage long sys_stat64(char * filename, struct stat64 * statbuf, long flags) asmlinkage long sys_stat64(char * filename, struct stat64 * statbuf, long flags)
{ {
struct nameidata nd; struct kstat stat;
int error; int error = vfs_stat(filename, &stat);
if (!error)
error = cp_new_stat64(&stat, statbuf);
error = user_path_walk(filename, &nd);
if (!error) {
error = do_revalidate(nd.dentry);
if (!error)
error = cp_new_stat64(nd.dentry->d_inode, statbuf);
path_release(&nd);
}
return error; return error;
} }
asmlinkage long sys_lstat64(char * filename, struct stat64 * statbuf, long flags) asmlinkage long sys_lstat64(char * filename, struct stat64 * statbuf, long flags)
{ {
struct nameidata nd; struct kstat stat;
int error; int error = vfs_lstat(filename, &stat);
if (!error)
error = cp_new_stat64(&stat, statbuf);
error = user_path_walk_link(filename, &nd);
if (!error) {
error = do_revalidate(nd.dentry);
if (!error)
error = cp_new_stat64(nd.dentry->d_inode, statbuf);
path_release(&nd);
}
return error; return error;
} }
asmlinkage long sys_fstat64(unsigned long fd, struct stat64 * statbuf, long flags) asmlinkage long sys_fstat64(unsigned long fd, struct stat64 * statbuf, long flags)
{ {
struct file * f; struct kstat stat;
int err = -EBADF; int error = vfs_fstat(fd, &stat);
f = fget(fd); if (!error)
if (f) { error = cp_new_stat64(&stat, statbuf);
struct dentry * dentry = f->f_dentry;
err = do_revalidate(dentry); return error;
if (!err)
err = cp_new_stat64(dentry->d_inode, statbuf);
fput(f);
}
return err;
} }
#endif /* LFS-64 */ #endif /* LFS-64 */
...@@ -1475,6 +1475,10 @@ extern struct inode_operations page_symlink_inode_operations; ...@@ -1475,6 +1475,10 @@ extern struct inode_operations page_symlink_inode_operations;
extern int vfs_readdir(struct file *, filldir_t, void *); extern int vfs_readdir(struct file *, filldir_t, void *);
extern int dcache_readdir(struct file *, void *, filldir_t); extern int dcache_readdir(struct file *, void *, filldir_t);
extern int vfs_stat(char *, struct kstat *);
extern int vfs_lstat(char *, struct kstat *);
extern int vfs_fstat(unsigned int, struct kstat *);
extern struct file_system_type *get_fs_type(const char *name); extern struct file_system_type *get_fs_type(const char *name);
extern struct super_block *get_super(kdev_t); extern struct super_block *get_super(kdev_t);
extern void drop_super(struct super_block *sb); extern void drop_super(struct super_block *sb);
......
...@@ -52,6 +52,25 @@ ...@@ -52,6 +52,25 @@
#define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH) #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH)
#define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH) #define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH)
#define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH) #define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH)
#include <linux/types.h>
struct kstat {
unsigned long ino;
dev_t dev;
umode_t mode;
nlink_t nlink;
uid_t uid;
gid_t gid;
dev_t rdev;
loff_t size;
time_t atime;
time_t mtime;
time_t ctime;
unsigned long blksize;
unsigned long blocks;
};
#endif #endif
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment