blob: 7c87013610184f0bf273eeb3123a9b20d73edbdb [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>
Ingo Molnar5b825c32017-02-02 17:54:15 +010015#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/syscalls.h>
Theodore Ts'oba52de12006-09-27 01:50:49 -070017#include <linux/pagemap.h>
Al Viroac565de2017-04-08 18:13:00 -040018#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/unistd.h>
22
David Howellsa528d352017-01-31 16:46:22 +000023/**
24 * generic_fillattr - Fill in the basic attributes from the inode struct
25 * @inode: Inode to use as the source
26 * @stat: Where to fill in the attributes
27 *
28 * Fill in the basic attributes in the kstat structure from data that's to be
29 * found on the VFS inode structure. This is the default if no getattr inode
30 * operation is supplied.
31 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032void generic_fillattr(struct inode *inode, struct kstat *stat)
33{
34 stat->dev = inode->i_sb->s_dev;
35 stat->ino = inode->i_ino;
36 stat->mode = inode->i_mode;
37 stat->nlink = inode->i_nlink;
38 stat->uid = inode->i_uid;
39 stat->gid = inode->i_gid;
40 stat->rdev = inode->i_rdev;
Linus Torvalds3ddcd052011-08-06 22:45:50 -070041 stat->size = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 stat->atime = inode->i_atime;
43 stat->mtime = inode->i_mtime;
44 stat->ctime = inode->i_ctime;
Fabian Frederick93407472017-02-27 14:28:32 -080045 stat->blksize = i_blocksize(inode);
Linus Torvalds3ddcd052011-08-06 22:45:50 -070046 stat->blocks = inode->i_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Howellsa528d352017-01-31 16:46:22 +000048 if (IS_NOATIME(inode))
49 stat->result_mask &= ~STATX_ATIME;
50 if (IS_AUTOMOUNT(inode))
51 stat->attributes |= STATX_ATTR_AUTOMOUNT;
52}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053EXPORT_SYMBOL(generic_fillattr);
54
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -040055/**
56 * vfs_getattr_nosec - getattr without security checks
57 * @path: file to get attributes from
58 * @stat: structure to return attributes in
David Howellsa528d352017-01-31 16:46:22 +000059 * @request_mask: STATX_xxx flags indicating what the caller wants
60 * @query_flags: Query mode (KSTAT_QUERY_FLAGS)
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -040061 *
62 * Get attributes without calling security_inode_getattr.
63 *
64 * Currently the only caller other than vfs_getattr is internal to the
David Howellsa528d352017-01-31 16:46:22 +000065 * filehandle lookup code, which uses only the inode number and returns no
66 * attributes to any user. Any other code probably wants vfs_getattr.
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -040067 */
David Howellsa528d352017-01-31 16:46:22 +000068int vfs_getattr_nosec(const struct path *path, struct kstat *stat,
69 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
David Howellsbb6687342015-03-17 22:26:21 +000071 struct inode *inode = d_backing_inode(path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
David Howellsa528d352017-01-31 16:46:22 +000073 memset(stat, 0, sizeof(*stat));
74 stat->result_mask |= STATX_BASIC_STATS;
75 request_mask &= STATX_ALL;
76 query_flags &= KSTAT_QUERY_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (inode->i_op->getattr)
David Howellsa528d352017-01-31 16:46:22 +000078 return inode->i_op->getattr(path, stat, request_mask,
79 query_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 generic_fillattr(inode, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 0;
83}
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -040084EXPORT_SYMBOL(vfs_getattr_nosec);
85
David Howellsa528d352017-01-31 16:46:22 +000086/*
87 * vfs_getattr - Get the enhanced basic attributes of a file
88 * @path: The file of interest
89 * @stat: Where to return the statistics
90 * @request_mask: STATX_xxx flags indicating what the caller wants
91 * @query_flags: Query mode (KSTAT_QUERY_FLAGS)
92 *
93 * Ask the filesystem for a file's attributes. The caller must indicate in
94 * request_mask and query_flags to indicate what they want.
95 *
96 * If the file is remote, the filesystem can be forced to update the attributes
97 * from the backing store by passing AT_STATX_FORCE_SYNC in query_flags or can
98 * suppress the update by passing AT_STATX_DONT_SYNC.
99 *
100 * Bits must have been set in request_mask to indicate which attributes the
101 * caller wants retrieving. Any such attribute not requested may be returned
102 * anyway, but the value may be approximate, and, if remote, may not have been
103 * synchronised with the server.
104 *
105 * 0 will be returned on success, and a -ve error code if unsuccessful.
106 */
107int vfs_getattr(const struct path *path, struct kstat *stat,
108 u32 request_mask, unsigned int query_flags)
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -0400109{
110 int retval;
111
Al Viro3f7036a2015-03-08 19:28:30 -0400112 retval = security_inode_getattr(path);
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -0400113 if (retval)
114 return retval;
David Howellsa528d352017-01-31 16:46:22 +0000115 return vfs_getattr_nosec(path, stat, request_mask, query_flags);
J. Bruce Fieldsb7a6ec52013-10-02 17:01:18 -0400116}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117EXPORT_SYMBOL(vfs_getattr);
118
David Howellsa528d352017-01-31 16:46:22 +0000119/**
120 * vfs_statx_fd - Get the enhanced basic attributes by file descriptor
121 * @fd: The file descriptor referring to the file of interest
122 * @stat: The result structure to fill in.
123 * @request_mask: STATX_xxx flags indicating what the caller wants
124 * @query_flags: Query mode (KSTAT_QUERY_FLAGS)
125 *
126 * This function is a wrapper around vfs_getattr(). The main difference is
127 * that it uses a file descriptor to determine the file location.
128 *
129 * 0 will be returned on success, and a -ve error code if unsuccessful.
130 */
131int vfs_statx_fd(unsigned int fd, struct kstat *stat,
132 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Al Viro2903ff02012-08-28 12:52:22 -0400134 struct fd f = fdget_raw(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int error = -EBADF;
136
Al Viro2903ff02012-08-28 12:52:22 -0400137 if (f.file) {
David Howellsa528d352017-01-31 16:46:22 +0000138 error = vfs_getattr(&f.file->f_path, stat,
139 request_mask, query_flags);
Al Viro2903ff02012-08-28 12:52:22 -0400140 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 return error;
143}
David Howellsa528d352017-01-31 16:46:22 +0000144EXPORT_SYMBOL(vfs_statx_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
David Howellsa528d352017-01-31 16:46:22 +0000146/**
147 * vfs_statx - Get basic and extra attributes by filename
148 * @dfd: A file descriptor representing the base dir for a relative filename
149 * @filename: The name of the file of interest
150 * @flags: Flags to control the query
151 * @stat: The result structure to fill in.
152 * @request_mask: STATX_xxx flags indicating what the caller wants
153 *
154 * This function is a wrapper around vfs_getattr(). The main difference is
155 * that it uses a filename and base directory to determine the file location.
156 * Additionally, the use of AT_SYMLINK_NOFOLLOW in flags will prevent a symlink
157 * at the given name from being referenced.
158 *
159 * The caller must have preset stat->request_mask as for vfs_getattr(). The
160 * flags are also used to load up stat->query_flags.
161 *
162 * 0 will be returned on success, and a -ve error code if unsuccessful.
163 */
164int vfs_statx(int dfd, const char __user *filename, int flags,
165 struct kstat *stat, u32 request_mask)
Oleg Drokin0112fc22009-04-08 20:05:42 +0400166{
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400167 struct path path;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400168 int error = -EINVAL;
David Howellsa528d352017-01-31 16:46:22 +0000169 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_AUTOMOUNT;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400170
David Howellsa528d352017-01-31 16:46:22 +0000171 if ((flags & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT |
172 AT_EMPTY_PATH | KSTAT_QUERY_FLAGS)) != 0)
173 return -EINVAL;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400174
David Howellsa528d352017-01-31 16:46:22 +0000175 if (flags & AT_SYMLINK_NOFOLLOW)
176 lookup_flags &= ~LOOKUP_FOLLOW;
177 if (flags & AT_NO_AUTOMOUNT)
178 lookup_flags &= ~LOOKUP_AUTOMOUNT;
179 if (flags & AT_EMPTY_PATH)
Al Viro65cfc672011-03-13 15:56:26 -0400180 lookup_flags |= LOOKUP_EMPTY;
David Howellsa528d352017-01-31 16:46:22 +0000181
Jeff Layton836fb7e2012-12-11 12:10:05 -0500182retry:
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400183 error = user_path_at(dfd, filename, lookup_flags, &path);
184 if (error)
185 goto out;
186
David Howellsa528d352017-01-31 16:46:22 +0000187 error = vfs_getattr(&path, stat, request_mask, flags);
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400188 path_put(&path);
Jeff Layton836fb7e2012-12-11 12:10:05 -0500189 if (retry_estale(error, lookup_flags)) {
190 lookup_flags |= LOOKUP_REVAL;
191 goto retry;
192 }
Oleg Drokin0112fc22009-04-08 20:05:42 +0400193out:
194 return error;
195}
David Howellsa528d352017-01-31 16:46:22 +0000196EXPORT_SYMBOL(vfs_statx);
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400197
Oleg Drokin0112fc22009-04-08 20:05:42 +0400198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#ifdef __ARCH_WANT_OLD_STAT
200
201/*
202 * For backward compatibility? Maybe this should be moved
203 * into arch/i386 instead?
204 */
205static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat __user * statbuf)
206{
207 static int warncount = 5;
208 struct __old_kernel_stat tmp;
David Howellsa528d352017-01-31 16:46:22 +0000209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (warncount > 0) {
211 warncount--;
212 printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n",
213 current->comm);
214 } else if (warncount < 0) {
215 /* it's laughable, but... */
216 warncount = 0;
217 }
218
219 memset(&tmp, 0, sizeof(struct __old_kernel_stat));
220 tmp.st_dev = old_encode_dev(stat->dev);
221 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700222 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
223 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 tmp.st_mode = stat->mode;
225 tmp.st_nlink = stat->nlink;
226 if (tmp.st_nlink != stat->nlink)
227 return -EOVERFLOW;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800228 SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid));
229 SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 tmp.st_rdev = old_encode_dev(stat->rdev);
231#if BITS_PER_LONG == 32
232 if (stat->size > MAX_NON_LFS)
233 return -EOVERFLOW;
David Howellsa528d352017-01-31 16:46:22 +0000234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 tmp.st_size = stat->size;
236 tmp.st_atime = stat->atime.tv_sec;
237 tmp.st_mtime = stat->mtime.tv_sec;
238 tmp.st_ctime = stat->ctime.tv_sec;
239 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
240}
241
David Howellsc7887322010-08-11 11:26:22 +0100242SYSCALL_DEFINE2(stat, const char __user *, filename,
243 struct __old_kernel_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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400248 error = vfs_stat(filename, &stat);
249 if (error)
250 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400252 return cp_old_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
Heiko Carstens257ac262009-01-14 14:14:13 +0100254
David Howellsc7887322010-08-11 11:26:22 +0100255SYSCALL_DEFINE2(lstat, const char __user *, filename,
256 struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400259 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400261 error = vfs_lstat(filename, &stat);
262 if (error)
263 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400265 return cp_old_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
Heiko Carstens257ac262009-01-14 14:14:13 +0100267
268SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct kstat stat;
271 int error = vfs_fstat(fd, &stat);
272
273 if (!error)
274 error = cp_old_stat(&stat, statbuf);
275
276 return error;
277}
278
279#endif /* __ARCH_WANT_OLD_STAT */
280
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700281#if BITS_PER_LONG == 32
282# define choose_32_64(a,b) a
283#else
284# define choose_32_64(a,b) b
285#endif
286
Yaowei Bai4c416f42016-01-15 16:58:01 -0800287#define valid_dev(x) choose_32_64(old_valid_dev(x),true)
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700288#define encode_dev(x) choose_32_64(old_encode_dev,new_encode_dev)(x)
289
Linus Torvalds8529f612012-05-06 18:02:40 -0700290#ifndef INIT_STRUCT_STAT_PADDING
291# define INIT_STRUCT_STAT_PADDING(st) memset(&st, 0, sizeof(st))
292#endif
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static int cp_new_stat(struct kstat *stat, struct stat __user *statbuf)
295{
296 struct stat tmp;
297
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700298 if (!valid_dev(stat->dev) || !valid_dev(stat->rdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return -EOVERFLOW;
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700300#if BITS_PER_LONG == 32
301 if (stat->size > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return -EOVERFLOW;
303#endif
304
Linus Torvalds8529f612012-05-06 18:02:40 -0700305 INIT_STRUCT_STAT_PADDING(tmp);
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700306 tmp.st_dev = encode_dev(stat->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700308 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
309 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 tmp.st_mode = stat->mode;
311 tmp.st_nlink = stat->nlink;
312 if (tmp.st_nlink != stat->nlink)
313 return -EOVERFLOW;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800314 SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid));
315 SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid));
Linus Torvaldsa52dd972012-05-06 17:47:30 -0700316 tmp.st_rdev = encode_dev(stat->rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 tmp.st_size = stat->size;
318 tmp.st_atime = stat->atime.tv_sec;
319 tmp.st_mtime = stat->mtime.tv_sec;
320 tmp.st_ctime = stat->ctime.tv_sec;
321#ifdef STAT_HAVE_NSEC
322 tmp.st_atime_nsec = stat->atime.tv_nsec;
323 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
324 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
325#endif
326 tmp.st_blocks = stat->blocks;
327 tmp.st_blksize = stat->blksize;
328 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
329}
330
David Howellsc7887322010-08-11 11:26:22 +0100331SYSCALL_DEFINE2(newstat, const char __user *, filename,
332 struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400335 int error = vfs_stat(filename, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400337 if (error)
338 return error;
339 return cp_new_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800341
David Howellsc7887322010-08-11 11:26:22 +0100342SYSCALL_DEFINE2(newlstat, const char __user *, filename,
343 struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400346 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400348 error = vfs_lstat(filename, &stat);
349 if (error)
350 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400352 return cp_new_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800354
Andreas Schwab2833c282006-04-27 15:46:42 +0200355#if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT)
David Howellsc7887322010-08-11 11:26:22 +0100356SYSCALL_DEFINE4(newfstatat, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100357 struct stat __user *, statbuf, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800358{
359 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400360 int error;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800361
Oleg Drokin0112fc22009-04-08 20:05:42 +0400362 error = vfs_fstatat(dfd, filename, &stat, flag);
363 if (error)
364 return error;
365 return cp_new_stat(&stat, statbuf);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800366}
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800367#endif
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800368
Heiko Carstens257ac262009-01-14 14:14:13 +0100369SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 struct kstat stat;
372 int error = vfs_fstat(fd, &stat);
373
374 if (!error)
375 error = cp_new_stat(&stat, statbuf);
376
377 return error;
378}
379
Heiko Carstens6559eed82009-01-14 14:14:32 +0100380SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname,
381 char __user *, buf, int, bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Al Viro2d8f3032008-07-22 09:59:21 -0400383 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 int error;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100385 int empty = 0;
Jeff Layton79551192012-12-11 12:10:06 -0500386 unsigned int lookup_flags = LOOKUP_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (bufsiz <= 0)
389 return -EINVAL;
390
Jeff Layton79551192012-12-11 12:10:06 -0500391retry:
392 error = user_path_at_empty(dfd, pathname, lookup_flags, &path, &empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!error) {
David Howellsbb6687342015-03-17 22:26:21 +0000394 struct inode *inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100396 error = empty ? -ENOENT : -EINVAL;
Miklos Szeredifd4a0ed2016-12-09 16:45:04 +0100397 /*
398 * AFS mountpoints allow readlink(2) but are not symlinks
399 */
400 if (d_is_symlink(path.dentry) || inode->i_op->readlink) {
Al Viro2d8f3032008-07-22 09:59:21 -0400401 error = security_inode_readlink(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!error) {
Al Viro68ac1232012-03-15 08:21:57 -0400403 touch_atime(&path);
Miklos Szeredifd4a0ed2016-12-09 16:45:04 +0100404 error = vfs_readlink(path.dentry, buf, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 }
Al Viro2d8f3032008-07-22 09:59:21 -0400407 path_put(&path);
Jeff Layton79551192012-12-11 12:10:06 -0500408 if (retry_estale(error, lookup_flags)) {
409 lookup_flags |= LOOKUP_REVAL;
410 goto retry;
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 return error;
414}
415
Heiko Carstens002c8972009-01-14 14:14:18 +0100416SYSCALL_DEFINE3(readlink, const char __user *, path, char __user *, buf,
417 int, bufsiz)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800418{
419 return sys_readlinkat(AT_FDCWD, path, buf, bufsiz);
420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423/* ---------- LFS-64 ----------- */
Catalin Marinas0753f702012-03-19 15:13:51 +0000424#if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Linus Torvalds8529f612012-05-06 18:02:40 -0700426#ifndef INIT_STRUCT_STAT64_PADDING
427# define INIT_STRUCT_STAT64_PADDING(st) memset(&st, 0, sizeof(st))
428#endif
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf)
431{
432 struct stat64 tmp;
433
Linus Torvalds8529f612012-05-06 18:02:40 -0700434 INIT_STRUCT_STAT64_PADDING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#ifdef CONFIG_MIPS
436 /* mips has weird padding, so we don't get 64 bits there */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 tmp.st_dev = new_encode_dev(stat->dev);
438 tmp.st_rdev = new_encode_dev(stat->rdev);
439#else
440 tmp.st_dev = huge_encode_dev(stat->dev);
441 tmp.st_rdev = huge_encode_dev(stat->rdev);
442#endif
443 tmp.st_ino = stat->ino;
David Howellsafefdbb2006-10-03 01:13:46 -0700444 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
445 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#ifdef STAT64_HAS_BROKEN_ST_INO
447 tmp.__st_ino = stat->ino;
448#endif
449 tmp.st_mode = stat->mode;
450 tmp.st_nlink = stat->nlink;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800451 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
452 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 tmp.st_atime = stat->atime.tv_sec;
454 tmp.st_atime_nsec = stat->atime.tv_nsec;
455 tmp.st_mtime = stat->mtime.tv_sec;
456 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
457 tmp.st_ctime = stat->ctime.tv_sec;
458 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
459 tmp.st_size = stat->size;
460 tmp.st_blocks = stat->blocks;
461 tmp.st_blksize = stat->blksize;
462 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
463}
464
David Howellsc7887322010-08-11 11:26:22 +0100465SYSCALL_DEFINE2(stat64, const char __user *, filename,
466 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct kstat stat;
469 int error = vfs_stat(filename, &stat);
470
471 if (!error)
472 error = cp_new_stat64(&stat, statbuf);
473
474 return error;
475}
Heiko Carstens257ac262009-01-14 14:14:13 +0100476
David Howellsc7887322010-08-11 11:26:22 +0100477SYSCALL_DEFINE2(lstat64, const char __user *, filename,
478 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 struct kstat stat;
481 int error = vfs_lstat(filename, &stat);
482
483 if (!error)
484 error = cp_new_stat64(&stat, statbuf);
485
486 return error;
487}
Heiko Carstens257ac262009-01-14 14:14:13 +0100488
489SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct kstat stat;
492 int error = vfs_fstat(fd, &stat);
493
494 if (!error)
495 error = cp_new_stat64(&stat, statbuf);
496
497 return error;
498}
499
David Howellsc7887322010-08-11 11:26:22 +0100500SYSCALL_DEFINE4(fstatat64, int, dfd, const char __user *, filename,
Heiko Carstens6559eed82009-01-14 14:14:32 +0100501 struct stat64 __user *, statbuf, int, flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800502{
503 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400504 int error;
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800505
Oleg Drokin0112fc22009-04-08 20:05:42 +0400506 error = vfs_fstatat(dfd, filename, &stat, flag);
507 if (error)
508 return error;
509 return cp_new_stat64(&stat, statbuf);
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800510}
Catalin Marinas0753f702012-03-19 15:13:51 +0000511#endif /* __ARCH_WANT_STAT64 || __ARCH_WANT_COMPAT_STAT64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
David Howellsa528d352017-01-31 16:46:22 +0000513static inline int __put_timestamp(struct timespec *kts,
514 struct statx_timestamp __user *uts)
515{
516 return (__put_user(kts->tv_sec, &uts->tv_sec ) ||
517 __put_user(kts->tv_nsec, &uts->tv_nsec ) ||
518 __put_user(0, &uts->__reserved ));
519}
520
521/*
522 * Set the statx results.
523 */
524static long statx_set_result(struct kstat *stat, struct statx __user *buffer)
525{
526 uid_t uid = from_kuid_munged(current_user_ns(), stat->uid);
527 gid_t gid = from_kgid_munged(current_user_ns(), stat->gid);
528
529 if (__put_user(stat->result_mask, &buffer->stx_mask ) ||
530 __put_user(stat->mode, &buffer->stx_mode ) ||
531 __clear_user(&buffer->__spare0, sizeof(buffer->__spare0)) ||
532 __put_user(stat->nlink, &buffer->stx_nlink ) ||
533 __put_user(uid, &buffer->stx_uid ) ||
534 __put_user(gid, &buffer->stx_gid ) ||
535 __put_user(stat->attributes, &buffer->stx_attributes ) ||
536 __put_user(stat->blksize, &buffer->stx_blksize ) ||
537 __put_user(MAJOR(stat->rdev), &buffer->stx_rdev_major ) ||
538 __put_user(MINOR(stat->rdev), &buffer->stx_rdev_minor ) ||
539 __put_user(MAJOR(stat->dev), &buffer->stx_dev_major ) ||
540 __put_user(MINOR(stat->dev), &buffer->stx_dev_minor ) ||
541 __put_timestamp(&stat->atime, &buffer->stx_atime ) ||
542 __put_timestamp(&stat->btime, &buffer->stx_btime ) ||
543 __put_timestamp(&stat->ctime, &buffer->stx_ctime ) ||
544 __put_timestamp(&stat->mtime, &buffer->stx_mtime ) ||
545 __put_user(stat->ino, &buffer->stx_ino ) ||
546 __put_user(stat->size, &buffer->stx_size ) ||
547 __put_user(stat->blocks, &buffer->stx_blocks ) ||
548 __clear_user(&buffer->__spare1, sizeof(buffer->__spare1)) ||
549 __clear_user(&buffer->__spare2, sizeof(buffer->__spare2)))
550 return -EFAULT;
551
552 return 0;
553}
554
555/**
556 * sys_statx - System call to get enhanced stats
557 * @dfd: Base directory to pathwalk from *or* fd to stat.
558 * @filename: File to stat *or* NULL.
559 * @flags: AT_* flags to control pathwalk.
560 * @mask: Parts of statx struct actually required.
561 * @buffer: Result buffer.
562 *
563 * Note that if filename is NULL, then it does the equivalent of fstat() using
564 * dfd to indicate the file of interest.
565 */
566SYSCALL_DEFINE5(statx,
567 int, dfd, const char __user *, filename, unsigned, flags,
568 unsigned int, mask,
569 struct statx __user *, buffer)
570{
571 struct kstat stat;
572 int error;
573
574 if ((flags & AT_STATX_SYNC_TYPE) == AT_STATX_SYNC_TYPE)
575 return -EINVAL;
576 if (!access_ok(VERIFY_WRITE, buffer, sizeof(*buffer)))
577 return -EFAULT;
578
579 if (filename)
580 error = vfs_statx(dfd, filename, flags, &stat, mask);
581 else
582 error = vfs_statx_fd(dfd, &stat, mask, flags);
583 if (error)
584 return error;
585 return statx_set_result(&stat, buffer);
586}
587
Al Viroac565de2017-04-08 18:13:00 -0400588#ifdef CONFIG_COMPAT
589static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf)
590{
591 struct compat_stat tmp;
592
593 if (!old_valid_dev(stat->dev) || !old_valid_dev(stat->rdev))
594 return -EOVERFLOW;
595
596 memset(&tmp, 0, sizeof(tmp));
597 tmp.st_dev = old_encode_dev(stat->dev);
598 tmp.st_ino = stat->ino;
599 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
600 return -EOVERFLOW;
601 tmp.st_mode = stat->mode;
602 tmp.st_nlink = stat->nlink;
603 if (tmp.st_nlink != stat->nlink)
604 return -EOVERFLOW;
605 SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid));
606 SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid));
607 tmp.st_rdev = old_encode_dev(stat->rdev);
608 if ((u64) stat->size > MAX_NON_LFS)
609 return -EOVERFLOW;
610 tmp.st_size = stat->size;
611 tmp.st_atime = stat->atime.tv_sec;
612 tmp.st_atime_nsec = stat->atime.tv_nsec;
613 tmp.st_mtime = stat->mtime.tv_sec;
614 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
615 tmp.st_ctime = stat->ctime.tv_sec;
616 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
617 tmp.st_blocks = stat->blocks;
618 tmp.st_blksize = stat->blksize;
619 return copy_to_user(ubuf, &tmp, sizeof(tmp)) ? -EFAULT : 0;
620}
621
622COMPAT_SYSCALL_DEFINE2(newstat, const char __user *, filename,
623 struct compat_stat __user *, statbuf)
624{
625 struct kstat stat;
626 int error;
627
628 error = vfs_stat(filename, &stat);
629 if (error)
630 return error;
631 return cp_compat_stat(&stat, statbuf);
632}
633
634COMPAT_SYSCALL_DEFINE2(newlstat, const char __user *, filename,
635 struct compat_stat __user *, statbuf)
636{
637 struct kstat stat;
638 int error;
639
640 error = vfs_lstat(filename, &stat);
641 if (error)
642 return error;
643 return cp_compat_stat(&stat, statbuf);
644}
645
646#ifndef __ARCH_WANT_STAT64
647COMPAT_SYSCALL_DEFINE4(newfstatat, unsigned int, dfd,
648 const char __user *, filename,
649 struct compat_stat __user *, statbuf, int, flag)
650{
651 struct kstat stat;
652 int error;
653
654 error = vfs_fstatat(dfd, filename, &stat, flag);
655 if (error)
656 return error;
657 return cp_compat_stat(&stat, statbuf);
658}
659#endif
660
661COMPAT_SYSCALL_DEFINE2(newfstat, unsigned int, fd,
662 struct compat_stat __user *, statbuf)
663{
664 struct kstat stat;
665 int error = vfs_fstat(fd, &stat);
666
667 if (!error)
668 error = cp_compat_stat(&stat, statbuf);
669 return error;
670}
671#endif
672
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300673/* Caller is here responsible for sufficient locking (ie. inode->i_lock) */
674void __inode_add_bytes(struct inode *inode, loff_t bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 inode->i_blocks += bytes >> 9;
677 bytes &= 511;
678 inode->i_bytes += bytes;
679 if (inode->i_bytes >= 512) {
680 inode->i_blocks++;
681 inode->i_bytes -= 512;
682 }
Dmitry Monakhovb4627072009-12-14 15:21:12 +0300683}
684
685void inode_add_bytes(struct inode *inode, loff_t bytes)
686{
687 spin_lock(&inode->i_lock);
688 __inode_add_bytes(inode, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 spin_unlock(&inode->i_lock);
690}
691
692EXPORT_SYMBOL(inode_add_bytes);
693
Jan Kara1c8924e2013-08-17 09:32:32 -0400694void __inode_sub_bytes(struct inode *inode, loff_t bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 inode->i_blocks -= bytes >> 9;
697 bytes &= 511;
698 if (inode->i_bytes < bytes) {
699 inode->i_blocks--;
700 inode->i_bytes += 512;
701 }
702 inode->i_bytes -= bytes;
Jan Kara1c8924e2013-08-17 09:32:32 -0400703}
704
705EXPORT_SYMBOL(__inode_sub_bytes);
706
707void inode_sub_bytes(struct inode *inode, loff_t bytes)
708{
709 spin_lock(&inode->i_lock);
710 __inode_sub_bytes(inode, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 spin_unlock(&inode->i_lock);
712}
713
714EXPORT_SYMBOL(inode_sub_bytes);
715
716loff_t inode_get_bytes(struct inode *inode)
717{
718 loff_t ret;
719
720 spin_lock(&inode->i_lock);
721 ret = (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
722 spin_unlock(&inode->i_lock);
723 return ret;
724}
725
726EXPORT_SYMBOL(inode_get_bytes);
727
728void inode_set_bytes(struct inode *inode, loff_t bytes)
729{
730 /* Caller is here responsible for sufficient locking
731 * (ie. inode->i_lock) */
732 inode->i_blocks = bytes >> 9;
733 inode->i_bytes = bytes & 511;
734}
735
736EXPORT_SYMBOL(inode_set_bytes);