2 * Copyright 2008 Red Hat, Inc. All rights reserved.
3 * Copyright 2008 Ian Kent <raven@themaw.net>
5 * This file is part of the Linux kernel and is made available under
6 * the terms of the GNU General Public License, version 2, or at your
7 * option, any later version, incorporated herein by reference.
10 #ifndef _LINUX_AUTO_DEV_IOCTL_H
11 #define _LINUX_AUTO_DEV_IOCTL_H
13 #include <linux/string.h>
14 #include <linux/types.h>
16 #define AUTOFS_DEVICE_NAME "autofs"
18 #define AUTOFS_DEV_IOCTL_VERSION_MAJOR 1
19 #define AUTOFS_DEV_IOCTL_VERSION_MINOR 0
21 #define AUTOFS_DEVID_LEN 16
23 #define AUTOFS_DEV_IOCTL_SIZE sizeof(struct autofs_dev_ioctl)
26 * An ioctl interface for autofs mount point control.
29 struct args_protover
{
33 struct args_protosubver
{
37 struct args_openmount
{
50 struct args_setpipefd
{
58 struct args_requester
{
67 struct args_askumount
{
71 struct args_ismountpoint
{
84 * All the ioctls use this structure.
85 * When sending a path size must account for the total length
86 * of the chunk of memory otherwise is is the size of the
90 struct autofs_dev_ioctl
{
93 __u32 size
; /* total size of data passed in
94 * including this struct */
95 __s32 ioctlfd
; /* automount command fd */
97 /* Command parameters */
100 struct args_protover protover
;
101 struct args_protosubver protosubver
;
102 struct args_openmount openmount
;
103 struct args_ready ready
;
104 struct args_fail fail
;
105 struct args_setpipefd setpipefd
;
106 struct args_timeout timeout
;
107 struct args_requester requester
;
108 struct args_expire expire
;
109 struct args_askumount askumount
;
110 struct args_ismountpoint ismountpoint
;
116 static inline void init_autofs_dev_ioctl(struct autofs_dev_ioctl
*in
)
118 memset(in
, 0, sizeof(struct autofs_dev_ioctl
));
119 in
->ver_major
= AUTOFS_DEV_IOCTL_VERSION_MAJOR
;
120 in
->ver_minor
= AUTOFS_DEV_IOCTL_VERSION_MINOR
;
121 in
->size
= sizeof(struct autofs_dev_ioctl
);
127 * If you change this make sure you make the corresponding change
128 * to autofs-dev-ioctl.c:lookup_ioctl()
131 /* Get various version info */
132 AUTOFS_DEV_IOCTL_VERSION_CMD
= 0x71,
133 AUTOFS_DEV_IOCTL_PROTOVER_CMD
,
134 AUTOFS_DEV_IOCTL_PROTOSUBVER_CMD
,
136 /* Open mount ioctl fd */
137 AUTOFS_DEV_IOCTL_OPENMOUNT_CMD
,
139 /* Close mount ioctl fd */
140 AUTOFS_DEV_IOCTL_CLOSEMOUNT_CMD
,
142 /* Mount/expire status returns */
143 AUTOFS_DEV_IOCTL_READY_CMD
,
144 AUTOFS_DEV_IOCTL_FAIL_CMD
,
146 /* Activate/deactivate autofs mount */
147 AUTOFS_DEV_IOCTL_SETPIPEFD_CMD
,
148 AUTOFS_DEV_IOCTL_CATATONIC_CMD
,
151 AUTOFS_DEV_IOCTL_TIMEOUT_CMD
,
153 /* Get mount last requesting uid and gid */
154 AUTOFS_DEV_IOCTL_REQUESTER_CMD
,
156 /* Check for eligible expire candidates */
157 AUTOFS_DEV_IOCTL_EXPIRE_CMD
,
159 /* Request busy status */
160 AUTOFS_DEV_IOCTL_ASKUMOUNT_CMD
,
162 /* Check if path is a mountpoint */
163 AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD
,
166 #define AUTOFS_IOCTL 0x93
168 #define AUTOFS_DEV_IOCTL_VERSION \
169 _IOWR(AUTOFS_IOCTL, \
170 AUTOFS_DEV_IOCTL_VERSION_CMD, struct autofs_dev_ioctl)
172 #define AUTOFS_DEV_IOCTL_PROTOVER \
173 _IOWR(AUTOFS_IOCTL, \
174 AUTOFS_DEV_IOCTL_PROTOVER_CMD, struct autofs_dev_ioctl)
176 #define AUTOFS_DEV_IOCTL_PROTOSUBVER \
177 _IOWR(AUTOFS_IOCTL, \
178 AUTOFS_DEV_IOCTL_PROTOSUBVER_CMD, struct autofs_dev_ioctl)
180 #define AUTOFS_DEV_IOCTL_OPENMOUNT \
181 _IOWR(AUTOFS_IOCTL, \
182 AUTOFS_DEV_IOCTL_OPENMOUNT_CMD, struct autofs_dev_ioctl)
184 #define AUTOFS_DEV_IOCTL_CLOSEMOUNT \
185 _IOWR(AUTOFS_IOCTL, \
186 AUTOFS_DEV_IOCTL_CLOSEMOUNT_CMD, struct autofs_dev_ioctl)
188 #define AUTOFS_DEV_IOCTL_READY \
189 _IOWR(AUTOFS_IOCTL, \
190 AUTOFS_DEV_IOCTL_READY_CMD, struct autofs_dev_ioctl)
192 #define AUTOFS_DEV_IOCTL_FAIL \
193 _IOWR(AUTOFS_IOCTL, \
194 AUTOFS_DEV_IOCTL_FAIL_CMD, struct autofs_dev_ioctl)
196 #define AUTOFS_DEV_IOCTL_SETPIPEFD \
197 _IOWR(AUTOFS_IOCTL, \
198 AUTOFS_DEV_IOCTL_SETPIPEFD_CMD, struct autofs_dev_ioctl)
200 #define AUTOFS_DEV_IOCTL_CATATONIC \
201 _IOWR(AUTOFS_IOCTL, \
202 AUTOFS_DEV_IOCTL_CATATONIC_CMD, struct autofs_dev_ioctl)
204 #define AUTOFS_DEV_IOCTL_TIMEOUT \
205 _IOWR(AUTOFS_IOCTL, \
206 AUTOFS_DEV_IOCTL_TIMEOUT_CMD, struct autofs_dev_ioctl)
208 #define AUTOFS_DEV_IOCTL_REQUESTER \
209 _IOWR(AUTOFS_IOCTL, \
210 AUTOFS_DEV_IOCTL_REQUESTER_CMD, struct autofs_dev_ioctl)
212 #define AUTOFS_DEV_IOCTL_EXPIRE \
213 _IOWR(AUTOFS_IOCTL, \
214 AUTOFS_DEV_IOCTL_EXPIRE_CMD, struct autofs_dev_ioctl)
216 #define AUTOFS_DEV_IOCTL_ASKUMOUNT \
217 _IOWR(AUTOFS_IOCTL, \
218 AUTOFS_DEV_IOCTL_ASKUMOUNT_CMD, struct autofs_dev_ioctl)
220 #define AUTOFS_DEV_IOCTL_ISMOUNTPOINT \
221 _IOWR(AUTOFS_IOCTL, \
222 AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD, struct autofs_dev_ioctl)
224 #endif /* _LINUX_AUTO_DEV_IOCTL_H */