blob: 14f45459c83d650fb09c4069d5dd7db907a67b95 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/stat.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
Paul Gortmaker630d9c42011-11-16 23:57:37 -05007#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
9#include <linux/errno.h>
10#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/highuid.h>
12#include <linux/fs.h>
13#include <linux/namei.h>
14#include <linux/security.h>
15#include <linux/syscalls.h>
Theodore Ts'oba52de12006-09-27 01:50:49 -070016#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/uaccess.h>
19#include <asm/unistd.h>
20
21void generic_fillattr(struct inode *inode, struct kstat *stat)
22{
23 stat->dev = inode->i_sb->s_dev;
24 stat->ino = inode->i_ino;
25 stat->mode = inode->i_mode;
26 stat->nlink = inode->i_nlink;
27 stat->uid = inode->i_uid;
28 stat->gid = inode->i_gid;
29 stat->rdev = inode->i_rdev;
Linus Torvalds3ddcd052011-08-06 22:45:50 -070030 stat->size = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 stat->atime = inode->i_atime;
32 stat->mtime = inode->i_mtime;
33 stat->ctime = inode->i_ctime;
Theodore Ts'oba52de12006-09-27 01:50:49 -070034 stat->blksize = (1 << inode->i_blkbits);
Linus Torvalds3ddcd052011-08-06 22:45:50 -070035 stat->blocks = inode->i_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
38EXPORT_SYMBOL(generic_fillattr);
39
40int vfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
41{
42 struct inode *inode = dentry->d_inode;
43 int retval;
44
45 retval = security_inode_getattr(mnt, dentry);
46 if (retval)
47 return retval;
48
49 if (inode->i_op->getattr)
50 return inode->i_op->getattr(mnt, dentry, stat);
51
52 generic_fillattr(inode, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 return 0;
54}
55
56EXPORT_SYMBOL(vfs_getattr);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058int vfs_fstat(unsigned int fd, struct kstat *stat)
59{
Al Viro2903ff02012-08-28 12:52:22 -040060 struct fd f = fdget_raw(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int error = -EBADF;
62
Al Viro2903ff02012-08-28 12:52:22 -040063 if (f.file) {
64 error = vfs_getattr(f.file->f_path.mnt, f.file->f_path.dentry,
65 stat);
66 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
68 return error;
69}
Linus Torvalds1da177e2005-04-16 15:20:36 -070070EXPORT_SYMBOL(vfs_fstat);
71
David Howellsc7887322010-08-11 11:26:22 +010072int vfs_fstatat(int dfd, const char __user *filename, struct kstat *stat,
73 int flag)
Oleg Drokin0112fc22009-04-08 20:05:42 +040074{
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040075 struct path path;
Oleg Drokin0112fc22009-04-08 20:05:42 +040076 int error = -EINVAL;
Jeff Layton836fb7e2012-12-11 12:10:05 -050077 unsigned int lookup_flags = 0;
Oleg Drokin0112fc22009-04-08 20:05:42 +040078
Al Viro65cfc672011-03-13 15:56:26 -040079 if ((flag & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT |
80 AT_EMPTY_PATH)) != 0)
Oleg Drokin0112fc22009-04-08 20:05:42 +040081 goto out;
82
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040083 if (!(flag & AT_SYMLINK_NOFOLLOW))
84 lookup_flags |= LOOKUP_FOLLOW;
Al Viro65cfc672011-03-13 15:56:26 -040085 if (flag & AT_EMPTY_PATH)
86 lookup_flags |= LOOKUP_EMPTY;
Jeff Layton836fb7e2012-12-11 12:10:05 -050087retry:
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040088 error = user_path_at(dfd, filename, lookup_flags, &path);
89 if (error)
90 goto out;
91
92 error = vfs_getattr(path.mnt, path.dentry, stat);
93 path_put(&path);
Jeff Layton836fb7e2012-12-11 12:10:05 -050094 if (retry_estale(error, lookup_flags)) {
95 lookup_flags |= LOOKUP_REVAL;
96 goto retry;
97 }
Oleg Drokin0112fc22009-04-08 20:05:42 +040098out:
99 return error;
100}
Oleg Drokin0112fc22009-04-08 20:05:42 +0400101EXPORT_SYMBOL(vfs_fstatat);
102
David Howellsc7887322010-08-11 11:26:22 +0100103int vfs_stat(const char __user *name, struct kstat *stat)
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400104{
105 return vfs_fstatat(AT_FDCWD, name, stat, 0);
106}
107EXPORT_SYMBOL(vfs_stat);
108
David Howellsc7887322010-08-11 11:26:22 +0100109int vfs_lstat(const char __user *name, struct kstat *stat)
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400110{
111 return vfs_fstatat(AT_FDCWD, name, stat, AT_SYMLINK_NOFOLLOW);
112}
113EXPORT_SYMBOL(vfs_lstat);
114
Oleg Drokin0112fc22009-04-08 20:05:42 +0400115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#ifdef __ARCH_WANT_OLD_STAT
117
118/*
119 * For backward compatibility? Maybe this should be moved
120 * into arch/i386 instead?
121 */
122static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat __user * statbuf)
123{
124 static int warncount = 5;
125 struct __old_kernel_stat tmp;
126
127 if (warncount > 0) {
128 warncount--;
129 printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n",
130 current->comm);
131 } else if (warncount < 0) {
132 /* it's laughable, but... */
133 warncount = 0;
134 }
135
136 memset(&tmp, 0, sizeof(struct __old_kernel_stat));
137 tmp.st_dev = old_encode_dev(stat->dev);
138 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700139 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
140 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 tmp.st_mode = stat->mode;
142 tmp.st_nlink = stat->nlink;
143 if (tmp.st_nlink != stat->nlink)
144 return -EOVERFLOW;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800145 SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid));
146 SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 tmp.st_rdev = old_encode_dev(stat->rdev);
148#if BITS_PER_LONG == 32
149 if (stat->size > MAX_NON_LFS)
150 return -EOVERFLOW;
151#endif
152 tmp.st_size = stat->size;
153 tmp.st_atime = stat->atime.tv_sec;
154 tmp.st_mtime = stat->mtime.tv_sec;
155 tmp.st_ctime = stat->ctime.tv_sec;
156 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
157}
158
David Howellsc7887322010-08-11 11:26:22 +0100159SYSCALL_DEFINE2(stat, const char __user *, filename,
160 struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400163 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400165 error = vfs_stat(filename, &stat);
166 if (error)
167 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400169 return cp_old_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
Heiko Carstens257ac262009-01-14 14:14:13 +0100171
David Howellsc7887322010-08-11 11:26:22 +0100172SYSCALL_DEFINE2(lstat, const char __user *, filename,
173 struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400176 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400178 error = vfs_lstat(filename, &stat);
179 if (error)
180 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400182 return cp_old_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
Heiko Carstens257ac262009-01-14 14:14:13 +0100184
185SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct kstat stat;
188 int error = vfs_fstat(fd, &stat);
189
190 if (!error)
191 error = cp_old_stat(&stat, statbuf);
192
193 return error;
194}
195
196#endif /* __ARCH_WANT_OLD_STAT */
197
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700198#if BITS_PER_LONG == 32
199# define choose_32_64(a,b) a
200#else
201# define choose_32_64(a,b) b
202#endif
203
204#define valid_dev(x) choose_32_64(old_valid_dev,new_valid_dev)(x)
205#define encode_dev(x) choose_32_64(old_encode_dev,new_encode_dev)(x)
206
Linus Torvalds8529f6132012-05-06 18:02:40 -0700207#ifndef INIT_STRUCT_STAT_PADDING
208# define INIT_STRUCT_STAT_PADDING(st) memset(&st, 0, sizeof(st))
209#endif
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static int cp_new_stat(struct kstat *stat, struct stat __user *statbuf)
212{
213 struct stat tmp;
214
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700215 if (!valid_dev(stat->dev) || !valid_dev(stat->rdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return -EOVERFLOW;
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700217#if BITS_PER_LONG == 32
218 if (stat->size > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return -EOVERFLOW;
220#endif
221
Linus Torvalds8529f6132012-05-06 18:02:40 -0700222 INIT_STRUCT_STAT_PADDING(tmp);
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700223 tmp.st_dev = encode_dev(stat->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700225 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
226 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 tmp.st_mode = stat->mode;
228 tmp.st_nlink = stat->nlink;
229 if (tmp.st_nlink != stat->nlink)
230 return -EOVERFLOW;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800231 SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid));
232 SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid));
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700233 tmp.st_rdev = encode_dev(stat->rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 tmp.st_size = stat->size;
235 tmp.st_atime = stat->atime.tv_sec;
236 tmp.st_mtime = stat->mtime.tv_sec;
237 tmp.st_ctime = stat->ctime.tv_sec;
238#ifdef STAT_HAVE_NSEC
239 tmp.st_atime_nsec = stat->atime.tv_nsec;
240 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
241 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
242#endif
243 tmp.st_blocks = stat->blocks;
244 tmp.st_blksize = stat->blksize;
245 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
246}
247
David Howellsc7887322010-08-11 11:26:22 +0100248SYSCALL_DEFINE2(newstat, const char __user *, filename,
249 struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400252 int error = vfs_stat(filename, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400254 if (error)
255 return error;
256 return cp_new_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800258
David Howellsc7887322010-08-11 11:26:22 +0100259SYSCALL_DEFINE2(newlstat, const char __user *, filename,
260 struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400263 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400265 error = vfs_lstat(filename, &stat);
266 if (error)
267 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400269 return cp_new_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800271
Andreas Schwab2833c282006-04-27 15:46:42 +0200272#if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT)
David Howellsc7887322010-08-11 11:26:22 +0100273SYSCALL_DEFINE4(newfstatat, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100274 struct stat __user *, statbuf, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800275{
276 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400277 int error;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800278
Oleg Drokin0112fc22009-04-08 20:05:42 +0400279 error = vfs_fstatat(dfd, filename, &stat, flag);
280 if (error)
281 return error;
282 return cp_new_stat(&stat, statbuf);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800283}
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800284#endif
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800285
Heiko Carstens257ac262009-01-14 14:14:13 +0100286SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct kstat stat;
289 int error = vfs_fstat(fd, &stat);
290
291 if (!error)
292 error = cp_new_stat(&stat, statbuf);
293
294 return error;
295}
296
Heiko Carstens6559eed82009-01-14 14:14:32 +0100297SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname,
298 char __user *, buf, int, bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Al Viro2d8f3032008-07-22 09:59:21 -0400300 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 int error;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100302 int empty = 0;
Jeff Layton79551192012-12-11 12:10:06 -0500303 unsigned int lookup_flags = LOOKUP_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 if (bufsiz <= 0)
306 return -EINVAL;
307
Jeff Layton79551192012-12-11 12:10:06 -0500308retry:
309 error = user_path_at_empty(dfd, pathname, lookup_flags, &path, &empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400311 struct inode *inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100313 error = empty ? -ENOENT : -EINVAL;
Al Viroacfa4382008-12-04 10:06:33 -0500314 if (inode->i_op->readlink) {
Al Viro2d8f3032008-07-22 09:59:21 -0400315 error = security_inode_readlink(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (!error) {
Al Viro68ac1232012-03-15 08:21:57 -0400317 touch_atime(&path);
Al Viro2d8f3032008-07-22 09:59:21 -0400318 error = inode->i_op->readlink(path.dentry,
Jan Blunck4ac91372008-02-14 19:34:32 -0800319 buf, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321 }
Al Viro2d8f3032008-07-22 09:59:21 -0400322 path_put(&path);
Jeff Layton79551192012-12-11 12:10:06 -0500323 if (retry_estale(error, lookup_flags)) {
324 lookup_flags |= LOOKUP_REVAL;
325 goto retry;
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 return error;
329}
330
Heiko Carstens002c8972009-01-14 14:14:18 +0100331SYSCALL_DEFINE3(readlink, const char __user *, path, char __user *, buf,
332 int, bufsiz)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800333{
334 return sys_readlinkat(AT_FDCWD, path, buf, bufsiz);
335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/* ---------- LFS-64 ----------- */
Catalin Marinas0753f702012-03-19 15:13:51 +0000339#if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Linus Torvalds8529f6132012-05-06 18:02:40 -0700341#ifndef INIT_STRUCT_STAT64_PADDING
342# define INIT_STRUCT_STAT64_PADDING(st) memset(&st, 0, sizeof(st))
343#endif
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf)
346{
347 struct stat64 tmp;
348
Linus Torvalds8529f6132012-05-06 18:02:40 -0700349 INIT_STRUCT_STAT64_PADDING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#ifdef CONFIG_MIPS
351 /* mips has weird padding, so we don't get 64 bits there */
352 if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
353 return -EOVERFLOW;
354 tmp.st_dev = new_encode_dev(stat->dev);
355 tmp.st_rdev = new_encode_dev(stat->rdev);
356#else
357 tmp.st_dev = huge_encode_dev(stat->dev);
358 tmp.st_rdev = huge_encode_dev(stat->rdev);
359#endif
360 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700361 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
362 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363#ifdef STAT64_HAS_BROKEN_ST_INO
364 tmp.__st_ino = stat->ino;
365#endif
366 tmp.st_mode = stat->mode;
367 tmp.st_nlink = stat->nlink;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800368 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
369 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 tmp.st_atime = stat->atime.tv_sec;
371 tmp.st_atime_nsec = stat->atime.tv_nsec;
372 tmp.st_mtime = stat->mtime.tv_sec;
373 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
374 tmp.st_ctime = stat->ctime.tv_sec;
375 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
376 tmp.st_size = stat->size;
377 tmp.st_blocks = stat->blocks;
378 tmp.st_blksize = stat->blksize;
379 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
380}
381
David Howellsc7887322010-08-11 11:26:22 +0100382SYSCALL_DEFINE2(stat64, const char __user *, filename,
383 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct kstat stat;
386 int error = vfs_stat(filename, &stat);
387
388 if (!error)
389 error = cp_new_stat64(&stat, statbuf);
390
391 return error;
392}
Heiko Carstens257ac262009-01-14 14:14:13 +0100393
David Howellsc7887322010-08-11 11:26:22 +0100394SYSCALL_DEFINE2(lstat64, const char __user *, filename,
395 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct kstat stat;
398 int error = vfs_lstat(filename, &stat);
399
400 if (!error)
401 error = cp_new_stat64(&stat, statbuf);
402
403 return error;
404}
Heiko Carstens257ac262009-01-14 14:14:13 +0100405
406SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct kstat stat;
409 int error = vfs_fstat(fd, &stat);
410
411 if (!error)
412 error = cp_new_stat64(&stat, statbuf);
413
414 return error;
415}
416
David Howellsc7887322010-08-11 11:26:22 +0100417SYSCALL_DEFINE4(fstatat64, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100418 struct stat64 __user *, statbuf, int, flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800419{
420 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400421 int error;
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800422
Oleg Drokin0112fc22009-04-08 20:05:42 +0400423 error = vfs_fstatat(dfd, filename, &stat, flag);
424 if (error)
425 return error;
426 return cp_new_stat64(&stat, statbuf);
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800427}
Catalin Marinas0753f702012-03-19 15:13:51 +0000428#endif /* __ARCH_WANT_STAT64 || __ARCH_WANT_COMPAT_STAT64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300430/* Caller is here responsible for sufficient locking (ie. inode->i_lock) */
431void __inode_add_bytes(struct inode *inode, loff_t bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 inode->i_blocks += bytes >> 9;
434 bytes &= 511;
435 inode->i_bytes += bytes;
436 if (inode->i_bytes >= 512) {
437 inode->i_blocks++;
438 inode->i_bytes -= 512;
439 }
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300440}
441
442void inode_add_bytes(struct inode *inode, loff_t bytes)
443{
444 spin_lock(&inode->i_lock);
445 __inode_add_bytes(inode, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 spin_unlock(&inode->i_lock);
447}
448
449EXPORT_SYMBOL(inode_add_bytes);
450
451void inode_sub_bytes(struct inode *inode, loff_t bytes)
452{
453 spin_lock(&inode->i_lock);
454 inode->i_blocks -= bytes >> 9;
455 bytes &= 511;
456 if (inode->i_bytes < bytes) {
457 inode->i_blocks--;
458 inode->i_bytes += 512;
459 }
460 inode->i_bytes -= bytes;
461 spin_unlock(&inode->i_lock);
462}
463
464EXPORT_SYMBOL(inode_sub_bytes);
465
466loff_t inode_get_bytes(struct inode *inode)
467{
468 loff_t ret;
469
470 spin_lock(&inode->i_lock);
471 ret = (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
472 spin_unlock(&inode->i_lock);
473 return ret;
474}
475
476EXPORT_SYMBOL(inode_get_bytes);
477
478void inode_set_bytes(struct inode *inode, loff_t bytes)
479{
480 /* Caller is here responsible for sufficient locking
481 * (ie. inode->i_lock) */
482 inode->i_blocks = bytes >> 9;
483 inode->i_bytes = bytes & 511;
484}
485
486EXPORT_SYMBOL(inode_set_bytes);