]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
2 | /* |
3 | * linux/fs/stat.c | |
4 | * | |
5 | * Copyright (C) 1991, 1992 Linus Torvalds | |
6 | */ | |
7 | ||
2d985f8c | 8 | #include <linux/blkdev.h> |
630d9c47 | 9 | #include <linux/export.h> |
1da177e4 LT |
10 | #include <linux/mm.h> |
11 | #include <linux/errno.h> | |
12 | #include <linux/file.h> | |
1da177e4 LT |
13 | #include <linux/highuid.h> |
14 | #include <linux/fs.h> | |
15 | #include <linux/namei.h> | |
16 | #include <linux/security.h> | |
5b825c3a | 17 | #include <linux/cred.h> |
1da177e4 | 18 | #include <linux/syscalls.h> |
ba52de12 | 19 | #include <linux/pagemap.h> |
ac565de3 | 20 | #include <linux/compat.h> |
a1175d6b | 21 | #include <linux/iversion.h> |
1da177e4 | 22 | |
7c0f6ba6 | 23 | #include <linux/uaccess.h> |
1da177e4 LT |
24 | #include <asm/unistd.h> |
25 | ||
3934e36f | 26 | #include "internal.h" |
fa2fcf4f | 27 | #include "mount.h" |
3934e36f | 28 | |
a528d35e DH |
29 | /** |
30 | * generic_fillattr - Fill in the basic attributes from the inode struct | |
b74d24f7 | 31 | * @idmap: idmap of the mount the inode was found from |
0d56a451 CB |
32 | * @inode: Inode to use as the source |
33 | * @stat: Where to fill in the attributes | |
a528d35e DH |
34 | * |
35 | * Fill in the basic attributes in the kstat structure from data that's to be | |
36 | * found on the VFS inode structure. This is the default if no getattr inode | |
37 | * operation is supplied. | |
0d56a451 | 38 | * |
b74d24f7 CB |
39 | * If the inode has been found through an idmapped mount the idmap of |
40 | * the vfsmount must be passed through @idmap. This function will then | |
41 | * take care to map the inode according to @idmap before filling in the | |
0d56a451 | 42 | * uid and gid filds. On non-idmapped mounts or if permission checking is to be |
b74d24f7 | 43 | * performed on the raw inode simply passs @nop_mnt_idmap. |
a528d35e | 44 | */ |
b74d24f7 | 45 | void generic_fillattr(struct mnt_idmap *idmap, struct inode *inode, |
0d56a451 | 46 | struct kstat *stat) |
1da177e4 | 47 | { |
e67fe633 CB |
48 | vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); |
49 | vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode); | |
a2bd096f | 50 | |
1da177e4 LT |
51 | stat->dev = inode->i_sb->s_dev; |
52 | stat->ino = inode->i_ino; | |
53 | stat->mode = inode->i_mode; | |
54 | stat->nlink = inode->i_nlink; | |
a2bd096f CB |
55 | stat->uid = vfsuid_into_kuid(vfsuid); |
56 | stat->gid = vfsgid_into_kgid(vfsgid); | |
1da177e4 | 57 | stat->rdev = inode->i_rdev; |
3ddcd056 | 58 | stat->size = i_size_read(inode); |
1da177e4 LT |
59 | stat->atime = inode->i_atime; |
60 | stat->mtime = inode->i_mtime; | |
61 | stat->ctime = inode->i_ctime; | |
93407472 | 62 | stat->blksize = i_blocksize(inode); |
3ddcd056 | 63 | stat->blocks = inode->i_blocks; |
a528d35e | 64 | } |
1da177e4 LT |
65 | EXPORT_SYMBOL(generic_fillattr); |
66 | ||
4f911138 AG |
67 | /** |
68 | * generic_fill_statx_attr - Fill in the statx attributes from the inode flags | |
69 | * @inode: Inode to use as the source | |
70 | * @stat: Where to fill in the attribute flags | |
71 | * | |
72 | * Fill in the STATX_ATTR_* flags in the kstat structure for properties of the | |
73 | * inode that are published on i_flags and enforced by the VFS. | |
74 | */ | |
75 | void generic_fill_statx_attr(struct inode *inode, struct kstat *stat) | |
76 | { | |
77 | if (inode->i_flags & S_IMMUTABLE) | |
78 | stat->attributes |= STATX_ATTR_IMMUTABLE; | |
79 | if (inode->i_flags & S_APPEND) | |
80 | stat->attributes |= STATX_ATTR_APPEND; | |
81 | stat->attributes_mask |= KSTAT_ATTR_VFS_FLAGS; | |
82 | } | |
83 | EXPORT_SYMBOL(generic_fill_statx_attr); | |
84 | ||
b7a6ec52 BF |
85 | /** |
86 | * vfs_getattr_nosec - getattr without security checks | |
87 | * @path: file to get attributes from | |
88 | * @stat: structure to return attributes in | |
a528d35e | 89 | * @request_mask: STATX_xxx flags indicating what the caller wants |
f2d077ff | 90 | * @query_flags: Query mode (AT_STATX_SYNC_TYPE) |
b7a6ec52 BF |
91 | * |
92 | * Get attributes without calling security_inode_getattr. | |
93 | * | |
94 | * Currently the only caller other than vfs_getattr is internal to the | |
a528d35e DH |
95 | * filehandle lookup code, which uses only the inode number and returns no |
96 | * attributes to any user. Any other code probably wants vfs_getattr. | |
b7a6ec52 | 97 | */ |
a528d35e DH |
98 | int vfs_getattr_nosec(const struct path *path, struct kstat *stat, |
99 | u32 request_mask, unsigned int query_flags) | |
1da177e4 | 100 | { |
b74d24f7 | 101 | struct mnt_idmap *idmap; |
bb668734 | 102 | struct inode *inode = d_backing_inode(path->dentry); |
1da177e4 | 103 | |
a528d35e DH |
104 | memset(stat, 0, sizeof(*stat)); |
105 | stat->result_mask |= STATX_BASIC_STATS; | |
f2d077ff | 106 | query_flags &= AT_STATX_SYNC_TYPE; |
801e5237 CH |
107 | |
108 | /* allow the fs to override these if it really wants to */ | |
761e28fa MS |
109 | /* SB_NOATIME means filesystem supplies dummy atime value */ |
110 | if (inode->i_sb->s_flags & SB_NOATIME) | |
801e5237 | 111 | stat->result_mask &= ~STATX_ATIME; |
5afa7e8b TT |
112 | |
113 | /* | |
114 | * Note: If you add another clause to set an attribute flag, please | |
115 | * update attributes_mask below. | |
116 | */ | |
801e5237 CH |
117 | if (IS_AUTOMOUNT(inode)) |
118 | stat->attributes |= STATX_ATTR_AUTOMOUNT; | |
119 | ||
712b2698 IW |
120 | if (IS_DAX(inode)) |
121 | stat->attributes |= STATX_ATTR_DAX; | |
122 | ||
5afa7e8b TT |
123 | stat->attributes_mask |= (STATX_ATTR_AUTOMOUNT | |
124 | STATX_ATTR_DAX); | |
125 | ||
a1175d6b JL |
126 | if ((request_mask & STATX_CHANGE_COOKIE) && IS_I_VERSION(inode)) { |
127 | stat->result_mask |= STATX_CHANGE_COOKIE; | |
128 | stat->change_cookie = inode_query_iversion(inode); | |
129 | } | |
130 | ||
b74d24f7 | 131 | idmap = mnt_idmap(path->mnt); |
1da177e4 | 132 | if (inode->i_op->getattr) |
b74d24f7 | 133 | return inode->i_op->getattr(idmap, path, stat, |
549c7297 | 134 | request_mask, query_flags); |
1da177e4 | 135 | |
b74d24f7 | 136 | generic_fillattr(idmap, inode, stat); |
1da177e4 LT |
137 | return 0; |
138 | } | |
b7a6ec52 BF |
139 | EXPORT_SYMBOL(vfs_getattr_nosec); |
140 | ||
a528d35e DH |
141 | /* |
142 | * vfs_getattr - Get the enhanced basic attributes of a file | |
143 | * @path: The file of interest | |
144 | * @stat: Where to return the statistics | |
145 | * @request_mask: STATX_xxx flags indicating what the caller wants | |
f2d077ff | 146 | * @query_flags: Query mode (AT_STATX_SYNC_TYPE) |
a528d35e DH |
147 | * |
148 | * Ask the filesystem for a file's attributes. The caller must indicate in | |
149 | * request_mask and query_flags to indicate what they want. | |
150 | * | |
151 | * If the file is remote, the filesystem can be forced to update the attributes | |
152 | * from the backing store by passing AT_STATX_FORCE_SYNC in query_flags or can | |
153 | * suppress the update by passing AT_STATX_DONT_SYNC. | |
154 | * | |
155 | * Bits must have been set in request_mask to indicate which attributes the | |
156 | * caller wants retrieving. Any such attribute not requested may be returned | |
157 | * anyway, but the value may be approximate, and, if remote, may not have been | |
158 | * synchronised with the server. | |
159 | * | |
160 | * 0 will be returned on success, and a -ve error code if unsuccessful. | |
161 | */ | |
162 | int vfs_getattr(const struct path *path, struct kstat *stat, | |
163 | u32 request_mask, unsigned int query_flags) | |
b7a6ec52 BF |
164 | { |
165 | int retval; | |
166 | ||
3f7036a0 | 167 | retval = security_inode_getattr(path); |
b7a6ec52 BF |
168 | if (retval) |
169 | return retval; | |
a528d35e | 170 | return vfs_getattr_nosec(path, stat, request_mask, query_flags); |
b7a6ec52 | 171 | } |
1da177e4 LT |
172 | EXPORT_SYMBOL(vfs_getattr); |
173 | ||
a528d35e | 174 | /** |
da9aa5d9 | 175 | * vfs_fstat - Get the basic attributes by file descriptor |
a528d35e DH |
176 | * @fd: The file descriptor referring to the file of interest |
177 | * @stat: The result structure to fill in. | |
a528d35e DH |
178 | * |
179 | * This function is a wrapper around vfs_getattr(). The main difference is | |
180 | * that it uses a file descriptor to determine the file location. | |
181 | * | |
182 | * 0 will be returned on success, and a -ve error code if unsuccessful. | |
183 | */ | |
da9aa5d9 | 184 | int vfs_fstat(int fd, struct kstat *stat) |
1da177e4 | 185 | { |
8c7493aa | 186 | struct fd f; |
da9aa5d9 | 187 | int error; |
8c7493aa EB |
188 | |
189 | f = fdget_raw(fd); | |
da9aa5d9 CH |
190 | if (!f.file) |
191 | return -EBADF; | |
192 | error = vfs_getattr(&f.file->f_path, stat, STATX_BASIC_STATS, 0); | |
193 | fdput(f); | |
1da177e4 LT |
194 | return error; |
195 | } | |
1da177e4 | 196 | |
1b6fe6e0 SR |
197 | int getname_statx_lookup_flags(int flags) |
198 | { | |
199 | int lookup_flags = 0; | |
200 | ||
201 | if (!(flags & AT_SYMLINK_NOFOLLOW)) | |
202 | lookup_flags |= LOOKUP_FOLLOW; | |
203 | if (!(flags & AT_NO_AUTOMOUNT)) | |
204 | lookup_flags |= LOOKUP_AUTOMOUNT; | |
205 | if (flags & AT_EMPTY_PATH) | |
206 | lookup_flags |= LOOKUP_EMPTY; | |
207 | ||
208 | return lookup_flags; | |
209 | } | |
210 | ||
a528d35e DH |
211 | /** |
212 | * vfs_statx - Get basic and extra attributes by filename | |
213 | * @dfd: A file descriptor representing the base dir for a relative filename | |
214 | * @filename: The name of the file of interest | |
215 | * @flags: Flags to control the query | |
216 | * @stat: The result structure to fill in. | |
217 | * @request_mask: STATX_xxx flags indicating what the caller wants | |
218 | * | |
219 | * This function is a wrapper around vfs_getattr(). The main difference is | |
220 | * that it uses a filename and base directory to determine the file location. | |
221 | * Additionally, the use of AT_SYMLINK_NOFOLLOW in flags will prevent a symlink | |
222 | * at the given name from being referenced. | |
223 | * | |
a528d35e DH |
224 | * 0 will be returned on success, and a -ve error code if unsuccessful. |
225 | */ | |
1b6fe6e0 | 226 | static int vfs_statx(int dfd, struct filename *filename, int flags, |
a528d35e | 227 | struct kstat *stat, u32 request_mask) |
0112fc22 | 228 | { |
2eae7a18 | 229 | struct path path; |
1b6fe6e0 | 230 | unsigned int lookup_flags = getname_statx_lookup_flags(flags); |
b3f05150 | 231 | int error; |
0112fc22 | 232 | |
b3f05150 | 233 | if (flags & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT | AT_EMPTY_PATH | |
f2d077ff | 234 | AT_STATX_SYNC_TYPE)) |
a528d35e | 235 | return -EINVAL; |
b3f05150 | 236 | |
836fb7e7 | 237 | retry: |
1b6fe6e0 | 238 | error = filename_lookup(dfd, filename, lookup_flags, &path, NULL); |
2eae7a18 CH |
239 | if (error) |
240 | goto out; | |
241 | ||
a528d35e | 242 | error = vfs_getattr(&path, stat, request_mask, flags); |
2d985f8c | 243 | |
fa2fcf4f MS |
244 | stat->mnt_id = real_mount(path.mnt)->mnt_id; |
245 | stat->result_mask |= STATX_MNT_ID; | |
2d985f8c | 246 | |
80340fe3 MS |
247 | if (path.mnt->mnt_root == path.dentry) |
248 | stat->attributes |= STATX_ATTR_MOUNT_ROOT; | |
249 | stat->attributes_mask |= STATX_ATTR_MOUNT_ROOT; | |
2d985f8c EB |
250 | |
251 | /* Handle STATX_DIOALIGN for block devices. */ | |
252 | if (request_mask & STATX_DIOALIGN) { | |
253 | struct inode *inode = d_backing_inode(path.dentry); | |
254 | ||
255 | if (S_ISBLK(inode->i_mode)) | |
256 | bdev_statx_dioalign(inode, stat); | |
257 | } | |
258 | ||
2eae7a18 | 259 | path_put(&path); |
836fb7e7 JL |
260 | if (retry_estale(error, lookup_flags)) { |
261 | lookup_flags |= LOOKUP_REVAL; | |
262 | goto retry; | |
263 | } | |
0112fc22 OD |
264 | out: |
265 | return error; | |
266 | } | |
2eae7a18 | 267 | |
09f1bde4 CH |
268 | int vfs_fstatat(int dfd, const char __user *filename, |
269 | struct kstat *stat, int flags) | |
270 | { | |
1b6fe6e0 SR |
271 | int ret; |
272 | int statx_flags = flags | AT_NO_AUTOMOUNT; | |
273 | struct filename *name; | |
274 | ||
275 | name = getname_flags(filename, getname_statx_lookup_flags(statx_flags), NULL); | |
276 | ret = vfs_statx(dfd, name, statx_flags, stat, STATX_BASIC_STATS); | |
277 | putname(name); | |
278 | ||
279 | return ret; | |
09f1bde4 | 280 | } |
0112fc22 | 281 | |
1da177e4 LT |
282 | #ifdef __ARCH_WANT_OLD_STAT |
283 | ||
284 | /* | |
285 | * For backward compatibility? Maybe this should be moved | |
286 | * into arch/i386 instead? | |
287 | */ | |
288 | static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat __user * statbuf) | |
289 | { | |
290 | static int warncount = 5; | |
291 | struct __old_kernel_stat tmp; | |
a528d35e | 292 | |
1da177e4 LT |
293 | if (warncount > 0) { |
294 | warncount--; | |
295 | printk(KERN_WARNING "VFS: Warning: %s using old stat() call. Recompile your binary.\n", | |
296 | current->comm); | |
297 | } else if (warncount < 0) { | |
298 | /* it's laughable, but... */ | |
299 | warncount = 0; | |
300 | } | |
301 | ||
302 | memset(&tmp, 0, sizeof(struct __old_kernel_stat)); | |
303 | tmp.st_dev = old_encode_dev(stat->dev); | |
304 | tmp.st_ino = stat->ino; | |
afefdbb2 DH |
305 | if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) |
306 | return -EOVERFLOW; | |
1da177e4 LT |
307 | tmp.st_mode = stat->mode; |
308 | tmp.st_nlink = stat->nlink; | |
309 | if (tmp.st_nlink != stat->nlink) | |
310 | return -EOVERFLOW; | |
a7c1938e EB |
311 | SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid)); |
312 | SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid)); | |
1da177e4 LT |
313 | tmp.st_rdev = old_encode_dev(stat->rdev); |
314 | #if BITS_PER_LONG == 32 | |
315 | if (stat->size > MAX_NON_LFS) | |
316 | return -EOVERFLOW; | |
a528d35e | 317 | #endif |
1da177e4 LT |
318 | tmp.st_size = stat->size; |
319 | tmp.st_atime = stat->atime.tv_sec; | |
320 | tmp.st_mtime = stat->mtime.tv_sec; | |
321 | tmp.st_ctime = stat->ctime.tv_sec; | |
322 | return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; | |
323 | } | |
324 | ||
c7887325 DH |
325 | SYSCALL_DEFINE2(stat, const char __user *, filename, |
326 | struct __old_kernel_stat __user *, statbuf) | |
1da177e4 LT |
327 | { |
328 | struct kstat stat; | |
2eae7a18 | 329 | int error; |
1da177e4 | 330 | |
2eae7a18 CH |
331 | error = vfs_stat(filename, &stat); |
332 | if (error) | |
333 | return error; | |
1da177e4 | 334 | |
2eae7a18 | 335 | return cp_old_stat(&stat, statbuf); |
1da177e4 | 336 | } |
257ac264 | 337 | |
c7887325 DH |
338 | SYSCALL_DEFINE2(lstat, const char __user *, filename, |
339 | struct __old_kernel_stat __user *, statbuf) | |
1da177e4 LT |
340 | { |
341 | struct kstat stat; | |
2eae7a18 | 342 | int error; |
1da177e4 | 343 | |
2eae7a18 CH |
344 | error = vfs_lstat(filename, &stat); |
345 | if (error) | |
346 | return error; | |
1da177e4 | 347 | |
2eae7a18 | 348 | return cp_old_stat(&stat, statbuf); |
1da177e4 | 349 | } |
257ac264 HC |
350 | |
351 | SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf) | |
1da177e4 LT |
352 | { |
353 | struct kstat stat; | |
354 | int error = vfs_fstat(fd, &stat); | |
355 | ||
356 | if (!error) | |
357 | error = cp_old_stat(&stat, statbuf); | |
358 | ||
359 | return error; | |
360 | } | |
361 | ||
362 | #endif /* __ARCH_WANT_OLD_STAT */ | |
363 | ||
82b355d1 AB |
364 | #ifdef __ARCH_WANT_NEW_STAT |
365 | ||
a52dd971 LT |
366 | #if BITS_PER_LONG == 32 |
367 | # define choose_32_64(a,b) a | |
368 | #else | |
369 | # define choose_32_64(a,b) b | |
370 | #endif | |
371 | ||
8529f613 LT |
372 | #ifndef INIT_STRUCT_STAT_PADDING |
373 | # define INIT_STRUCT_STAT_PADDING(st) memset(&st, 0, sizeof(st)) | |
374 | #endif | |
375 | ||
1da177e4 LT |
376 | static int cp_new_stat(struct kstat *stat, struct stat __user *statbuf) |
377 | { | |
378 | struct stat tmp; | |
379 | ||
932aba1e MP |
380 | if (sizeof(tmp.st_dev) < 4 && !old_valid_dev(stat->dev)) |
381 | return -EOVERFLOW; | |
382 | if (sizeof(tmp.st_rdev) < 4 && !old_valid_dev(stat->rdev)) | |
1da177e4 | 383 | return -EOVERFLOW; |
a52dd971 LT |
384 | #if BITS_PER_LONG == 32 |
385 | if (stat->size > MAX_NON_LFS) | |
1da177e4 LT |
386 | return -EOVERFLOW; |
387 | #endif | |
388 | ||
8529f613 | 389 | INIT_STRUCT_STAT_PADDING(tmp); |
932aba1e | 390 | tmp.st_dev = new_encode_dev(stat->dev); |
1da177e4 | 391 | tmp.st_ino = stat->ino; |
afefdbb2 DH |
392 | if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) |
393 | return -EOVERFLOW; | |
1da177e4 LT |
394 | tmp.st_mode = stat->mode; |
395 | tmp.st_nlink = stat->nlink; | |
396 | if (tmp.st_nlink != stat->nlink) | |
397 | return -EOVERFLOW; | |
a7c1938e EB |
398 | SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid)); |
399 | SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid)); | |
932aba1e | 400 | tmp.st_rdev = new_encode_dev(stat->rdev); |
1da177e4 LT |
401 | tmp.st_size = stat->size; |
402 | tmp.st_atime = stat->atime.tv_sec; | |
403 | tmp.st_mtime = stat->mtime.tv_sec; | |
404 | tmp.st_ctime = stat->ctime.tv_sec; | |
405 | #ifdef STAT_HAVE_NSEC | |
406 | tmp.st_atime_nsec = stat->atime.tv_nsec; | |
407 | tmp.st_mtime_nsec = stat->mtime.tv_nsec; | |
408 | tmp.st_ctime_nsec = stat->ctime.tv_nsec; | |
409 | #endif | |
410 | tmp.st_blocks = stat->blocks; | |
411 | tmp.st_blksize = stat->blksize; | |
412 | return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; | |
413 | } | |
414 | ||
c7887325 DH |
415 | SYSCALL_DEFINE2(newstat, const char __user *, filename, |
416 | struct stat __user *, statbuf) | |
5590ff0d UD |
417 | { |
418 | struct kstat stat; | |
2eae7a18 | 419 | int error = vfs_stat(filename, &stat); |
5590ff0d | 420 | |
2eae7a18 CH |
421 | if (error) |
422 | return error; | |
423 | return cp_new_stat(&stat, statbuf); | |
5590ff0d UD |
424 | } |
425 | ||
c7887325 DH |
426 | SYSCALL_DEFINE2(newlstat, const char __user *, filename, |
427 | struct stat __user *, statbuf) | |
1da177e4 LT |
428 | { |
429 | struct kstat stat; | |
2eae7a18 | 430 | int error; |
1da177e4 | 431 | |
2eae7a18 CH |
432 | error = vfs_lstat(filename, &stat); |
433 | if (error) | |
434 | return error; | |
1da177e4 | 435 | |
2eae7a18 | 436 | return cp_new_stat(&stat, statbuf); |
1da177e4 | 437 | } |
5590ff0d | 438 | |
2833c28a | 439 | #if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT) |
c7887325 | 440 | SYSCALL_DEFINE4(newfstatat, int, dfd, const char __user *, filename, |
6559eed8 | 441 | struct stat __user *, statbuf, int, flag) |
1da177e4 LT |
442 | { |
443 | struct kstat stat; | |
0112fc22 | 444 | int error; |
1da177e4 | 445 | |
0112fc22 OD |
446 | error = vfs_fstatat(dfd, filename, &stat, flag); |
447 | if (error) | |
448 | return error; | |
449 | return cp_new_stat(&stat, statbuf); | |
1da177e4 | 450 | } |
cff2b760 | 451 | #endif |
5590ff0d | 452 | |
257ac264 | 453 | SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf) |
1da177e4 LT |
454 | { |
455 | struct kstat stat; | |
456 | int error = vfs_fstat(fd, &stat); | |
457 | ||
458 | if (!error) | |
459 | error = cp_new_stat(&stat, statbuf); | |
460 | ||
461 | return error; | |
462 | } | |
82b355d1 | 463 | #endif |
1da177e4 | 464 | |
2dae0248 DB |
465 | static int do_readlinkat(int dfd, const char __user *pathname, |
466 | char __user *buf, int bufsiz) | |
1da177e4 | 467 | { |
2d8f3038 | 468 | struct path path; |
1da177e4 | 469 | int error; |
1fa1e7f6 | 470 | int empty = 0; |
7955119e | 471 | unsigned int lookup_flags = LOOKUP_EMPTY; |
1da177e4 LT |
472 | |
473 | if (bufsiz <= 0) | |
474 | return -EINVAL; | |
475 | ||
7955119e JL |
476 | retry: |
477 | error = user_path_at_empty(dfd, pathname, lookup_flags, &path, &empty); | |
1da177e4 | 478 | if (!error) { |
bb668734 | 479 | struct inode *inode = d_backing_inode(path.dentry); |
1da177e4 | 480 | |
1fa1e7f6 | 481 | error = empty ? -ENOENT : -EINVAL; |
fd4a0edf MS |
482 | /* |
483 | * AFS mountpoints allow readlink(2) but are not symlinks | |
484 | */ | |
485 | if (d_is_symlink(path.dentry) || inode->i_op->readlink) { | |
2d8f3038 | 486 | error = security_inode_readlink(path.dentry); |
1da177e4 | 487 | if (!error) { |
68ac1234 | 488 | touch_atime(&path); |
fd4a0edf | 489 | error = vfs_readlink(path.dentry, buf, bufsiz); |
1da177e4 LT |
490 | } |
491 | } | |
2d8f3038 | 492 | path_put(&path); |
7955119e JL |
493 | if (retry_estale(error, lookup_flags)) { |
494 | lookup_flags |= LOOKUP_REVAL; | |
495 | goto retry; | |
496 | } | |
1da177e4 LT |
497 | } |
498 | return error; | |
499 | } | |
500 | ||
2dae0248 DB |
501 | SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname, |
502 | char __user *, buf, int, bufsiz) | |
503 | { | |
504 | return do_readlinkat(dfd, pathname, buf, bufsiz); | |
505 | } | |
506 | ||
002c8976 HC |
507 | SYSCALL_DEFINE3(readlink, const char __user *, path, char __user *, buf, |
508 | int, bufsiz) | |
5590ff0d | 509 | { |
2dae0248 | 510 | return do_readlinkat(AT_FDCWD, path, buf, bufsiz); |
5590ff0d UD |
511 | } |
512 | ||
1da177e4 LT |
513 | |
514 | /* ---------- LFS-64 ----------- */ | |
0753f70f | 515 | #if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64) |
1da177e4 | 516 | |
8529f613 LT |
517 | #ifndef INIT_STRUCT_STAT64_PADDING |
518 | # define INIT_STRUCT_STAT64_PADDING(st) memset(&st, 0, sizeof(st)) | |
519 | #endif | |
520 | ||
1da177e4 LT |
521 | static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf) |
522 | { | |
523 | struct stat64 tmp; | |
524 | ||
8529f613 | 525 | INIT_STRUCT_STAT64_PADDING(tmp); |
1da177e4 LT |
526 | #ifdef CONFIG_MIPS |
527 | /* mips has weird padding, so we don't get 64 bits there */ | |
1da177e4 LT |
528 | tmp.st_dev = new_encode_dev(stat->dev); |
529 | tmp.st_rdev = new_encode_dev(stat->rdev); | |
530 | #else | |
531 | tmp.st_dev = huge_encode_dev(stat->dev); | |
532 | tmp.st_rdev = huge_encode_dev(stat->rdev); | |
533 | #endif | |
534 | tmp.st_ino = stat->ino; | |
afefdbb2 DH |
535 | if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) |
536 | return -EOVERFLOW; | |
1da177e4 LT |
537 | #ifdef STAT64_HAS_BROKEN_ST_INO |
538 | tmp.__st_ino = stat->ino; | |
539 | #endif | |
540 | tmp.st_mode = stat->mode; | |
541 | tmp.st_nlink = stat->nlink; | |
a7c1938e EB |
542 | tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid); |
543 | tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid); | |
1da177e4 LT |
544 | tmp.st_atime = stat->atime.tv_sec; |
545 | tmp.st_atime_nsec = stat->atime.tv_nsec; | |
546 | tmp.st_mtime = stat->mtime.tv_sec; | |
547 | tmp.st_mtime_nsec = stat->mtime.tv_nsec; | |
548 | tmp.st_ctime = stat->ctime.tv_sec; | |
549 | tmp.st_ctime_nsec = stat->ctime.tv_nsec; | |
550 | tmp.st_size = stat->size; | |
551 | tmp.st_blocks = stat->blocks; | |
552 | tmp.st_blksize = stat->blksize; | |
553 | return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; | |
554 | } | |
555 | ||
c7887325 DH |
556 | SYSCALL_DEFINE2(stat64, const char __user *, filename, |
557 | struct stat64 __user *, statbuf) | |
1da177e4 LT |
558 | { |
559 | struct kstat stat; | |
560 | int error = vfs_stat(filename, &stat); | |
561 | ||
562 | if (!error) | |
563 | error = cp_new_stat64(&stat, statbuf); | |
564 | ||
565 | return error; | |
566 | } | |
257ac264 | 567 | |
c7887325 DH |
568 | SYSCALL_DEFINE2(lstat64, const char __user *, filename, |
569 | struct stat64 __user *, statbuf) | |
1da177e4 LT |
570 | { |
571 | struct kstat stat; | |
572 | int error = vfs_lstat(filename, &stat); | |
573 | ||
574 | if (!error) | |
575 | error = cp_new_stat64(&stat, statbuf); | |
576 | ||
577 | return error; | |
578 | } | |
257ac264 HC |
579 | |
580 | SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf) | |
1da177e4 LT |
581 | { |
582 | struct kstat stat; | |
583 | int error = vfs_fstat(fd, &stat); | |
584 | ||
585 | if (!error) | |
586 | error = cp_new_stat64(&stat, statbuf); | |
587 | ||
588 | return error; | |
589 | } | |
590 | ||
c7887325 | 591 | SYSCALL_DEFINE4(fstatat64, int, dfd, const char __user *, filename, |
6559eed8 | 592 | struct stat64 __user *, statbuf, int, flag) |
cff2b760 UD |
593 | { |
594 | struct kstat stat; | |
0112fc22 | 595 | int error; |
cff2b760 | 596 | |
0112fc22 OD |
597 | error = vfs_fstatat(dfd, filename, &stat, flag); |
598 | if (error) | |
599 | return error; | |
600 | return cp_new_stat64(&stat, statbuf); | |
cff2b760 | 601 | } |
0753f70f | 602 | #endif /* __ARCH_WANT_STAT64 || __ARCH_WANT_COMPAT_STAT64 */ |
1da177e4 | 603 | |
6f88cc17 | 604 | static noinline_for_stack int |
64bd7204 | 605 | cp_statx(const struct kstat *stat, struct statx __user *buffer) |
a528d35e | 606 | { |
64bd7204 EB |
607 | struct statx tmp; |
608 | ||
609 | memset(&tmp, 0, sizeof(tmp)); | |
610 | ||
a1175d6b JL |
611 | /* STATX_CHANGE_COOKIE is kernel-only for now */ |
612 | tmp.stx_mask = stat->result_mask & ~STATX_CHANGE_COOKIE; | |
64bd7204 | 613 | tmp.stx_blksize = stat->blksize; |
a1175d6b JL |
614 | /* STATX_ATTR_CHANGE_MONOTONIC is kernel-only for now */ |
615 | tmp.stx_attributes = stat->attributes & ~STATX_ATTR_CHANGE_MONOTONIC; | |
64bd7204 EB |
616 | tmp.stx_nlink = stat->nlink; |
617 | tmp.stx_uid = from_kuid_munged(current_user_ns(), stat->uid); | |
618 | tmp.stx_gid = from_kgid_munged(current_user_ns(), stat->gid); | |
619 | tmp.stx_mode = stat->mode; | |
620 | tmp.stx_ino = stat->ino; | |
621 | tmp.stx_size = stat->size; | |
622 | tmp.stx_blocks = stat->blocks; | |
3209f68b | 623 | tmp.stx_attributes_mask = stat->attributes_mask; |
64bd7204 EB |
624 | tmp.stx_atime.tv_sec = stat->atime.tv_sec; |
625 | tmp.stx_atime.tv_nsec = stat->atime.tv_nsec; | |
626 | tmp.stx_btime.tv_sec = stat->btime.tv_sec; | |
627 | tmp.stx_btime.tv_nsec = stat->btime.tv_nsec; | |
628 | tmp.stx_ctime.tv_sec = stat->ctime.tv_sec; | |
629 | tmp.stx_ctime.tv_nsec = stat->ctime.tv_nsec; | |
630 | tmp.stx_mtime.tv_sec = stat->mtime.tv_sec; | |
631 | tmp.stx_mtime.tv_nsec = stat->mtime.tv_nsec; | |
632 | tmp.stx_rdev_major = MAJOR(stat->rdev); | |
633 | tmp.stx_rdev_minor = MINOR(stat->rdev); | |
634 | tmp.stx_dev_major = MAJOR(stat->dev); | |
635 | tmp.stx_dev_minor = MINOR(stat->dev); | |
fa2fcf4f | 636 | tmp.stx_mnt_id = stat->mnt_id; |
825cf206 EB |
637 | tmp.stx_dio_mem_align = stat->dio_mem_align; |
638 | tmp.stx_dio_offset_align = stat->dio_offset_align; | |
64bd7204 EB |
639 | |
640 | return copy_to_user(buffer, &tmp, sizeof(tmp)) ? -EFAULT : 0; | |
a528d35e DH |
641 | } |
642 | ||
1b6fe6e0 | 643 | int do_statx(int dfd, struct filename *filename, unsigned int flags, |
0018784f BM |
644 | unsigned int mask, struct statx __user *buffer) |
645 | { | |
646 | struct kstat stat; | |
647 | int error; | |
648 | ||
649 | if (mask & STATX__RESERVED) | |
650 | return -EINVAL; | |
651 | if ((flags & AT_STATX_SYNC_TYPE) == AT_STATX_SYNC_TYPE) | |
652 | return -EINVAL; | |
653 | ||
a1175d6b JL |
654 | /* STATX_CHANGE_COOKIE is kernel-only for now. Ignore requests |
655 | * from userland. | |
656 | */ | |
657 | mask &= ~STATX_CHANGE_COOKIE; | |
658 | ||
0018784f BM |
659 | error = vfs_statx(dfd, filename, flags, &stat, mask); |
660 | if (error) | |
661 | return error; | |
662 | ||
663 | return cp_statx(&stat, buffer); | |
664 | } | |
665 | ||
a528d35e DH |
666 | /** |
667 | * sys_statx - System call to get enhanced stats | |
668 | * @dfd: Base directory to pathwalk from *or* fd to stat. | |
1e2f82d1 | 669 | * @filename: File to stat or "" with AT_EMPTY_PATH |
a528d35e DH |
670 | * @flags: AT_* flags to control pathwalk. |
671 | * @mask: Parts of statx struct actually required. | |
672 | * @buffer: Result buffer. | |
673 | * | |
1e2f82d1 DH |
674 | * Note that fstat() can be emulated by setting dfd to the fd of interest, |
675 | * supplying "" as the filename and setting AT_EMPTY_PATH in the flags. | |
a528d35e DH |
676 | */ |
677 | SYSCALL_DEFINE5(statx, | |
678 | int, dfd, const char __user *, filename, unsigned, flags, | |
679 | unsigned int, mask, | |
680 | struct statx __user *, buffer) | |
681 | { | |
1b6fe6e0 SR |
682 | int ret; |
683 | struct filename *name; | |
684 | ||
685 | name = getname_flags(filename, getname_statx_lookup_flags(flags), NULL); | |
686 | ret = do_statx(dfd, name, flags, mask, buffer); | |
687 | putname(name); | |
688 | ||
689 | return ret; | |
a528d35e DH |
690 | } |
691 | ||
f18ed30d | 692 | #if defined(CONFIG_COMPAT) && defined(__ARCH_WANT_COMPAT_STAT) |
ac565de3 AV |
693 | static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf) |
694 | { | |
695 | struct compat_stat tmp; | |
696 | ||
932aba1e MP |
697 | if (sizeof(tmp.st_dev) < 4 && !old_valid_dev(stat->dev)) |
698 | return -EOVERFLOW; | |
699 | if (sizeof(tmp.st_rdev) < 4 && !old_valid_dev(stat->rdev)) | |
ac565de3 AV |
700 | return -EOVERFLOW; |
701 | ||
702 | memset(&tmp, 0, sizeof(tmp)); | |
932aba1e | 703 | tmp.st_dev = new_encode_dev(stat->dev); |
ac565de3 AV |
704 | tmp.st_ino = stat->ino; |
705 | if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino) | |
706 | return -EOVERFLOW; | |
707 | tmp.st_mode = stat->mode; | |
708 | tmp.st_nlink = stat->nlink; | |
709 | if (tmp.st_nlink != stat->nlink) | |
710 | return -EOVERFLOW; | |
711 | SET_UID(tmp.st_uid, from_kuid_munged(current_user_ns(), stat->uid)); | |
712 | SET_GID(tmp.st_gid, from_kgid_munged(current_user_ns(), stat->gid)); | |
932aba1e | 713 | tmp.st_rdev = new_encode_dev(stat->rdev); |
ac565de3 AV |
714 | if ((u64) stat->size > MAX_NON_LFS) |
715 | return -EOVERFLOW; | |
716 | tmp.st_size = stat->size; | |
717 | tmp.st_atime = stat->atime.tv_sec; | |
718 | tmp.st_atime_nsec = stat->atime.tv_nsec; | |
719 | tmp.st_mtime = stat->mtime.tv_sec; | |
720 | tmp.st_mtime_nsec = stat->mtime.tv_nsec; | |
721 | tmp.st_ctime = stat->ctime.tv_sec; | |
722 | tmp.st_ctime_nsec = stat->ctime.tv_nsec; | |
723 | tmp.st_blocks = stat->blocks; | |
724 | tmp.st_blksize = stat->blksize; | |
725 | return copy_to_user(ubuf, &tmp, sizeof(tmp)) ? -EFAULT : 0; | |
726 | } | |
727 | ||
728 | COMPAT_SYSCALL_DEFINE2(newstat, const char __user *, filename, | |
729 | struct compat_stat __user *, statbuf) | |
730 | { | |
731 | struct kstat stat; | |
732 | int error; | |
733 | ||
734 | error = vfs_stat(filename, &stat); | |
735 | if (error) | |
736 | return error; | |
737 | return cp_compat_stat(&stat, statbuf); | |
738 | } | |
739 | ||
740 | COMPAT_SYSCALL_DEFINE2(newlstat, const char __user *, filename, | |
741 | struct compat_stat __user *, statbuf) | |
742 | { | |
743 | struct kstat stat; | |
744 | int error; | |
745 | ||
746 | error = vfs_lstat(filename, &stat); | |
747 | if (error) | |
748 | return error; | |
749 | return cp_compat_stat(&stat, statbuf); | |
750 | } | |
751 | ||
752 | #ifndef __ARCH_WANT_STAT64 | |
753 | COMPAT_SYSCALL_DEFINE4(newfstatat, unsigned int, dfd, | |
754 | const char __user *, filename, | |
755 | struct compat_stat __user *, statbuf, int, flag) | |
756 | { | |
757 | struct kstat stat; | |
758 | int error; | |
759 | ||
760 | error = vfs_fstatat(dfd, filename, &stat, flag); | |
761 | if (error) | |
762 | return error; | |
763 | return cp_compat_stat(&stat, statbuf); | |
764 | } | |
765 | #endif | |
766 | ||
767 | COMPAT_SYSCALL_DEFINE2(newfstat, unsigned int, fd, | |
768 | struct compat_stat __user *, statbuf) | |
769 | { | |
770 | struct kstat stat; | |
771 | int error = vfs_fstat(fd, &stat); | |
772 | ||
773 | if (!error) | |
774 | error = cp_compat_stat(&stat, statbuf); | |
775 | return error; | |
776 | } | |
777 | #endif | |
778 | ||
b462707e DM |
779 | /* Caller is here responsible for sufficient locking (ie. inode->i_lock) */ |
780 | void __inode_add_bytes(struct inode *inode, loff_t bytes) | |
1da177e4 | 781 | { |
1da177e4 LT |
782 | inode->i_blocks += bytes >> 9; |
783 | bytes &= 511; | |
784 | inode->i_bytes += bytes; | |
785 | if (inode->i_bytes >= 512) { | |
786 | inode->i_blocks++; | |
787 | inode->i_bytes -= 512; | |
788 | } | |
b462707e | 789 | } |
eb315d2a | 790 | EXPORT_SYMBOL(__inode_add_bytes); |
b462707e DM |
791 | |
792 | void inode_add_bytes(struct inode *inode, loff_t bytes) | |
793 | { | |
794 | spin_lock(&inode->i_lock); | |
795 | __inode_add_bytes(inode, bytes); | |
1da177e4 LT |
796 | spin_unlock(&inode->i_lock); |
797 | } | |
798 | ||
799 | EXPORT_SYMBOL(inode_add_bytes); | |
800 | ||
1c8924eb | 801 | void __inode_sub_bytes(struct inode *inode, loff_t bytes) |
1da177e4 | 802 | { |
1da177e4 LT |
803 | inode->i_blocks -= bytes >> 9; |
804 | bytes &= 511; | |
805 | if (inode->i_bytes < bytes) { | |
806 | inode->i_blocks--; | |
807 | inode->i_bytes += 512; | |
808 | } | |
809 | inode->i_bytes -= bytes; | |
1c8924eb JK |
810 | } |
811 | ||
812 | EXPORT_SYMBOL(__inode_sub_bytes); | |
813 | ||
814 | void inode_sub_bytes(struct inode *inode, loff_t bytes) | |
815 | { | |
816 | spin_lock(&inode->i_lock); | |
817 | __inode_sub_bytes(inode, bytes); | |
1da177e4 LT |
818 | spin_unlock(&inode->i_lock); |
819 | } | |
820 | ||
821 | EXPORT_SYMBOL(inode_sub_bytes); | |
822 | ||
823 | loff_t inode_get_bytes(struct inode *inode) | |
824 | { | |
825 | loff_t ret; | |
826 | ||
827 | spin_lock(&inode->i_lock); | |
f4a8116a | 828 | ret = __inode_get_bytes(inode); |
1da177e4 LT |
829 | spin_unlock(&inode->i_lock); |
830 | return ret; | |
831 | } | |
832 | ||
833 | EXPORT_SYMBOL(inode_get_bytes); | |
834 | ||
835 | void inode_set_bytes(struct inode *inode, loff_t bytes) | |
836 | { | |
837 | /* Caller is here responsible for sufficient locking | |
838 | * (ie. inode->i_lock) */ | |
839 | inode->i_blocks = bytes >> 9; | |
840 | inode->i_bytes = bytes & 511; | |
841 | } | |
842 | ||
843 | EXPORT_SYMBOL(inode_set_bytes); |