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