blob: 10c53a506d2ef315ff9db0c39fdd8c43b736501e [file] [log] [blame]
Christopher Ferrisd842e432019-03-07 10:21:59 -08001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _UAPI_LINUX_MOUNT_H
20#define _UAPI_LINUX_MOUNT_H
21#define MS_RDONLY 1
22#define MS_NOSUID 2
23#define MS_NODEV 4
24#define MS_NOEXEC 8
25#define MS_SYNCHRONOUS 16
26#define MS_REMOUNT 32
27#define MS_MANDLOCK 64
28#define MS_DIRSYNC 128
29#define MS_NOATIME 1024
30#define MS_NODIRATIME 2048
31#define MS_BIND 4096
32#define MS_MOVE 8192
33#define MS_REC 16384
34#define MS_VERBOSE 32768
35#define MS_SILENT 32768
36#define MS_POSIXACL (1 << 16)
37#define MS_UNBINDABLE (1 << 17)
38#define MS_PRIVATE (1 << 18)
39#define MS_SLAVE (1 << 19)
40#define MS_SHARED (1 << 20)
41#define MS_RELATIME (1 << 21)
42#define MS_KERNMOUNT (1 << 22)
43#define MS_I_VERSION (1 << 23)
44#define MS_STRICTATIME (1 << 24)
45#define MS_LAZYTIME (1 << 25)
46#define MS_SUBMOUNT (1 << 26)
47#define MS_NOREMOTELOCK (1 << 27)
48#define MS_NOSEC (1 << 28)
49#define MS_BORN (1 << 29)
50#define MS_ACTIVE (1 << 30)
51#define MS_NOUSER (1 << 31)
52#define MS_RMT_MASK (MS_RDONLY | MS_SYNCHRONOUS | MS_MANDLOCK | MS_I_VERSION | MS_LAZYTIME)
53#define MS_MGC_VAL 0xC0ED0000
54#define MS_MGC_MSK 0xffff0000
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -070055#define OPEN_TREE_CLONE 1
56#define OPEN_TREE_CLOEXEC O_CLOEXEC
57#define MOVE_MOUNT_F_SYMLINKS 0x00000001
58#define MOVE_MOUNT_F_AUTOMOUNTS 0x00000002
59#define MOVE_MOUNT_F_EMPTY_PATH 0x00000004
60#define MOVE_MOUNT_T_SYMLINKS 0x00000010
61#define MOVE_MOUNT_T_AUTOMOUNTS 0x00000020
62#define MOVE_MOUNT_T_EMPTY_PATH 0x00000040
63#define MOVE_MOUNT__MASK 0x00000077
64#define FSOPEN_CLOEXEC 0x00000001
65#define FSPICK_CLOEXEC 0x00000001
66#define FSPICK_SYMLINK_NOFOLLOW 0x00000002
67#define FSPICK_NO_AUTOMOUNT 0x00000004
68#define FSPICK_EMPTY_PATH 0x00000008
69enum fsconfig_command {
70 FSCONFIG_SET_FLAG = 0,
71 FSCONFIG_SET_STRING = 1,
72 FSCONFIG_SET_BINARY = 2,
73 FSCONFIG_SET_PATH = 3,
74 FSCONFIG_SET_PATH_EMPTY = 4,
75 FSCONFIG_SET_FD = 5,
76 FSCONFIG_CMD_CREATE = 6,
77 FSCONFIG_CMD_RECONFIGURE = 7,
78};
79#define FSMOUNT_CLOEXEC 0x00000001
80#define MOUNT_ATTR_RDONLY 0x00000001
81#define MOUNT_ATTR_NOSUID 0x00000002
82#define MOUNT_ATTR_NODEV 0x00000004
83#define MOUNT_ATTR_NOEXEC 0x00000008
84#define MOUNT_ATTR__ATIME 0x00000070
85#define MOUNT_ATTR_RELATIME 0x00000000
86#define MOUNT_ATTR_NOATIME 0x00000010
87#define MOUNT_ATTR_STRICTATIME 0x00000020
88#define MOUNT_ATTR_NODIRATIME 0x00000080
Christopher Ferrisd842e432019-03-07 10:21:59 -080089#endif