1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 21da177e4SLinus Torvalds /* 31da177e4SLinus Torvalds * linux/fs/stat.c 41da177e4SLinus Torvalds * 51da177e4SLinus Torvalds * Copyright (C) 1991, 1992 Linus Torvalds 61da177e4SLinus Torvalds */ 71da177e4SLinus Torvalds 8630d9c47SPaul Gortmaker #include <linux/export.h> 91da177e4SLinus Torvalds #include <linux/mm.h> 101da177e4SLinus Torvalds #include <linux/errno.h> 111da177e4SLinus Torvalds #include <linux/file.h> 121da177e4SLinus Torvalds #include <linux/highuid.h> 131da177e4SLinus Torvalds #include <linux/fs.h> 141da177e4SLinus Torvalds #include <linux/namei.h> 151da177e4SLinus Torvalds #include <linux/security.h> 165b825c3aSIngo Molnar #include <linux/cred.h> 171da177e4SLinus Torvalds #include <linux/syscalls.h> 18ba52de12STheodore Ts'o #include <linux/pagemap.h> 19ac565de3SAl Viro #include <linux/compat.h> 201da177e4SLinus Torvalds 217c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 221da177e4SLinus Torvalds #include <asm/unistd.h> 231da177e4SLinus Torvalds 243934e36fSJens Axboe #include "internal.h" 25*fa2fcf4fSMiklos Szeredi #include "mount.h" 263934e36fSJens Axboe 27a528d35eSDavid Howells /** 28a528d35eSDavid Howells * generic_fillattr - Fill in the basic attributes from the inode struct 29a528d35eSDavid Howells * @inode: Inode to use as the source 30a528d35eSDavid Howells * @stat: Where to fill in the attributes 31a528d35eSDavid Howells * 32a528d35eSDavid Howells * Fill in the basic attributes in the kstat structure from data that's to be 33a528d35eSDavid Howells * found on the VFS inode structure. This is the default if no getattr inode 34a528d35eSDavid Howells * operation is supplied. 35a528d35eSDavid Howells */ 361da177e4SLinus Torvalds void generic_fillattr(struct inode *inode, struct kstat *stat) 371da177e4SLinus Torvalds { 381da177e4SLinus Torvalds stat->dev = inode->i_sb->s_dev; 391da177e4SLinus Torvalds stat->ino = inode->i_ino; 401da177e4SLinus Torvalds stat->mode = inode->i_mode; 411da177e4SLinus Torvalds stat->nlink = inode->i_nlink; 421da177e4SLinus Torvalds stat->uid = inode->i_uid; 431da177e4SLinus Torvalds stat->gid = inode->i_gid; 441da177e4SLinus Torvalds stat->rdev = inode->i_rdev; 453ddcd056SLinus Torvalds stat->size = i_size_read(inode); 461da177e4SLinus Torvalds stat->atime = inode->i_atime; 471da177e4SLinus Torvalds stat->mtime = inode->i_mtime; 481da177e4SLinus Torvalds stat->ctime = inode->i_ctime; 4993407472SFabian Frederick stat->blksize = i_blocksize(inode); 503ddcd056SLinus Torvalds stat->blocks = inode->i_blocks; 51a528d35eSDavid Howells } 521da177e4SLinus Torvalds EXPORT_SYMBOL(generic_fillattr); 531da177e4SLinus Torvalds 54b7a6ec52SJ. Bruce Fields /** 55b7a6ec52SJ. Bruce Fields * vfs_getattr_nosec - getattr without security checks 56b7a6ec52SJ. Bruce Fields * @path: file to get attributes from 57b7a6ec52SJ. Bruce Fields * @stat: structure to return attributes in 58a528d35eSDavid Howells * @request_mask: STATX_xxx flags indicating what the caller wants 59a528d35eSDavid Howells * @query_flags: Query mode (KSTAT_QUERY_FLAGS) 60b7a6ec52SJ. Bruce Fields * 61b7a6ec52SJ. Bruce Fields * Get attributes without calling security_inode_getattr. 62b7a6ec52SJ. Bruce Fields * 63b7a6ec52SJ. Bruce Fields * Currently the only caller other than vfs_getattr is internal to the 64a528d35eSDavid Howells * filehandle lookup code, which uses only the inode number and returns no 65a528d35eSDavid Howells * attributes to any user. Any other code probably wants vfs_getattr. 66b7a6ec52SJ. Bruce Fields */ 67a528d35eSDavid Howells int vfs_getattr_nosec(const struct path *path, struct kstat *stat, 68a528d35eSDavid Howells u32 request_mask, unsigned int query_flags) 691da177e4SLinus Torvalds { 70bb668734SDavid Howells struct inode *inode = d_backing_inode(path->dentry); 711da177e4SLinus Torvalds 72a528d35eSDavid Howells memset(stat, 0, sizeof(*stat)); 73a528d35eSDavid Howells stat->result_mask |= STATX_BASIC_STATS; 74a528d35eSDavid Howells query_flags &= KSTAT_QUERY_FLAGS; 75801e5237SChristoph Hellwig 76801e5237SChristoph Hellwig /* allow the fs to override these if it really wants to */ 77761e28faSMiklos Szeredi /* SB_NOATIME means filesystem supplies dummy atime value */ 78761e28faSMiklos Szeredi if (inode->i_sb->s_flags & SB_NOATIME) 79801e5237SChristoph Hellwig stat->result_mask &= ~STATX_ATIME; 80801e5237SChristoph Hellwig if (IS_AUTOMOUNT(inode)) 81801e5237SChristoph Hellwig stat->attributes |= STATX_ATTR_AUTOMOUNT; 82801e5237SChristoph Hellwig 831da177e4SLinus Torvalds if (inode->i_op->getattr) 84a528d35eSDavid Howells return inode->i_op->getattr(path, stat, request_mask, 85a528d35eSDavid Howells query_flags); 861da177e4SLinus Torvalds 871da177e4SLinus Torvalds generic_fillattr(inode, stat); 881da177e4SLinus Torvalds return 0; 891da177e4SLinus Torvalds } 90b7a6ec52SJ. Bruce Fields EXPORT_SYMBOL(vfs_getattr_nosec); 91b7a6ec52SJ. Bruce Fields 92a528d35eSDavid Howells /* 93a528d35eSDavid Howells * vfs_getattr - Get the enhanced basic attributes of a file 94a528d35eSDavid Howells * @path: The file of interest 95a528d35eSDavid Howells * @stat: Where to return the statistics 96a528d35eSDavid Howells * @request_mask: STATX_xxx flags indicating what the caller wants 97a528d35eSDavid Howells * @query_flags: Query mode (KSTAT_QUERY_FLAGS) 98a528d35eSDavid Howells * 99a528d35eSDavid Howells * Ask the filesystem for a file's attributes. The caller must indicate in 100a528d35eSDavid Howells * request_mask and query_flags to indicate what they want. 101a528d35eSDavid Howells * 102a528d35eSDavid Howells * If the file is remote, the filesystem can be forced to update the attributes 103a528d35eSDavid Howells * from the backing store by passing AT_STATX_FORCE_SYNC in query_flags or can 104a528d35eSDavid Howells * suppress the update by passing AT_STATX_DONT_SYNC. 105a528d35eSDavid Howells * 106a528d35eSDavid Howells * Bits must have been set in request_mask to indicate which attributes the 107a528d35eSDavid Howells * caller wants retrieving. Any such attribute not requested may be returned 108a528d35eSDavid Howells * anyway, but the value may be approximate, and, if remote, may not have been 109a528d35eSDavid Howells * synchronised with the server. 110a528d35eSDavid Howells * 111a528d35eSDavid Howells * 0 will be returned on success, and a -ve error code if unsuccessful. 112a528d35eSDavid Howells */ 113a528d35eSDavid Howells int vfs_getattr(const struct path *path, struct kstat *stat, 114a528d35eSDavid Howells u32 request_mask, unsigned int query_flags) 115b7a6ec52SJ. Bruce Fields { 116b7a6ec52SJ. Bruce Fields int retval; 117b7a6ec52SJ. Bruce Fields 1183f7036a0SAl Viro retval = security_inode_getattr(path); 119b7a6ec52SJ. Bruce Fields if (retval) 120b7a6ec52SJ. Bruce Fields return retval; 121a528d35eSDavid Howells return vfs_getattr_nosec(path, stat, request_mask, query_flags); 122b7a6ec52SJ. Bruce Fields } 1231da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_getattr); 1241da177e4SLinus Torvalds 125a528d35eSDavid Howells /** 126a528d35eSDavid Howells * vfs_statx_fd - Get the enhanced basic attributes by file descriptor 127a528d35eSDavid Howells * @fd: The file descriptor referring to the file of interest 128a528d35eSDavid Howells * @stat: The result structure to fill in. 129a528d35eSDavid Howells * @request_mask: STATX_xxx flags indicating what the caller wants 130a528d35eSDavid Howells * @query_flags: Query mode (KSTAT_QUERY_FLAGS) 131a528d35eSDavid Howells * 132a528d35eSDavid Howells * This function is a wrapper around vfs_getattr(). The main difference is 133a528d35eSDavid Howells * that it uses a file descriptor to determine the file location. 134a528d35eSDavid Howells * 135a528d35eSDavid Howells * 0 will be returned on success, and a -ve error code if unsuccessful. 136a528d35eSDavid Howells */ 137a528d35eSDavid Howells int vfs_statx_fd(unsigned int fd, struct kstat *stat, 138a528d35eSDavid Howells u32 request_mask, unsigned int query_flags) 1391da177e4SLinus Torvalds { 1408c7493aaSEric Biggers struct fd f; 1411da177e4SLinus Torvalds int error = -EBADF; 1421da177e4SLinus Torvalds 1438c7493aaSEric Biggers if (query_flags & ~KSTAT_QUERY_FLAGS) 1448c7493aaSEric Biggers return -EINVAL; 1458c7493aaSEric Biggers 1468c7493aaSEric Biggers f = fdget_raw(fd); 1472903ff01SAl Viro if (f.file) { 148a528d35eSDavid Howells error = vfs_getattr(&f.file->f_path, stat, 149a528d35eSDavid Howells request_mask, query_flags); 1502903ff01SAl Viro fdput(f); 1511da177e4SLinus Torvalds } 1521da177e4SLinus Torvalds return error; 1531da177e4SLinus Torvalds } 154a528d35eSDavid Howells EXPORT_SYMBOL(vfs_statx_fd); 1551da177e4SLinus Torvalds 1563934e36fSJens Axboe inline unsigned vfs_stat_set_lookup_flags(unsigned *lookup_flags, int flags) 1573934e36fSJens Axboe { 1583934e36fSJens Axboe if ((flags & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT | 1593934e36fSJens Axboe AT_EMPTY_PATH | KSTAT_QUERY_FLAGS)) != 0) 1603934e36fSJens Axboe return -EINVAL; 1613934e36fSJens Axboe 1623934e36fSJens Axboe *lookup_flags = LOOKUP_FOLLOW | LOOKUP_AUTOMOUNT; 1633934e36fSJens Axboe if (flags & AT_SYMLINK_NOFOLLOW) 1643934e36fSJens Axboe *lookup_flags &= ~LOOKUP_FOLLOW; 1653934e36fSJens Axboe if (flags & AT_NO_AUTOMOUNT) 1663934e36fSJens Axboe *lookup_flags &= ~LOOKUP_AUTOMOUNT; 1673934e36fSJens Axboe if (flags & AT_EMPTY_PATH) 1683934e36fSJens Axboe *lookup_flags |= LOOKUP_EMPTY; 1693934e36fSJens Axboe 1703934e36fSJens Axboe return 0; 1713934e36fSJens Axboe } 1723934e36fSJens Axboe 173a528d35eSDavid Howells /** 174a528d35eSDavid Howells * vfs_statx - Get basic and extra attributes by filename 175a528d35eSDavid Howells * @dfd: A file descriptor representing the base dir for a relative filename 176a528d35eSDavid Howells * @filename: The name of the file of interest 177a528d35eSDavid Howells * @flags: Flags to control the query 178a528d35eSDavid Howells * @stat: The result structure to fill in. 179a528d35eSDavid Howells * @request_mask: STATX_xxx flags indicating what the caller wants 180a528d35eSDavid Howells * 181a528d35eSDavid Howells * This function is a wrapper around vfs_getattr(). The main difference is 182a528d35eSDavid Howells * that it uses a filename and base directory to determine the file location. 183a528d35eSDavid Howells * Additionally, the use of AT_SYMLINK_NOFOLLOW in flags will prevent a symlink 184a528d35eSDavid Howells * at the given name from being referenced. 185a528d35eSDavid Howells * 186a528d35eSDavid Howells * 0 will be returned on success, and a -ve error code if unsuccessful. 187a528d35eSDavid Howells */ 188a528d35eSDavid Howells int vfs_statx(int dfd, const char __user *filename, int flags, 189a528d35eSDavid Howells struct kstat *stat, u32 request_mask) 1900112fc22SOleg Drokin { 1912eae7a18SChristoph Hellwig struct path path; 1920112fc22SOleg Drokin int error = -EINVAL; 1933934e36fSJens Axboe unsigned lookup_flags; 1940112fc22SOleg Drokin 1953934e36fSJens Axboe if (vfs_stat_set_lookup_flags(&lookup_flags, flags)) 196a528d35eSDavid Howells return -EINVAL; 197836fb7e7SJeff Layton retry: 1982eae7a18SChristoph Hellwig error = user_path_at(dfd, filename, lookup_flags, &path); 1992eae7a18SChristoph Hellwig if (error) 2002eae7a18SChristoph Hellwig goto out; 2012eae7a18SChristoph Hellwig 202a528d35eSDavid Howells error = vfs_getattr(&path, stat, request_mask, flags); 203*fa2fcf4fSMiklos Szeredi stat->mnt_id = real_mount(path.mnt)->mnt_id; 204*fa2fcf4fSMiklos Szeredi stat->result_mask |= STATX_MNT_ID; 2052eae7a18SChristoph Hellwig path_put(&path); 206836fb7e7SJeff Layton if (retry_estale(error, lookup_flags)) { 207836fb7e7SJeff Layton lookup_flags |= LOOKUP_REVAL; 208836fb7e7SJeff Layton goto retry; 209836fb7e7SJeff Layton } 2100112fc22SOleg Drokin out: 2110112fc22SOleg Drokin return error; 2120112fc22SOleg Drokin } 213a528d35eSDavid Howells EXPORT_SYMBOL(vfs_statx); 2142eae7a18SChristoph Hellwig 2150112fc22SOleg Drokin 2161da177e4SLinus Torvalds #ifdef __ARCH_WANT_OLD_STAT 2171da177e4SLinus Torvalds 2181da177e4SLinus Torvalds /* 2191da177e4SLinus Torvalds * For backward compatibility? Maybe this should be moved 2201da177e4SLinus Torvalds * into arch/i386 instead? 2211da177e4SLinus Torvalds */ 2221da177e4SLinus Torvalds static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat __user * statbuf) 2231da177e4SLinus Torvalds { 2241da177e4SLinus Torvalds static int warncount = 5; 2251da177e4SLinus Torvalds struct __old_kernel_stat tmp; 2261da177e4SLinus Torvalds 2271da177e4SLinus Torvalds if (warncount > 0) { 2281da177e4SLinus Torvalds warncount--; 2291da177e4SLinus Torvalds printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n", 2301da177e4SLinus Torvalds current->comm); 2311da177e4SLinus Torvalds } else if (warncount < 0) { 2321da177e4SLinus Torvalds /* it's laughable, but... */ 2331da177e4SLinus Torvalds warncount = 0; 2341da177e4SLinus Torvalds } 2351da177e4SLinus Torvalds 2361da177e4SLinus Torvalds memset(&tmp, 0, sizeof(struct __old_kernel_stat)); 2371da177e4SLinus Torvalds tmp.st_dev = old_encode_dev(stat->dev); 2381da177e4SLinus Torvalds tmp.st_ino = stat->ino; 239afefdbb2SDavid Howells if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) 240afefdbb2SDavid Howells return -EOVERFLOW; 2411da177e4SLinus Torvalds tmp.st_mode = stat->mode; 2421da177e4SLinus Torvalds tmp.st_nlink = stat->nlink; 2431da177e4SLinus Torvalds if (tmp.st_nlink != stat->nlink) 2441da177e4SLinus Torvalds return -EOVERFLOW; 245a7c1938eSEric W. Biederman SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid)); 246a7c1938eSEric W. Biederman SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid)); 2471da177e4SLinus Torvalds tmp.st_rdev = old_encode_dev(stat->rdev); 2481da177e4SLinus Torvalds #if BITS_PER_LONG == 32 2491da177e4SLinus Torvalds if (stat->size > MAX_NON_LFS) 2501da177e4SLinus Torvalds return -EOVERFLOW; 2511da177e4SLinus Torvalds #endif 2521da177e4SLinus Torvalds tmp.st_size = stat->size; 2531da177e4SLinus Torvalds tmp.st_atime = stat->atime.tv_sec; 2541da177e4SLinus Torvalds tmp.st_mtime = stat->mtime.tv_sec; 2551da177e4SLinus Torvalds tmp.st_ctime = stat->ctime.tv_sec; 2561da177e4SLinus Torvalds return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; 2571da177e4SLinus Torvalds } 2581da177e4SLinus Torvalds 259c7887325SDavid Howells SYSCALL_DEFINE2(stat, const char __user *, filename, 260c7887325SDavid Howells struct __old_kernel_stat __user *, statbuf) 2611da177e4SLinus Torvalds { 2621da177e4SLinus Torvalds struct kstat stat; 2632eae7a18SChristoph Hellwig int error; 2641da177e4SLinus Torvalds 2652eae7a18SChristoph Hellwig error = vfs_stat(filename, &stat); 2662eae7a18SChristoph Hellwig if (error) 2671da177e4SLinus Torvalds return error; 2682eae7a18SChristoph Hellwig 2692eae7a18SChristoph Hellwig return cp_old_stat(&stat, statbuf); 2701da177e4SLinus Torvalds } 271257ac264SHeiko Carstens 272c7887325SDavid Howells SYSCALL_DEFINE2(lstat, const char __user *, filename, 273c7887325SDavid Howells struct __old_kernel_stat __user *, statbuf) 2741da177e4SLinus Torvalds { 2751da177e4SLinus Torvalds struct kstat stat; 2762eae7a18SChristoph Hellwig int error; 2771da177e4SLinus Torvalds 2782eae7a18SChristoph Hellwig error = vfs_lstat(filename, &stat); 2792eae7a18SChristoph Hellwig if (error) 2801da177e4SLinus Torvalds return error; 2812eae7a18SChristoph Hellwig 2822eae7a18SChristoph Hellwig return cp_old_stat(&stat, statbuf); 2831da177e4SLinus Torvalds } 284257ac264SHeiko Carstens 285257ac264SHeiko Carstens SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf) 2861da177e4SLinus Torvalds { 2871da177e4SLinus Torvalds struct kstat stat; 2881da177e4SLinus Torvalds int error = vfs_fstat(fd, &stat); 2891da177e4SLinus Torvalds 2901da177e4SLinus Torvalds if (!error) 2911da177e4SLinus Torvalds error = cp_old_stat(&stat, statbuf); 2921da177e4SLinus Torvalds 2931da177e4SLinus Torvalds return error; 2941da177e4SLinus Torvalds } 2951da177e4SLinus Torvalds 2961da177e4SLinus Torvalds #endif /* __ARCH_WANT_OLD_STAT */ 2971da177e4SLinus Torvalds 29882b355d1SArnd Bergmann #ifdef __ARCH_WANT_NEW_STAT 29982b355d1SArnd Bergmann 300a52dd971SLinus Torvalds #if BITS_PER_LONG == 32 301a52dd971SLinus Torvalds # define choose_32_64(a,b) a 302a52dd971SLinus Torvalds #else 303a52dd971SLinus Torvalds # define choose_32_64(a,b) b 304a52dd971SLinus Torvalds #endif 305a52dd971SLinus Torvalds 3064c416f42SYaowei Bai #define valid_dev(x) choose_32_64(old_valid_dev(x),true) 307a52dd971SLinus Torvalds #define encode_dev(x) choose_32_64(old_encode_dev,new_encode_dev)(x) 308a52dd971SLinus Torvalds 3098529f613SLinus Torvalds #ifndef INIT_STRUCT_STAT_PADDING 3108529f613SLinus Torvalds # define INIT_STRUCT_STAT_PADDING(st) memset(&st, 0, sizeof(st)) 3118529f613SLinus Torvalds #endif 3128529f613SLinus Torvalds 3131da177e4SLinus Torvalds static int cp_new_stat(struct kstat *stat, struct stat __user *statbuf) 3141da177e4SLinus Torvalds { 3151da177e4SLinus Torvalds struct stat tmp; 3161da177e4SLinus Torvalds 317a52dd971SLinus Torvalds if (!valid_dev(stat->dev) || !valid_dev(stat->rdev)) 3181da177e4SLinus Torvalds return -EOVERFLOW; 319a52dd971SLinus Torvalds #if BITS_PER_LONG == 32 320a52dd971SLinus Torvalds if (stat->size > MAX_NON_LFS) 3211da177e4SLinus Torvalds return -EOVERFLOW; 3221da177e4SLinus Torvalds #endif 3231da177e4SLinus Torvalds 3248529f613SLinus Torvalds INIT_STRUCT_STAT_PADDING(tmp); 325a52dd971SLinus Torvalds tmp.st_dev = encode_dev(stat->dev); 3261da177e4SLinus Torvalds tmp.st_ino = stat->ino; 327afefdbb2SDavid Howells if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) 328afefdbb2SDavid Howells return -EOVERFLOW; 3291da177e4SLinus Torvalds tmp.st_mode = stat->mode; 3301da177e4SLinus Torvalds tmp.st_nlink = stat->nlink; 3311da177e4SLinus Torvalds if (tmp.st_nlink != stat->nlink) 3321da177e4SLinus Torvalds return -EOVERFLOW; 333a7c1938eSEric W. Biederman SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid)); 334a7c1938eSEric W. Biederman SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid)); 335a52dd971SLinus Torvalds tmp.st_rdev = encode_dev(stat->rdev); 3361da177e4SLinus Torvalds tmp.st_size = stat->size; 3371da177e4SLinus Torvalds tmp.st_atime = stat->atime.tv_sec; 3381da177e4SLinus Torvalds tmp.st_mtime = stat->mtime.tv_sec; 3391da177e4SLinus Torvalds tmp.st_ctime = stat->ctime.tv_sec; 3401da177e4SLinus Torvalds #ifdef STAT_HAVE_NSEC 3411da177e4SLinus Torvalds tmp.st_atime_nsec = stat->atime.tv_nsec; 3421da177e4SLinus Torvalds tmp.st_mtime_nsec = stat->mtime.tv_nsec; 3431da177e4SLinus Torvalds tmp.st_ctime_nsec = stat->ctime.tv_nsec; 3441da177e4SLinus Torvalds #endif 3451da177e4SLinus Torvalds tmp.st_blocks = stat->blocks; 3461da177e4SLinus Torvalds tmp.st_blksize = stat->blksize; 3471da177e4SLinus Torvalds return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; 3481da177e4SLinus Torvalds } 3491da177e4SLinus Torvalds 350c7887325SDavid Howells SYSCALL_DEFINE2(newstat, const char __user *, filename, 351c7887325SDavid Howells struct stat __user *, statbuf) 3521da177e4SLinus Torvalds { 3531da177e4SLinus Torvalds struct kstat stat; 3542eae7a18SChristoph Hellwig int error = vfs_stat(filename, &stat); 3551da177e4SLinus Torvalds 3562eae7a18SChristoph Hellwig if (error) 3571da177e4SLinus Torvalds return error; 3582eae7a18SChristoph Hellwig return cp_new_stat(&stat, statbuf); 3591da177e4SLinus Torvalds } 3605590ff0dSUlrich Drepper 361c7887325SDavid Howells SYSCALL_DEFINE2(newlstat, const char __user *, filename, 362c7887325SDavid Howells struct stat __user *, statbuf) 3631da177e4SLinus Torvalds { 3641da177e4SLinus Torvalds struct kstat stat; 3652eae7a18SChristoph Hellwig int error; 3661da177e4SLinus Torvalds 3672eae7a18SChristoph Hellwig error = vfs_lstat(filename, &stat); 3682eae7a18SChristoph Hellwig if (error) 3691da177e4SLinus Torvalds return error; 3702eae7a18SChristoph Hellwig 3712eae7a18SChristoph Hellwig return cp_new_stat(&stat, statbuf); 3721da177e4SLinus Torvalds } 3735590ff0dSUlrich Drepper 3742833c28aSAndreas Schwab #if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT) 375c7887325SDavid Howells SYSCALL_DEFINE4(newfstatat, int, dfd, const char __user *, filename, 3766559eed8SHeiko Carstens struct stat __user *, statbuf, int, flag) 3775590ff0dSUlrich Drepper { 3785590ff0dSUlrich Drepper struct kstat stat; 3790112fc22SOleg Drokin int error; 3805590ff0dSUlrich Drepper 3810112fc22SOleg Drokin error = vfs_fstatat(dfd, filename, &stat, flag); 3820112fc22SOleg Drokin if (error) 3835590ff0dSUlrich Drepper return error; 3840112fc22SOleg Drokin return cp_new_stat(&stat, statbuf); 3855590ff0dSUlrich Drepper } 386cff2b760SUlrich Drepper #endif 3875590ff0dSUlrich Drepper 388257ac264SHeiko Carstens SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf) 3891da177e4SLinus Torvalds { 3901da177e4SLinus Torvalds struct kstat stat; 3911da177e4SLinus Torvalds int error = vfs_fstat(fd, &stat); 3921da177e4SLinus Torvalds 3931da177e4SLinus Torvalds if (!error) 3941da177e4SLinus Torvalds error = cp_new_stat(&stat, statbuf); 3951da177e4SLinus Torvalds 3961da177e4SLinus Torvalds return error; 3971da177e4SLinus Torvalds } 39882b355d1SArnd Bergmann #endif 3991da177e4SLinus Torvalds 4002dae0248SDominik Brodowski static int do_readlinkat(int dfd, const char __user *pathname, 4012dae0248SDominik Brodowski char __user *buf, int bufsiz) 4021da177e4SLinus Torvalds { 4032d8f3038SAl Viro struct path path; 4041da177e4SLinus Torvalds int error; 4051fa1e7f6SAndy Whitcroft int empty = 0; 4067955119eSJeff Layton unsigned int lookup_flags = LOOKUP_EMPTY; 4071da177e4SLinus Torvalds 4081da177e4SLinus Torvalds if (bufsiz <= 0) 4091da177e4SLinus Torvalds return -EINVAL; 4101da177e4SLinus Torvalds 4117955119eSJeff Layton retry: 4127955119eSJeff Layton error = user_path_at_empty(dfd, pathname, lookup_flags, &path, &empty); 4131da177e4SLinus Torvalds if (!error) { 414bb668734SDavid Howells struct inode *inode = d_backing_inode(path.dentry); 4151da177e4SLinus Torvalds 4161fa1e7f6SAndy Whitcroft error = empty ? -ENOENT : -EINVAL; 417fd4a0edfSMiklos Szeredi /* 418fd4a0edfSMiklos Szeredi * AFS mountpoints allow readlink(2) but are not symlinks 419fd4a0edfSMiklos Szeredi */ 420fd4a0edfSMiklos Szeredi if (d_is_symlink(path.dentry) || inode->i_op->readlink) { 4212d8f3038SAl Viro error = security_inode_readlink(path.dentry); 4221da177e4SLinus Torvalds if (!error) { 42368ac1234SAl Viro touch_atime(&path); 424fd4a0edfSMiklos Szeredi error = vfs_readlink(path.dentry, buf, bufsiz); 4251da177e4SLinus Torvalds } 4261da177e4SLinus Torvalds } 4272d8f3038SAl Viro path_put(&path); 4287955119eSJeff Layton if (retry_estale(error, lookup_flags)) { 4297955119eSJeff Layton lookup_flags |= LOOKUP_REVAL; 4307955119eSJeff Layton goto retry; 4317955119eSJeff Layton } 4321da177e4SLinus Torvalds } 4331da177e4SLinus Torvalds return error; 4341da177e4SLinus Torvalds } 4351da177e4SLinus Torvalds 4362dae0248SDominik Brodowski SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname, 4372dae0248SDominik Brodowski char __user *, buf, int, bufsiz) 4382dae0248SDominik Brodowski { 4392dae0248SDominik Brodowski return do_readlinkat(dfd, pathname, buf, bufsiz); 4402dae0248SDominik Brodowski } 4412dae0248SDominik Brodowski 442002c8976SHeiko Carstens SYSCALL_DEFINE3(readlink, const char __user *, path, char __user *, buf, 443002c8976SHeiko Carstens int, bufsiz) 4445590ff0dSUlrich Drepper { 4452dae0248SDominik Brodowski return do_readlinkat(AT_FDCWD, path, buf, bufsiz); 4465590ff0dSUlrich Drepper } 4475590ff0dSUlrich Drepper 4481da177e4SLinus Torvalds 4491da177e4SLinus Torvalds /* ---------- LFS-64 ----------- */ 4500753f70fSCatalin Marinas #if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64) 4511da177e4SLinus Torvalds 4528529f613SLinus Torvalds #ifndef INIT_STRUCT_STAT64_PADDING 4538529f613SLinus Torvalds # define INIT_STRUCT_STAT64_PADDING(st) memset(&st, 0, sizeof(st)) 4548529f613SLinus Torvalds #endif 4558529f613SLinus Torvalds 4561da177e4SLinus Torvalds static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf) 4571da177e4SLinus Torvalds { 4581da177e4SLinus Torvalds struct stat64 tmp; 4591da177e4SLinus Torvalds 4608529f613SLinus Torvalds INIT_STRUCT_STAT64_PADDING(tmp); 4611da177e4SLinus Torvalds #ifdef CONFIG_MIPS 4621da177e4SLinus Torvalds /* mips has weird padding, so we don't get 64 bits there */ 4631da177e4SLinus Torvalds tmp.st_dev = new_encode_dev(stat->dev); 4641da177e4SLinus Torvalds tmp.st_rdev = new_encode_dev(stat->rdev); 4651da177e4SLinus Torvalds #else 4661da177e4SLinus Torvalds tmp.st_dev = huge_encode_dev(stat->dev); 4671da177e4SLinus Torvalds tmp.st_rdev = huge_encode_dev(stat->rdev); 4681da177e4SLinus Torvalds #endif 4691da177e4SLinus Torvalds tmp.st_ino = stat->ino; 470afefdbb2SDavid Howells if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) 471afefdbb2SDavid Howells return -EOVERFLOW; 4721da177e4SLinus Torvalds #ifdef STAT64_HAS_BROKEN_ST_INO 4731da177e4SLinus Torvalds tmp.__st_ino = stat->ino; 4741da177e4SLinus Torvalds #endif 4751da177e4SLinus Torvalds tmp.st_mode = stat->mode; 4761da177e4SLinus Torvalds tmp.st_nlink = stat->nlink; 477a7c1938eSEric W. Biederman tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid); 478a7c1938eSEric W. Biederman tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid); 4791da177e4SLinus Torvalds tmp.st_atime = stat->atime.tv_sec; 4801da177e4SLinus Torvalds tmp.st_atime_nsec = stat->atime.tv_nsec; 4811da177e4SLinus Torvalds tmp.st_mtime = stat->mtime.tv_sec; 4821da177e4SLinus Torvalds tmp.st_mtime_nsec = stat->mtime.tv_nsec; 4831da177e4SLinus Torvalds tmp.st_ctime = stat->ctime.tv_sec; 4841da177e4SLinus Torvalds tmp.st_ctime_nsec = stat->ctime.tv_nsec; 4851da177e4SLinus Torvalds tmp.st_size = stat->size; 4861da177e4SLinus Torvalds tmp.st_blocks = stat->blocks; 4871da177e4SLinus Torvalds tmp.st_blksize = stat->blksize; 4881da177e4SLinus Torvalds return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; 4891da177e4SLinus Torvalds } 4901da177e4SLinus Torvalds 491c7887325SDavid Howells SYSCALL_DEFINE2(stat64, const char __user *, filename, 492c7887325SDavid Howells struct stat64 __user *, statbuf) 4931da177e4SLinus Torvalds { 4941da177e4SLinus Torvalds struct kstat stat; 4951da177e4SLinus Torvalds int error = vfs_stat(filename, &stat); 4961da177e4SLinus Torvalds 4971da177e4SLinus Torvalds if (!error) 4981da177e4SLinus Torvalds error = cp_new_stat64(&stat, statbuf); 4991da177e4SLinus Torvalds 5001da177e4SLinus Torvalds return error; 5011da177e4SLinus Torvalds } 502257ac264SHeiko Carstens 503c7887325SDavid Howells SYSCALL_DEFINE2(lstat64, const char __user *, filename, 504c7887325SDavid Howells struct stat64 __user *, statbuf) 5051da177e4SLinus Torvalds { 5061da177e4SLinus Torvalds struct kstat stat; 5071da177e4SLinus Torvalds int error = vfs_lstat(filename, &stat); 5081da177e4SLinus Torvalds 5091da177e4SLinus Torvalds if (!error) 5101da177e4SLinus Torvalds error = cp_new_stat64(&stat, statbuf); 5111da177e4SLinus Torvalds 5121da177e4SLinus Torvalds return error; 5131da177e4SLinus Torvalds } 514257ac264SHeiko Carstens 515257ac264SHeiko Carstens SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf) 5161da177e4SLinus Torvalds { 5171da177e4SLinus Torvalds struct kstat stat; 5181da177e4SLinus Torvalds int error = vfs_fstat(fd, &stat); 5191da177e4SLinus Torvalds 5201da177e4SLinus Torvalds if (!error) 5211da177e4SLinus Torvalds error = cp_new_stat64(&stat, statbuf); 5221da177e4SLinus Torvalds 5231da177e4SLinus Torvalds return error; 5241da177e4SLinus Torvalds } 5251da177e4SLinus Torvalds 526c7887325SDavid Howells SYSCALL_DEFINE4(fstatat64, int, dfd, const char __user *, filename, 5276559eed8SHeiko Carstens struct stat64 __user *, statbuf, int, flag) 528cff2b760SUlrich Drepper { 529cff2b760SUlrich Drepper struct kstat stat; 5300112fc22SOleg Drokin int error; 531cff2b760SUlrich Drepper 5320112fc22SOleg Drokin error = vfs_fstatat(dfd, filename, &stat, flag); 5330112fc22SOleg Drokin if (error) 534cff2b760SUlrich Drepper return error; 5350112fc22SOleg Drokin return cp_new_stat64(&stat, statbuf); 536cff2b760SUlrich Drepper } 5370753f70fSCatalin Marinas #endif /* __ARCH_WANT_STAT64 || __ARCH_WANT_COMPAT_STAT64 */ 5381da177e4SLinus Torvalds 5393934e36fSJens Axboe noinline_for_stack int 54064bd7204SEric Biggers cp_statx(const struct kstat *stat, struct statx __user *buffer) 541a528d35eSDavid Howells { 54264bd7204SEric Biggers struct statx tmp; 543a528d35eSDavid Howells 54464bd7204SEric Biggers memset(&tmp, 0, sizeof(tmp)); 545a528d35eSDavid Howells 54664bd7204SEric Biggers tmp.stx_mask = stat->result_mask; 54764bd7204SEric Biggers tmp.stx_blksize = stat->blksize; 54864bd7204SEric Biggers tmp.stx_attributes = stat->attributes; 54964bd7204SEric Biggers tmp.stx_nlink = stat->nlink; 55064bd7204SEric Biggers tmp.stx_uid = from_kuid_munged(current_user_ns(), stat->uid); 55164bd7204SEric Biggers tmp.stx_gid = from_kgid_munged(current_user_ns(), stat->gid); 55264bd7204SEric Biggers tmp.stx_mode = stat->mode; 55364bd7204SEric Biggers tmp.stx_ino = stat->ino; 55464bd7204SEric Biggers tmp.stx_size = stat->size; 55564bd7204SEric Biggers tmp.stx_blocks = stat->blocks; 5563209f68bSDavid Howells tmp.stx_attributes_mask = stat->attributes_mask; 55764bd7204SEric Biggers tmp.stx_atime.tv_sec = stat->atime.tv_sec; 55864bd7204SEric Biggers tmp.stx_atime.tv_nsec = stat->atime.tv_nsec; 55964bd7204SEric Biggers tmp.stx_btime.tv_sec = stat->btime.tv_sec; 56064bd7204SEric Biggers tmp.stx_btime.tv_nsec = stat->btime.tv_nsec; 56164bd7204SEric Biggers tmp.stx_ctime.tv_sec = stat->ctime.tv_sec; 56264bd7204SEric Biggers tmp.stx_ctime.tv_nsec = stat->ctime.tv_nsec; 56364bd7204SEric Biggers tmp.stx_mtime.tv_sec = stat->mtime.tv_sec; 56464bd7204SEric Biggers tmp.stx_mtime.tv_nsec = stat->mtime.tv_nsec; 56564bd7204SEric Biggers tmp.stx_rdev_major = MAJOR(stat->rdev); 56664bd7204SEric Biggers tmp.stx_rdev_minor = MINOR(stat->rdev); 56764bd7204SEric Biggers tmp.stx_dev_major = MAJOR(stat->dev); 56864bd7204SEric Biggers tmp.stx_dev_minor = MINOR(stat->dev); 569*fa2fcf4fSMiklos Szeredi tmp.stx_mnt_id = stat->mnt_id; 570a528d35eSDavid Howells 57164bd7204SEric Biggers return copy_to_user(buffer, &tmp, sizeof(tmp)) ? -EFAULT : 0; 572a528d35eSDavid Howells } 573a528d35eSDavid Howells 574a528d35eSDavid Howells /** 575a528d35eSDavid Howells * sys_statx - System call to get enhanced stats 576a528d35eSDavid Howells * @dfd: Base directory to pathwalk from *or* fd to stat. 5771e2f82d1SDavid Howells * @filename: File to stat or "" with AT_EMPTY_PATH 578a528d35eSDavid Howells * @flags: AT_* flags to control pathwalk. 579a528d35eSDavid Howells * @mask: Parts of statx struct actually required. 580a528d35eSDavid Howells * @buffer: Result buffer. 581a528d35eSDavid Howells * 5821e2f82d1SDavid Howells * Note that fstat() can be emulated by setting dfd to the fd of interest, 5831e2f82d1SDavid Howells * supplying "" as the filename and setting AT_EMPTY_PATH in the flags. 584a528d35eSDavid Howells */ 585a528d35eSDavid Howells SYSCALL_DEFINE5(statx, 586a528d35eSDavid Howells int, dfd, const char __user *, filename, unsigned, flags, 587a528d35eSDavid Howells unsigned int, mask, 588a528d35eSDavid Howells struct statx __user *, buffer) 589a528d35eSDavid Howells { 590a528d35eSDavid Howells struct kstat stat; 591a528d35eSDavid Howells int error; 592a528d35eSDavid Howells 59347071aeeSDavid Howells if (mask & STATX__RESERVED) 59447071aeeSDavid Howells return -EINVAL; 595a528d35eSDavid Howells if ((flags & AT_STATX_SYNC_TYPE) == AT_STATX_SYNC_TYPE) 596a528d35eSDavid Howells return -EINVAL; 597a528d35eSDavid Howells 598a528d35eSDavid Howells error = vfs_statx(dfd, filename, flags, &stat, mask); 599a528d35eSDavid Howells if (error) 600a528d35eSDavid Howells return error; 60164bd7204SEric Biggers 60264bd7204SEric Biggers return cp_statx(&stat, buffer); 603a528d35eSDavid Howells } 604a528d35eSDavid Howells 605ac565de3SAl Viro #ifdef CONFIG_COMPAT 606ac565de3SAl Viro static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf) 607ac565de3SAl Viro { 608ac565de3SAl Viro struct compat_stat tmp; 609ac565de3SAl Viro 610ac565de3SAl Viro if (!old_valid_dev(stat->dev) || !old_valid_dev(stat->rdev)) 611ac565de3SAl Viro return -EOVERFLOW; 612ac565de3SAl Viro 613ac565de3SAl Viro memset(&tmp, 0, sizeof(tmp)); 614ac565de3SAl Viro tmp.st_dev = old_encode_dev(stat->dev); 615ac565de3SAl Viro tmp.st_ino = stat->ino; 616ac565de3SAl Viro if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) 617ac565de3SAl Viro return -EOVERFLOW; 618ac565de3SAl Viro tmp.st_mode = stat->mode; 619ac565de3SAl Viro tmp.st_nlink = stat->nlink; 620ac565de3SAl Viro if (tmp.st_nlink != stat->nlink) 621ac565de3SAl Viro return -EOVERFLOW; 622ac565de3SAl Viro SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid)); 623ac565de3SAl Viro SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid)); 624ac565de3SAl Viro tmp.st_rdev = old_encode_dev(stat->rdev); 625ac565de3SAl Viro if ((u64) stat->size > MAX_NON_LFS) 626ac565de3SAl Viro return -EOVERFLOW; 627ac565de3SAl Viro tmp.st_size = stat->size; 628ac565de3SAl Viro tmp.st_atime = stat->atime.tv_sec; 629ac565de3SAl Viro tmp.st_atime_nsec = stat->atime.tv_nsec; 630ac565de3SAl Viro tmp.st_mtime = stat->mtime.tv_sec; 631ac565de3SAl Viro tmp.st_mtime_nsec = stat->mtime.tv_nsec; 632ac565de3SAl Viro tmp.st_ctime = stat->ctime.tv_sec; 633ac565de3SAl Viro tmp.st_ctime_nsec = stat->ctime.tv_nsec; 634ac565de3SAl Viro tmp.st_blocks = stat->blocks; 635ac565de3SAl Viro tmp.st_blksize = stat->blksize; 636ac565de3SAl Viro return copy_to_user(ubuf, &tmp, sizeof(tmp)) ? -EFAULT : 0; 637ac565de3SAl Viro } 638ac565de3SAl Viro 639ac565de3SAl Viro COMPAT_SYSCALL_DEFINE2(newstat, const char __user *, filename, 640ac565de3SAl Viro struct compat_stat __user *, statbuf) 641ac565de3SAl Viro { 642ac565de3SAl Viro struct kstat stat; 643ac565de3SAl Viro int error; 644ac565de3SAl Viro 645ac565de3SAl Viro error = vfs_stat(filename, &stat); 646ac565de3SAl Viro if (error) 647ac565de3SAl Viro return error; 648ac565de3SAl Viro return cp_compat_stat(&stat, statbuf); 649ac565de3SAl Viro } 650ac565de3SAl Viro 651ac565de3SAl Viro COMPAT_SYSCALL_DEFINE2(newlstat, const char __user *, filename, 652ac565de3SAl Viro struct compat_stat __user *, statbuf) 653ac565de3SAl Viro { 654ac565de3SAl Viro struct kstat stat; 655ac565de3SAl Viro int error; 656ac565de3SAl Viro 657ac565de3SAl Viro error = vfs_lstat(filename, &stat); 658ac565de3SAl Viro if (error) 659ac565de3SAl Viro return error; 660ac565de3SAl Viro return cp_compat_stat(&stat, statbuf); 661ac565de3SAl Viro } 662ac565de3SAl Viro 663ac565de3SAl Viro #ifndef __ARCH_WANT_STAT64 664ac565de3SAl Viro COMPAT_SYSCALL_DEFINE4(newfstatat, unsigned int, dfd, 665ac565de3SAl Viro const char __user *, filename, 666ac565de3SAl Viro struct compat_stat __user *, statbuf, int, flag) 667ac565de3SAl Viro { 668ac565de3SAl Viro struct kstat stat; 669ac565de3SAl Viro int error; 670ac565de3SAl Viro 671ac565de3SAl Viro error = vfs_fstatat(dfd, filename, &stat, flag); 672ac565de3SAl Viro if (error) 673ac565de3SAl Viro return error; 674ac565de3SAl Viro return cp_compat_stat(&stat, statbuf); 675ac565de3SAl Viro } 676ac565de3SAl Viro #endif 677ac565de3SAl Viro 678ac565de3SAl Viro COMPAT_SYSCALL_DEFINE2(newfstat, unsigned int, fd, 679ac565de3SAl Viro struct compat_stat __user *, statbuf) 680ac565de3SAl Viro { 681ac565de3SAl Viro struct kstat stat; 682ac565de3SAl Viro int error = vfs_fstat(fd, &stat); 683ac565de3SAl Viro 684ac565de3SAl Viro if (!error) 685ac565de3SAl Viro error = cp_compat_stat(&stat, statbuf); 686ac565de3SAl Viro return error; 687ac565de3SAl Viro } 688ac565de3SAl Viro #endif 689ac565de3SAl Viro 690b462707eSDmitry Monakhov /* Caller is here responsible for sufficient locking (ie. inode->i_lock) */ 691b462707eSDmitry Monakhov void __inode_add_bytes(struct inode *inode, loff_t bytes) 6921da177e4SLinus Torvalds { 6931da177e4SLinus Torvalds inode->i_blocks += bytes >> 9; 6941da177e4SLinus Torvalds bytes &= 511; 6951da177e4SLinus Torvalds inode->i_bytes += bytes; 6961da177e4SLinus Torvalds if (inode->i_bytes >= 512) { 6971da177e4SLinus Torvalds inode->i_blocks++; 6981da177e4SLinus Torvalds inode->i_bytes -= 512; 6991da177e4SLinus Torvalds } 700b462707eSDmitry Monakhov } 701eb315d2aSAl Viro EXPORT_SYMBOL(__inode_add_bytes); 702b462707eSDmitry Monakhov 703b462707eSDmitry Monakhov void inode_add_bytes(struct inode *inode, loff_t bytes) 704b462707eSDmitry Monakhov { 705b462707eSDmitry Monakhov spin_lock(&inode->i_lock); 706b462707eSDmitry Monakhov __inode_add_bytes(inode, bytes); 7071da177e4SLinus Torvalds spin_unlock(&inode->i_lock); 7081da177e4SLinus Torvalds } 7091da177e4SLinus Torvalds 7101da177e4SLinus Torvalds EXPORT_SYMBOL(inode_add_bytes); 7111da177e4SLinus Torvalds 7121c8924ebSJan Kara void __inode_sub_bytes(struct inode *inode, loff_t bytes) 7131da177e4SLinus Torvalds { 7141da177e4SLinus Torvalds inode->i_blocks -= bytes >> 9; 7151da177e4SLinus Torvalds bytes &= 511; 7161da177e4SLinus Torvalds if (inode->i_bytes < bytes) { 7171da177e4SLinus Torvalds inode->i_blocks--; 7181da177e4SLinus Torvalds inode->i_bytes += 512; 7191da177e4SLinus Torvalds } 7201da177e4SLinus Torvalds inode->i_bytes -= bytes; 7211c8924ebSJan Kara } 7221c8924ebSJan Kara 7231c8924ebSJan Kara EXPORT_SYMBOL(__inode_sub_bytes); 7241c8924ebSJan Kara 7251c8924ebSJan Kara void inode_sub_bytes(struct inode *inode, loff_t bytes) 7261c8924ebSJan Kara { 7271c8924ebSJan Kara spin_lock(&inode->i_lock); 7281c8924ebSJan Kara __inode_sub_bytes(inode, bytes); 7291da177e4SLinus Torvalds spin_unlock(&inode->i_lock); 7301da177e4SLinus Torvalds } 7311da177e4SLinus Torvalds 7321da177e4SLinus Torvalds EXPORT_SYMBOL(inode_sub_bytes); 7331da177e4SLinus Torvalds 7341da177e4SLinus Torvalds loff_t inode_get_bytes(struct inode *inode) 7351da177e4SLinus Torvalds { 7361da177e4SLinus Torvalds loff_t ret; 7371da177e4SLinus Torvalds 7381da177e4SLinus Torvalds spin_lock(&inode->i_lock); 739f4a8116aSJan Kara ret = __inode_get_bytes(inode); 7401da177e4SLinus Torvalds spin_unlock(&inode->i_lock); 7411da177e4SLinus Torvalds return ret; 7421da177e4SLinus Torvalds } 7431da177e4SLinus Torvalds 7441da177e4SLinus Torvalds EXPORT_SYMBOL(inode_get_bytes); 7451da177e4SLinus Torvalds 7461da177e4SLinus Torvalds void inode_set_bytes(struct inode *inode, loff_t bytes) 7471da177e4SLinus Torvalds { 7481da177e4SLinus Torvalds /* Caller is here responsible for sufficient locking 7491da177e4SLinus Torvalds * (ie. inode->i_lock) */ 7501da177e4SLinus Torvalds inode->i_blocks = bytes >> 9; 7511da177e4SLinus Torvalds inode->i_bytes = bytes & 511; 7521da177e4SLinus Torvalds } 7531da177e4SLinus Torvalds 7541da177e4SLinus Torvalds EXPORT_SYMBOL(inode_set_bytes); 755