blob: 99c2d982ab07912c0912704a51750e940c21077d [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
Christopher Ferris32ff3f82020-12-14 13:10:04 -080029#define MS_NOSYMFOLLOW 256
Christopher Ferrisd842e432019-03-07 10:21:59 -080030#define MS_NOATIME 1024
31#define MS_NODIRATIME 2048
32#define MS_BIND 4096
33#define MS_MOVE 8192
34#define MS_REC 16384
35#define MS_VERBOSE 32768
36#define MS_SILENT 32768
37#define MS_POSIXACL (1 << 16)
38#define MS_UNBINDABLE (1 << 17)
39#define MS_PRIVATE (1 << 18)
40#define MS_SLAVE (1 << 19)
41#define MS_SHARED (1 << 20)
42#define MS_RELATIME (1 << 21)
43#define MS_KERNMOUNT (1 << 22)
44#define MS_I_VERSION (1 << 23)
45#define MS_STRICTATIME (1 << 24)
46#define MS_LAZYTIME (1 << 25)
47#define MS_SUBMOUNT (1 << 26)
48#define MS_NOREMOTELOCK (1 << 27)
49#define MS_NOSEC (1 << 28)
50#define MS_BORN (1 << 29)
51#define MS_ACTIVE (1 << 30)
52#define MS_NOUSER (1 << 31)
53#define MS_RMT_MASK (MS_RDONLY | MS_SYNCHRONOUS | MS_MANDLOCK | MS_I_VERSION | MS_LAZYTIME)
54#define MS_MGC_VAL 0xC0ED0000
55#define MS_MGC_MSK 0xffff0000
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -070056#define OPEN_TREE_CLONE 1
57#define OPEN_TREE_CLOEXEC O_CLOEXEC
58#define MOVE_MOUNT_F_SYMLINKS 0x00000001
59#define MOVE_MOUNT_F_AUTOMOUNTS 0x00000002
60#define MOVE_MOUNT_F_EMPTY_PATH 0x00000004
61#define MOVE_MOUNT_T_SYMLINKS 0x00000010
62#define MOVE_MOUNT_T_AUTOMOUNTS 0x00000020
63#define MOVE_MOUNT_T_EMPTY_PATH 0x00000040
64#define MOVE_MOUNT__MASK 0x00000077
65#define FSOPEN_CLOEXEC 0x00000001
66#define FSPICK_CLOEXEC 0x00000001
67#define FSPICK_SYMLINK_NOFOLLOW 0x00000002
68#define FSPICK_NO_AUTOMOUNT 0x00000004
69#define FSPICK_EMPTY_PATH 0x00000008
70enum fsconfig_command {
71 FSCONFIG_SET_FLAG = 0,
72 FSCONFIG_SET_STRING = 1,
73 FSCONFIG_SET_BINARY = 2,
74 FSCONFIG_SET_PATH = 3,
75 FSCONFIG_SET_PATH_EMPTY = 4,
76 FSCONFIG_SET_FD = 5,
77 FSCONFIG_CMD_CREATE = 6,
78 FSCONFIG_CMD_RECONFIGURE = 7,
79};
80#define FSMOUNT_CLOEXEC 0x00000001
81#define MOUNT_ATTR_RDONLY 0x00000001
82#define MOUNT_ATTR_NOSUID 0x00000002
83#define MOUNT_ATTR_NODEV 0x00000004
84#define MOUNT_ATTR_NOEXEC 0x00000008
85#define MOUNT_ATTR__ATIME 0x00000070
86#define MOUNT_ATTR_RELATIME 0x00000000
87#define MOUNT_ATTR_NOATIME 0x00000010
88#define MOUNT_ATTR_STRICTATIME 0x00000020
89#define MOUNT_ATTR_NODIRATIME 0x00000080
Christopher Ferrisd842e432019-03-07 10:21:59 -080090#endif