blob: d5c61cf2b7033cb459920b556b235d38b865596c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
8#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;
30 stat->atime = inode->i_atime;
31 stat->mtime = inode->i_mtime;
32 stat->ctime = inode->i_ctime;
33 stat->size = i_size_read(inode);
34 stat->blocks = inode->i_blocks;
Theodore Ts'oba52de12006-09-27 01:50:49 -070035 stat->blksize = (1 << inode->i_blkbits);
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{
60 struct file *f = fget(fd);
61 int error = -EBADF;
62
63 if (f) {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -080064 error = vfs_getattr(f->f_path.mnt, f->f_path.dentry, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 fput(f);
66 }
67 return error;
68}
Linus Torvalds1da177e2005-04-16 15:20:36 -070069EXPORT_SYMBOL(vfs_fstat);
70
David Howellsc7887322010-08-11 11:26:22 +010071int vfs_fstatat(int dfd, const char __user *filename, struct kstat *stat,
72 int flag)
Oleg Drokin0112fc22009-04-08 20:05:42 +040073{
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040074 struct path path;
Oleg Drokin0112fc22009-04-08 20:05:42 +040075 int error = -EINVAL;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040076 int lookup_flags = 0;
Oleg Drokin0112fc22009-04-08 20:05:42 +040077
David Howells6f45b652011-01-14 18:45:31 +000078 if ((flag & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT)) != 0)
Oleg Drokin0112fc22009-04-08 20:05:42 +040079 goto out;
80
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040081 if (!(flag & AT_SYMLINK_NOFOLLOW))
82 lookup_flags |= LOOKUP_FOLLOW;
David Howells6f45b652011-01-14 18:45:31 +000083 if (flag & AT_NO_AUTOMOUNT)
84 lookup_flags |= LOOKUP_NO_AUTOMOUNT;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040085
86 error = user_path_at(dfd, filename, lookup_flags, &path);
87 if (error)
88 goto out;
89
90 error = vfs_getattr(path.mnt, path.dentry, stat);
91 path_put(&path);
Oleg Drokin0112fc22009-04-08 20:05:42 +040092out:
93 return error;
94}
Oleg Drokin0112fc22009-04-08 20:05:42 +040095EXPORT_SYMBOL(vfs_fstatat);
96
David Howellsc7887322010-08-11 11:26:22 +010097int vfs_stat(const char __user *name, struct kstat *stat)
Christoph Hellwig2eae7a12009-04-08 16:34:03 -040098{
99 return vfs_fstatat(AT_FDCWD, name, stat, 0);
100}
101EXPORT_SYMBOL(vfs_stat);
102
David Howellsc7887322010-08-11 11:26:22 +0100103int vfs_lstat(const char __user *name, struct kstat *stat)
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400104{
105 return vfs_fstatat(AT_FDCWD, name, stat, AT_SYMLINK_NOFOLLOW);
106}
107EXPORT_SYMBOL(vfs_lstat);
108
Oleg Drokin0112fc22009-04-08 20:05:42 +0400109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#ifdef __ARCH_WANT_OLD_STAT
111
112/*
113 * For backward compatibility? Maybe this should be moved
114 * into arch/i386 instead?
115 */
116static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat __user * statbuf)
117{
118 static int warncount = 5;
119 struct __old_kernel_stat tmp;
120
121 if (warncount > 0) {
122 warncount--;
123 printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n",
124 current->comm);
125 } else if (warncount < 0) {
126 /* it's laughable, but... */
127 warncount = 0;
128 }
129
130 memset(&tmp, 0, sizeof(struct __old_kernel_stat));
131 tmp.st_dev = old_encode_dev(stat->dev);
132 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700133 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
134 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 tmp.st_mode = stat->mode;
136 tmp.st_nlink = stat->nlink;
137 if (tmp.st_nlink != stat->nlink)
138 return -EOVERFLOW;
139 SET_UID(tmp.st_uid, stat->uid);
140 SET_GID(tmp.st_gid, stat->gid);
141 tmp.st_rdev = old_encode_dev(stat->rdev);
142#if BITS_PER_LONG == 32
143 if (stat->size > MAX_NON_LFS)
144 return -EOVERFLOW;
145#endif
146 tmp.st_size = stat->size;
147 tmp.st_atime = stat->atime.tv_sec;
148 tmp.st_mtime = stat->mtime.tv_sec;
149 tmp.st_ctime = stat->ctime.tv_sec;
150 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
151}
152
David Howellsc7887322010-08-11 11:26:22 +0100153SYSCALL_DEFINE2(stat, const char __user *, filename,
154 struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400157 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400159 error = vfs_stat(filename, &stat);
160 if (error)
161 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400163 return cp_old_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
Heiko Carstens257ac262009-01-14 14:14:13 +0100165
David Howellsc7887322010-08-11 11:26:22 +0100166SYSCALL_DEFINE2(lstat, const char __user *, filename,
167 struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400170 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400172 error = vfs_lstat(filename, &stat);
173 if (error)
174 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400176 return cp_old_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
Heiko Carstens257ac262009-01-14 14:14:13 +0100178
179SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct kstat stat;
182 int error = vfs_fstat(fd, &stat);
183
184 if (!error)
185 error = cp_old_stat(&stat, statbuf);
186
187 return error;
188}
189
190#endif /* __ARCH_WANT_OLD_STAT */
191
192static int cp_new_stat(struct kstat *stat, struct stat __user *statbuf)
193{
194 struct stat tmp;
195
196#if BITS_PER_LONG == 32
197 if (!old_valid_dev(stat->dev) || !old_valid_dev(stat->rdev))
198 return -EOVERFLOW;
199#else
200 if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
201 return -EOVERFLOW;
202#endif
203
204 memset(&tmp, 0, sizeof(tmp));
205#if BITS_PER_LONG == 32
206 tmp.st_dev = old_encode_dev(stat->dev);
207#else
208 tmp.st_dev = new_encode_dev(stat->dev);
209#endif
210 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700211 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
212 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 tmp.st_mode = stat->mode;
214 tmp.st_nlink = stat->nlink;
215 if (tmp.st_nlink != stat->nlink)
216 return -EOVERFLOW;
217 SET_UID(tmp.st_uid, stat->uid);
218 SET_GID(tmp.st_gid, stat->gid);
219#if BITS_PER_LONG == 32
220 tmp.st_rdev = old_encode_dev(stat->rdev);
221#else
222 tmp.st_rdev = new_encode_dev(stat->rdev);
223#endif
224#if BITS_PER_LONG == 32
225 if (stat->size > MAX_NON_LFS)
226 return -EOVERFLOW;
227#endif
228 tmp.st_size = stat->size;
229 tmp.st_atime = stat->atime.tv_sec;
230 tmp.st_mtime = stat->mtime.tv_sec;
231 tmp.st_ctime = stat->ctime.tv_sec;
232#ifdef STAT_HAVE_NSEC
233 tmp.st_atime_nsec = stat->atime.tv_nsec;
234 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
235 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
236#endif
237 tmp.st_blocks = stat->blocks;
238 tmp.st_blksize = stat->blksize;
239 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
240}
241
David Howellsc7887322010-08-11 11:26:22 +0100242SYSCALL_DEFINE2(newstat, const char __user *, filename,
243 struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400246 int error = vfs_stat(filename, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400248 if (error)
249 return error;
250 return cp_new_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800252
David Howellsc7887322010-08-11 11:26:22 +0100253SYSCALL_DEFINE2(newlstat, const char __user *, filename,
254 struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400257 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400259 error = vfs_lstat(filename, &stat);
260 if (error)
261 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400263 return cp_new_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800265
Andreas Schwab2833c282006-04-27 15:46:42 +0200266#if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT)
David Howellsc7887322010-08-11 11:26:22 +0100267SYSCALL_DEFINE4(newfstatat, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100268 struct stat __user *, statbuf, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800269{
270 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400271 int error;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800272
Oleg Drokin0112fc22009-04-08 20:05:42 +0400273 error = vfs_fstatat(dfd, filename, &stat, flag);
274 if (error)
275 return error;
276 return cp_new_stat(&stat, statbuf);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800277}
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800278#endif
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800279
Heiko Carstens257ac262009-01-14 14:14:13 +0100280SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct kstat stat;
283 int error = vfs_fstat(fd, &stat);
284
285 if (!error)
286 error = cp_new_stat(&stat, statbuf);
287
288 return error;
289}
290
Heiko Carstens6559eed82009-01-14 14:14:32 +0100291SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname,
292 char __user *, buf, int, bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Al Viro2d8f3032008-07-22 09:59:21 -0400294 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int error;
296
297 if (bufsiz <= 0)
298 return -EINVAL;
299
Al Viro2d8f3032008-07-22 09:59:21 -0400300 error = user_path_at(dfd, pathname, 0, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400302 struct inode *inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 error = -EINVAL;
Al Viroacfa4382008-12-04 10:06:33 -0500305 if (inode->i_op->readlink) {
Al Viro2d8f3032008-07-22 09:59:21 -0400306 error = security_inode_readlink(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400308 touch_atime(path.mnt, path.dentry);
309 error = inode->i_op->readlink(path.dentry,
Jan Blunck4ac91372008-02-14 19:34:32 -0800310 buf, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 }
Al Viro2d8f3032008-07-22 09:59:21 -0400313 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315 return error;
316}
317
Heiko Carstens002c8972009-01-14 14:14:18 +0100318SYSCALL_DEFINE3(readlink, const char __user *, path, char __user *, buf,
319 int, bufsiz)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800320{
321 return sys_readlinkat(AT_FDCWD, path, buf, bufsiz);
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325/* ---------- LFS-64 ----------- */
326#ifdef __ARCH_WANT_STAT64
327
328static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf)
329{
330 struct stat64 tmp;
331
332 memset(&tmp, 0, sizeof(struct stat64));
333#ifdef CONFIG_MIPS
334 /* mips has weird padding, so we don't get 64 bits there */
335 if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
336 return -EOVERFLOW;
337 tmp.st_dev = new_encode_dev(stat->dev);
338 tmp.st_rdev = new_encode_dev(stat->rdev);
339#else
340 tmp.st_dev = huge_encode_dev(stat->dev);
341 tmp.st_rdev = huge_encode_dev(stat->rdev);
342#endif
343 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700344 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
345 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#ifdef STAT64_HAS_BROKEN_ST_INO
347 tmp.__st_ino = stat->ino;
348#endif
349 tmp.st_mode = stat->mode;
350 tmp.st_nlink = stat->nlink;
351 tmp.st_uid = stat->uid;
352 tmp.st_gid = stat->gid;
353 tmp.st_atime = stat->atime.tv_sec;
354 tmp.st_atime_nsec = stat->atime.tv_nsec;
355 tmp.st_mtime = stat->mtime.tv_sec;
356 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
357 tmp.st_ctime = stat->ctime.tv_sec;
358 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
359 tmp.st_size = stat->size;
360 tmp.st_blocks = stat->blocks;
361 tmp.st_blksize = stat->blksize;
362 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
363}
364
David Howellsc7887322010-08-11 11:26:22 +0100365SYSCALL_DEFINE2(stat64, const char __user *, filename,
366 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct kstat stat;
369 int error = vfs_stat(filename, &stat);
370
371 if (!error)
372 error = cp_new_stat64(&stat, statbuf);
373
374 return error;
375}
Heiko Carstens257ac262009-01-14 14:14:13 +0100376
David Howellsc7887322010-08-11 11:26:22 +0100377SYSCALL_DEFINE2(lstat64, const char __user *, filename,
378 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 struct kstat stat;
381 int error = vfs_lstat(filename, &stat);
382
383 if (!error)
384 error = cp_new_stat64(&stat, statbuf);
385
386 return error;
387}
Heiko Carstens257ac262009-01-14 14:14:13 +0100388
389SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 struct kstat stat;
392 int error = vfs_fstat(fd, &stat);
393
394 if (!error)
395 error = cp_new_stat64(&stat, statbuf);
396
397 return error;
398}
399
David Howellsc7887322010-08-11 11:26:22 +0100400SYSCALL_DEFINE4(fstatat64, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100401 struct stat64 __user *, statbuf, int, flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800402{
403 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400404 int error;
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800405
Oleg Drokin0112fc22009-04-08 20:05:42 +0400406 error = vfs_fstatat(dfd, filename, &stat, flag);
407 if (error)
408 return error;
409 return cp_new_stat64(&stat, statbuf);
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800410}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#endif /* __ARCH_WANT_STAT64 */
412
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300413/* Caller is here responsible for sufficient locking (ie. inode->i_lock) */
414void __inode_add_bytes(struct inode *inode, loff_t bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 inode->i_blocks += bytes >> 9;
417 bytes &= 511;
418 inode->i_bytes += bytes;
419 if (inode->i_bytes >= 512) {
420 inode->i_blocks++;
421 inode->i_bytes -= 512;
422 }
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300423}
424
425void inode_add_bytes(struct inode *inode, loff_t bytes)
426{
427 spin_lock(&inode->i_lock);
428 __inode_add_bytes(inode, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 spin_unlock(&inode->i_lock);
430}
431
432EXPORT_SYMBOL(inode_add_bytes);
433
434void inode_sub_bytes(struct inode *inode, loff_t bytes)
435{
436 spin_lock(&inode->i_lock);
437 inode->i_blocks -= bytes >> 9;
438 bytes &= 511;
439 if (inode->i_bytes < bytes) {
440 inode->i_blocks--;
441 inode->i_bytes += 512;
442 }
443 inode->i_bytes -= bytes;
444 spin_unlock(&inode->i_lock);
445}
446
447EXPORT_SYMBOL(inode_sub_bytes);
448
449loff_t inode_get_bytes(struct inode *inode)
450{
451 loff_t ret;
452
453 spin_lock(&inode->i_lock);
454 ret = (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
455 spin_unlock(&inode->i_lock);
456 return ret;
457}
458
459EXPORT_SYMBOL(inode_get_bytes);
460
461void inode_set_bytes(struct inode *inode, loff_t bytes)
462{
463 /* Caller is here responsible for sufficient locking
464 * (ie. inode->i_lock) */
465 inode->i_blocks = bytes >> 9;
466 inode->i_bytes = bytes & 511;
467}
468
469EXPORT_SYMBOL(inode_set_bytes);