blob: d221995278803c20f91aa089dcc9823cc3c34da8 [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 Torvalds8529f612012-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 Torvalds8529f612012-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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if (bufsiz <= 0)
305 return -EINVAL;
306
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100307 error = user_path_at_empty(dfd, pathname, LOOKUP_EMPTY, &path, &empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400309 struct inode *inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100311 error = empty ? -ENOENT : -EINVAL;
Al Viroacfa4382008-12-04 10:06:33 -0500312 if (inode->i_op->readlink) {
Al Viro2d8f3032008-07-22 09:59:21 -0400313 error = security_inode_readlink(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (!error) {
Al Viro68ac1232012-03-15 08:21:57 -0400315 touch_atime(&path);
Al Viro2d8f3032008-07-22 09:59:21 -0400316 error = inode->i_op->readlink(path.dentry,
Jan Blunck4ac91372008-02-14 19:34:32 -0800317 buf, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 }
Al Viro2d8f3032008-07-22 09:59:21 -0400320 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 return error;
323}
324
Heiko Carstens002c8972009-01-14 14:14:18 +0100325SYSCALL_DEFINE3(readlink, const char __user *, path, char __user *, buf,
326 int, bufsiz)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800327{
328 return sys_readlinkat(AT_FDCWD, path, buf, bufsiz);
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332/* ---------- LFS-64 ----------- */
Catalin Marinas0753f702012-03-19 15:13:51 +0000333#if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linus Torvalds8529f612012-05-06 18:02:40 -0700335#ifndef INIT_STRUCT_STAT64_PADDING
336# define INIT_STRUCT_STAT64_PADDING(st) memset(&st, 0, sizeof(st))
337#endif
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf)
340{
341 struct stat64 tmp;
342
Linus Torvalds8529f612012-05-06 18:02:40 -0700343 INIT_STRUCT_STAT64_PADDING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#ifdef CONFIG_MIPS
345 /* mips has weird padding, so we don't get 64 bits there */
346 if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
347 return -EOVERFLOW;
348 tmp.st_dev = new_encode_dev(stat->dev);
349 tmp.st_rdev = new_encode_dev(stat->rdev);
350#else
351 tmp.st_dev = huge_encode_dev(stat->dev);
352 tmp.st_rdev = huge_encode_dev(stat->rdev);
353#endif
354 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700355 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
356 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#ifdef STAT64_HAS_BROKEN_ST_INO
358 tmp.__st_ino = stat->ino;
359#endif
360 tmp.st_mode = stat->mode;
361 tmp.st_nlink = stat->nlink;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800362 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
363 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 tmp.st_atime = stat->atime.tv_sec;
365 tmp.st_atime_nsec = stat->atime.tv_nsec;
366 tmp.st_mtime = stat->mtime.tv_sec;
367 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
368 tmp.st_ctime = stat->ctime.tv_sec;
369 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
370 tmp.st_size = stat->size;
371 tmp.st_blocks = stat->blocks;
372 tmp.st_blksize = stat->blksize;
373 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
374}
375
David Howellsc7887322010-08-11 11:26:22 +0100376SYSCALL_DEFINE2(stat64, const char __user *, filename,
377 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 struct kstat stat;
380 int error = vfs_stat(filename, &stat);
381
382 if (!error)
383 error = cp_new_stat64(&stat, statbuf);
384
385 return error;
386}
Heiko Carstens257ac262009-01-14 14:14:13 +0100387
David Howellsc7887322010-08-11 11:26:22 +0100388SYSCALL_DEFINE2(lstat64, const char __user *, filename,
389 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 struct kstat stat;
392 int error = vfs_lstat(filename, &stat);
393
394 if (!error)
395 error = cp_new_stat64(&stat, statbuf);
396
397 return error;
398}
Heiko Carstens257ac262009-01-14 14:14:13 +0100399
400SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 struct kstat stat;
403 int error = vfs_fstat(fd, &stat);
404
405 if (!error)
406 error = cp_new_stat64(&stat, statbuf);
407
408 return error;
409}
410
David Howellsc7887322010-08-11 11:26:22 +0100411SYSCALL_DEFINE4(fstatat64, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100412 struct stat64 __user *, statbuf, int, flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800413{
414 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400415 int error;
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800416
Oleg Drokin0112fc22009-04-08 20:05:42 +0400417 error = vfs_fstatat(dfd, filename, &stat, flag);
418 if (error)
419 return error;
420 return cp_new_stat64(&stat, statbuf);
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800421}
Catalin Marinas0753f702012-03-19 15:13:51 +0000422#endif /* __ARCH_WANT_STAT64 || __ARCH_WANT_COMPAT_STAT64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300424/* Caller is here responsible for sufficient locking (ie. inode->i_lock) */
425void __inode_add_bytes(struct inode *inode, loff_t bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 inode->i_blocks += bytes >> 9;
428 bytes &= 511;
429 inode->i_bytes += bytes;
430 if (inode->i_bytes >= 512) {
431 inode->i_blocks++;
432 inode->i_bytes -= 512;
433 }
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300434}
435
436void inode_add_bytes(struct inode *inode, loff_t bytes)
437{
438 spin_lock(&inode->i_lock);
439 __inode_add_bytes(inode, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 spin_unlock(&inode->i_lock);
441}
442
443EXPORT_SYMBOL(inode_add_bytes);
444
445void inode_sub_bytes(struct inode *inode, loff_t bytes)
446{
447 spin_lock(&inode->i_lock);
448 inode->i_blocks -= bytes >> 9;
449 bytes &= 511;
450 if (inode->i_bytes < bytes) {
451 inode->i_blocks--;
452 inode->i_bytes += 512;
453 }
454 inode->i_bytes -= bytes;
455 spin_unlock(&inode->i_lock);
456}
457
458EXPORT_SYMBOL(inode_sub_bytes);
459
460loff_t inode_get_bytes(struct inode *inode)
461{
462 loff_t ret;
463
464 spin_lock(&inode->i_lock);
465 ret = (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
466 spin_unlock(&inode->i_lock);
467 return ret;
468}
469
470EXPORT_SYMBOL(inode_get_bytes);
471
472void inode_set_bytes(struct inode *inode, loff_t bytes)
473{
474 /* Caller is here responsible for sufficient locking
475 * (ie. inode->i_lock) */
476 inode->i_blocks = bytes >> 9;
477 inode->i_bytes = bytes & 511;
478}
479
480EXPORT_SYMBOL(inode_set_bytes);