4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/module.h>
9 #include <linux/errno.h>
10 #include <linux/file.h>
11 #include <linux/highuid.h>
13 #include <linux/namei.h>
14 #include <linux/security.h>
15 #include <linux/syscalls.h>
16 #include <linux/pagemap.h>
18 #include <asm/uaccess.h>
19 #include <asm/unistd.h>
21 void generic_fillattr(struct inode
*inode
, struct kstat
*stat
)
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
;
35 stat
->blksize
= (1 << inode
->i_blkbits
);
38 EXPORT_SYMBOL(generic_fillattr
);
40 int vfs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
42 struct inode
*inode
= dentry
->d_inode
;
45 retval
= security_inode_getattr(mnt
, dentry
);
49 if (inode
->i_op
->getattr
)
50 return inode
->i_op
->getattr(mnt
, dentry
, stat
);
52 generic_fillattr(inode
, stat
);
56 EXPORT_SYMBOL(vfs_getattr
);
58 int vfs_stat_fd(int dfd
, char __user
*name
, struct kstat
*stat
)
63 error
= user_path_at(dfd
, name
, LOOKUP_FOLLOW
, &path
);
65 error
= vfs_getattr(path
.mnt
, path
.dentry
, stat
);
71 int vfs_stat(char __user
*name
, struct kstat
*stat
)
73 return vfs_stat_fd(AT_FDCWD
, name
, stat
);
76 EXPORT_SYMBOL(vfs_stat
);
78 int vfs_lstat_fd(int dfd
, char __user
*name
, struct kstat
*stat
)
83 error
= user_path_at(dfd
, name
, 0, &path
);
85 error
= vfs_getattr(path
.mnt
, path
.dentry
, stat
);
91 int vfs_lstat(char __user
*name
, struct kstat
*stat
)
93 return vfs_lstat_fd(AT_FDCWD
, name
, stat
);
96 EXPORT_SYMBOL(vfs_lstat
);
98 int vfs_fstat(unsigned int fd
, struct kstat
*stat
)
100 struct file
*f
= fget(fd
);
104 error
= vfs_getattr(f
->f_path
.mnt
, f
->f_path
.dentry
, stat
);
110 EXPORT_SYMBOL(vfs_fstat
);
112 #ifdef __ARCH_WANT_OLD_STAT
115 * For backward compatibility? Maybe this should be moved
116 * into arch/i386 instead?
118 static int cp_old_stat(struct kstat
*stat
, struct __old_kernel_stat __user
* statbuf
)
120 static int warncount
= 5;
121 struct __old_kernel_stat tmp
;
125 printk(KERN_WARNING
"VFS: Warning: %s using old stat() call. Recompile your binary.\n",
127 } else if (warncount
< 0) {
128 /* it's laughable, but... */
132 memset(&tmp
, 0, sizeof(struct __old_kernel_stat
));
133 tmp
.st_dev
= old_encode_dev(stat
->dev
);
134 tmp
.st_ino
= stat
->ino
;
135 if (sizeof(tmp
.st_ino
) < sizeof(stat
->ino
) && tmp
.st_ino
!= stat
->ino
)
137 tmp
.st_mode
= stat
->mode
;
138 tmp
.st_nlink
= stat
->nlink
;
139 if (tmp
.st_nlink
!= stat
->nlink
)
141 SET_UID(tmp
.st_uid
, stat
->uid
);
142 SET_GID(tmp
.st_gid
, stat
->gid
);
143 tmp
.st_rdev
= old_encode_dev(stat
->rdev
);
144 #if BITS_PER_LONG == 32
145 if (stat
->size
> MAX_NON_LFS
)
148 tmp
.st_size
= stat
->size
;
149 tmp
.st_atime
= stat
->atime
.tv_sec
;
150 tmp
.st_mtime
= stat
->mtime
.tv_sec
;
151 tmp
.st_ctime
= stat
->ctime
.tv_sec
;
152 return copy_to_user(statbuf
,&tmp
,sizeof(tmp
)) ? -EFAULT
: 0;
155 SYSCALL_DEFINE2(stat
, char __user
*, filename
, struct __old_kernel_stat __user
*, statbuf
)
158 int error
= vfs_stat_fd(AT_FDCWD
, filename
, &stat
);
161 error
= cp_old_stat(&stat
, statbuf
);
166 SYSCALL_DEFINE2(lstat
, char __user
*, filename
, struct __old_kernel_stat __user
*, statbuf
)
169 int error
= vfs_lstat_fd(AT_FDCWD
, filename
, &stat
);
172 error
= cp_old_stat(&stat
, statbuf
);
177 SYSCALL_DEFINE2(fstat
, unsigned int, fd
, struct __old_kernel_stat __user
*, statbuf
)
180 int error
= vfs_fstat(fd
, &stat
);
183 error
= cp_old_stat(&stat
, statbuf
);
188 #endif /* __ARCH_WANT_OLD_STAT */
190 static int cp_new_stat(struct kstat
*stat
, struct stat __user
*statbuf
)
194 #if BITS_PER_LONG == 32
195 if (!old_valid_dev(stat
->dev
) || !old_valid_dev(stat
->rdev
))
198 if (!new_valid_dev(stat
->dev
) || !new_valid_dev(stat
->rdev
))
202 memset(&tmp
, 0, sizeof(tmp
));
203 #if BITS_PER_LONG == 32
204 tmp
.st_dev
= old_encode_dev(stat
->dev
);
206 tmp
.st_dev
= new_encode_dev(stat
->dev
);
208 tmp
.st_ino
= stat
->ino
;
209 if (sizeof(tmp
.st_ino
) < sizeof(stat
->ino
) && tmp
.st_ino
!= stat
->ino
)
211 tmp
.st_mode
= stat
->mode
;
212 tmp
.st_nlink
= stat
->nlink
;
213 if (tmp
.st_nlink
!= stat
->nlink
)
215 SET_UID(tmp
.st_uid
, stat
->uid
);
216 SET_GID(tmp
.st_gid
, stat
->gid
);
217 #if BITS_PER_LONG == 32
218 tmp
.st_rdev
= old_encode_dev(stat
->rdev
);
220 tmp
.st_rdev
= new_encode_dev(stat
->rdev
);
222 #if BITS_PER_LONG == 32
223 if (stat
->size
> MAX_NON_LFS
)
226 tmp
.st_size
= stat
->size
;
227 tmp
.st_atime
= stat
->atime
.tv_sec
;
228 tmp
.st_mtime
= stat
->mtime
.tv_sec
;
229 tmp
.st_ctime
= stat
->ctime
.tv_sec
;
230 #ifdef STAT_HAVE_NSEC
231 tmp
.st_atime_nsec
= stat
->atime
.tv_nsec
;
232 tmp
.st_mtime_nsec
= stat
->mtime
.tv_nsec
;
233 tmp
.st_ctime_nsec
= stat
->ctime
.tv_nsec
;
235 tmp
.st_blocks
= stat
->blocks
;
236 tmp
.st_blksize
= stat
->blksize
;
237 return copy_to_user(statbuf
,&tmp
,sizeof(tmp
)) ? -EFAULT
: 0;
240 SYSCALL_DEFINE2(newstat
, char __user
*, filename
, struct stat __user
*, statbuf
)
243 int error
= vfs_stat_fd(AT_FDCWD
, filename
, &stat
);
246 error
= cp_new_stat(&stat
, statbuf
);
251 SYSCALL_DEFINE2(newlstat
, char __user
*, filename
, struct stat __user
*, statbuf
)
254 int error
= vfs_lstat_fd(AT_FDCWD
, filename
, &stat
);
257 error
= cp_new_stat(&stat
, statbuf
);
262 #if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT)
263 SYSCALL_DEFINE4(newfstatat
, int, dfd
, char __user
*, filename
,
264 struct stat __user
*, statbuf
, int, flag
)
269 if ((flag
& ~AT_SYMLINK_NOFOLLOW
) != 0)
272 if (flag
& AT_SYMLINK_NOFOLLOW
)
273 error
= vfs_lstat_fd(dfd
, filename
, &stat
);
275 error
= vfs_stat_fd(dfd
, filename
, &stat
);
278 error
= cp_new_stat(&stat
, statbuf
);
285 SYSCALL_DEFINE2(newfstat
, unsigned int, fd
, struct stat __user
*, statbuf
)
288 int error
= vfs_fstat(fd
, &stat
);
291 error
= cp_new_stat(&stat
, statbuf
);
296 SYSCALL_DEFINE4(readlinkat
, int, dfd
, const char __user
*, pathname
,
297 char __user
*, buf
, int, bufsiz
)
305 error
= user_path_at(dfd
, pathname
, 0, &path
);
307 struct inode
*inode
= path
.dentry
->d_inode
;
310 if (inode
->i_op
->readlink
) {
311 error
= security_inode_readlink(path
.dentry
);
313 touch_atime(path
.mnt
, path
.dentry
);
314 error
= inode
->i_op
->readlink(path
.dentry
,
323 SYSCALL_DEFINE3(readlink
, const char __user
*, path
, char __user
*, buf
,
326 return sys_readlinkat(AT_FDCWD
, path
, buf
, bufsiz
);
330 /* ---------- LFS-64 ----------- */
331 #ifdef __ARCH_WANT_STAT64
333 static long cp_new_stat64(struct kstat
*stat
, struct stat64 __user
*statbuf
)
337 memset(&tmp
, 0, sizeof(struct stat64
));
339 /* mips has weird padding, so we don't get 64 bits there */
340 if (!new_valid_dev(stat
->dev
) || !new_valid_dev(stat
->rdev
))
342 tmp
.st_dev
= new_encode_dev(stat
->dev
);
343 tmp
.st_rdev
= new_encode_dev(stat
->rdev
);
345 tmp
.st_dev
= huge_encode_dev(stat
->dev
);
346 tmp
.st_rdev
= huge_encode_dev(stat
->rdev
);
348 tmp
.st_ino
= stat
->ino
;
349 if (sizeof(tmp
.st_ino
) < sizeof(stat
->ino
) && tmp
.st_ino
!= stat
->ino
)
351 #ifdef STAT64_HAS_BROKEN_ST_INO
352 tmp
.__st_ino
= stat
->ino
;
354 tmp
.st_mode
= stat
->mode
;
355 tmp
.st_nlink
= stat
->nlink
;
356 tmp
.st_uid
= stat
->uid
;
357 tmp
.st_gid
= stat
->gid
;
358 tmp
.st_atime
= stat
->atime
.tv_sec
;
359 tmp
.st_atime_nsec
= stat
->atime
.tv_nsec
;
360 tmp
.st_mtime
= stat
->mtime
.tv_sec
;
361 tmp
.st_mtime_nsec
= stat
->mtime
.tv_nsec
;
362 tmp
.st_ctime
= stat
->ctime
.tv_sec
;
363 tmp
.st_ctime_nsec
= stat
->ctime
.tv_nsec
;
364 tmp
.st_size
= stat
->size
;
365 tmp
.st_blocks
= stat
->blocks
;
366 tmp
.st_blksize
= stat
->blksize
;
367 return copy_to_user(statbuf
,&tmp
,sizeof(tmp
)) ? -EFAULT
: 0;
370 SYSCALL_DEFINE2(stat64
, char __user
*, filename
, struct stat64 __user
*, statbuf
)
373 int error
= vfs_stat(filename
, &stat
);
376 error
= cp_new_stat64(&stat
, statbuf
);
381 SYSCALL_DEFINE2(lstat64
, char __user
*, filename
, struct stat64 __user
*, statbuf
)
384 int error
= vfs_lstat(filename
, &stat
);
387 error
= cp_new_stat64(&stat
, statbuf
);
392 SYSCALL_DEFINE2(fstat64
, unsigned long, fd
, struct stat64 __user
*, statbuf
)
395 int error
= vfs_fstat(fd
, &stat
);
398 error
= cp_new_stat64(&stat
, statbuf
);
403 SYSCALL_DEFINE4(fstatat64
, int, dfd
, char __user
*, filename
,
404 struct stat64 __user
*, statbuf
, int, flag
)
409 if ((flag
& ~AT_SYMLINK_NOFOLLOW
) != 0)
412 if (flag
& AT_SYMLINK_NOFOLLOW
)
413 error
= vfs_lstat_fd(dfd
, filename
, &stat
);
415 error
= vfs_stat_fd(dfd
, filename
, &stat
);
418 error
= cp_new_stat64(&stat
, statbuf
);
423 #endif /* __ARCH_WANT_STAT64 */
425 void inode_add_bytes(struct inode
*inode
, loff_t bytes
)
427 spin_lock(&inode
->i_lock
);
428 inode
->i_blocks
+= bytes
>> 9;
430 inode
->i_bytes
+= bytes
;
431 if (inode
->i_bytes
>= 512) {
433 inode
->i_bytes
-= 512;
435 spin_unlock(&inode
->i_lock
);
438 EXPORT_SYMBOL(inode_add_bytes
);
440 void inode_sub_bytes(struct inode
*inode
, loff_t bytes
)
442 spin_lock(&inode
->i_lock
);
443 inode
->i_blocks
-= bytes
>> 9;
445 if (inode
->i_bytes
< bytes
) {
447 inode
->i_bytes
+= 512;
449 inode
->i_bytes
-= bytes
;
450 spin_unlock(&inode
->i_lock
);
453 EXPORT_SYMBOL(inode_sub_bytes
);
455 loff_t
inode_get_bytes(struct inode
*inode
)
459 spin_lock(&inode
->i_lock
);
460 ret
= (((loff_t
)inode
->i_blocks
) << 9) + inode
->i_bytes
;
461 spin_unlock(&inode
->i_lock
);
465 EXPORT_SYMBOL(inode_get_bytes
);
467 void inode_set_bytes(struct inode
*inode
, loff_t bytes
)
469 /* Caller is here responsible for sufficient locking
470 * (ie. inode->i_lock) */
471 inode
->i_blocks
= bytes
>> 9;
472 inode
->i_bytes
= bytes
& 511;
475 EXPORT_SYMBOL(inode_set_bytes
);