blob: 64b6b3aece21aee52a2b7c9246862afb41d606f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_STAT_H
2#define _LINUX_STAT_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <asm/stat.h>
David Howells607ca462012-10-13 10:46:48 +01006#include <uapi/linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO)
9#define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
10#define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH)
11#define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH)
12#define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH)
13
Ulrich Drepper1c710c82007-05-08 00:33:25 -070014#define UTIME_NOW ((1l << 30) - 1l)
15#define UTIME_OMIT ((1l << 30) - 2l)
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/types.h>
18#include <linux/time.h>
Eric W. Biedermana7c19382012-02-09 09:10:30 -080019#include <linux/uidgid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
David Howellsa528d352017-01-31 16:46:22 +000021#define KSTAT_QUERY_FLAGS (AT_STATX_SYNC_TYPE)
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct kstat {
David Howellsa528d352017-01-31 16:46:22 +000024 u32 result_mask; /* What fields the user got */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 umode_t mode;
26 unsigned int nlink;
David Howellsa528d352017-01-31 16:46:22 +000027 uint32_t blksize; /* Preferred I/O size */
28 u64 attributes;
David Howells3209f682017-03-31 18:32:17 +010029 u64 attributes_mask;
David Howellsa528d352017-01-31 16:46:22 +000030#define KSTAT_ATTR_FS_IOC_FLAGS \
31 (STATX_ATTR_COMPRESSED | \
32 STATX_ATTR_IMMUTABLE | \
33 STATX_ATTR_APPEND | \
34 STATX_ATTR_NODUMP | \
35 STATX_ATTR_ENCRYPTED \
36 )/* Attrs corresponding to FS_*_FL flags */
37 u64 ino;
38 dev_t dev;
39 dev_t rdev;
Eric W. Biedermana7c19382012-02-09 09:10:30 -080040 kuid_t uid;
41 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 loff_t size;
David Howellsa528d352017-01-31 16:46:22 +000043 struct timespec atime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct timespec mtime;
45 struct timespec ctime;
David Howellsa528d352017-01-31 16:46:22 +000046 struct timespec btime; /* File creation time */
47 u64 blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50#endif