blob: c76e524fb34b6af362c82103662454750826ac9e [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;
29#define KSTAT_ATTR_FS_IOC_FLAGS \
30 (STATX_ATTR_COMPRESSED | \
31 STATX_ATTR_IMMUTABLE | \
32 STATX_ATTR_APPEND | \
33 STATX_ATTR_NODUMP | \
34 STATX_ATTR_ENCRYPTED \
35 )/* Attrs corresponding to FS_*_FL flags */
36 u64 ino;
37 dev_t dev;
38 dev_t rdev;
Eric W. Biedermana7c19382012-02-09 09:10:30 -080039 kuid_t uid;
40 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 loff_t size;
David Howellsa528d352017-01-31 16:46:22 +000042 struct timespec atime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct timespec mtime;
44 struct timespec ctime;
David Howellsa528d352017-01-31 16:46:22 +000045 struct timespec btime; /* File creation time */
46 u64 blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
49#endif