xref: /illumos-gate/usr/src/uts/common/sys/fcntl.h (revision b9238976)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
27 /*	  All Rights Reserved  	*/
28 
29 /*
30  * University Copyright- Copyright (c) 1982, 1986, 1988
31  * The Regents of the University of California
32  * All Rights Reserved
33  *
34  * University Acknowledgment- Portions of this document are derived from
35  * software developed by the University of California, Berkeley, and its
36  * contributors.
37  */
38 
39 #ifndef	_SYS_FCNTL_H
40 #define	_SYS_FCNTL_H
41 
42 #pragma ident	"%Z%%M%	%I%	%E% SMI"
43 
44 #include <sys/feature_tests.h>
45 
46 #include <sys/types.h>
47 
48 #ifdef	__cplusplus
49 extern "C" {
50 #endif
51 
52 /*
53  * Flag values accessible to open(2) and fcntl(2)
54  * (the first three can only be set by open(2)).
55  */
56 #define	O_RDONLY	0
57 #define	O_WRONLY	1
58 #define	O_RDWR		2
59 #if defined(__EXTENSIONS__) || !defined(_POSIX_C_SOURCE)
60 #define	O_NDELAY	0x04	/* non-blocking I/O */
61 #endif /* defined(__EXTENSIONS__) || !defined(_POSIX_C_SOURCE) */
62 #define	O_APPEND	0x08	/* append (writes guaranteed at the end) */
63 #if defined(__EXTENSIONS__) || !defined(_POSIX_C_SOURCE) || \
64 	(_POSIX_C_SOURCE > 2) || defined(_XOPEN_SOURCE)
65 #define	O_SYNC		0x10	/* synchronized file update option */
66 #define	O_DSYNC		0x40	/* synchronized data update option */
67 #define	O_RSYNC		0x8000	/* synchronized file update option */
68 				/* defines read/write file integrity */
69 #endif /* defined(__EXTENSIONS__) || !defined(_POSIX_C_SOURCE) ... */
70 #define	O_NONBLOCK	0x80	/* non-blocking I/O (POSIX) */
71 #ifdef	SUN_SRC_COMPAT
72 #define	O_PRIV 		0x1000  /* Private access to file */
73 #endif /* SUN_SRC_COMPAT */
74 #ifdef	_LARGEFILE_SOURCE
75 #define	O_LARGEFILE	0x2000
76 #endif
77 
78 /*
79  * Flag values accessible only to open(2).
80  */
81 #define	O_CREAT		0x100	/* open with file create (uses third arg) */
82 #define	O_TRUNC		0x200	/* open with truncation */
83 #define	O_EXCL		0x400	/* exclusive open */
84 #define	O_NOCTTY	0x800	/* don't allocate controlling tty (POSIX) */
85 #define	O_XATTR		0x4000	/* extended attribute */
86 #define	O_NOFOLLOW	0x20000	/* don't follow symlinks */
87 #define	O_NOLINKS	0x40000	/* don't allow multiple hard links */
88 
89 /*
90  * fcntl(2) requests
91  *
92  * N.B.: values are not necessarily assigned sequentially below.
93  */
94 #define	F_DUPFD		0	/* Duplicate fildes */
95 #define	F_GETFD		1	/* Get fildes flags */
96 #define	F_SETFD		2	/* Set fildes flags */
97 #define	F_GETFL		3	/* Get file flags */
98 #define	F_GETXFL	45	/* Get file flags including open-only flags */
99 #define	F_SETFL		4	/* Set file flags */
100 
101 /*
102  * Applications that read /dev/mem must be built like the kernel.  A
103  * new symbol "_KMEMUSER" is defined for this purpose.
104  */
105 #if defined(_KERNEL) || defined(_KMEMUSER)
106 #define	F_O_GETLK	5	/* SVR3 Get file lock (need for rfs, across */
107 				/* the wire compatibility */
108 /* clustering: lock id contains both per-node sysid and node id */
109 #define	SYSIDMASK		0x0000ffff
110 #define	GETSYSID(id)		(id & SYSIDMASK)
111 #define	NODEIDMASK		0xffff0000
112 #define	BITS_IN_SYSID		16
113 #define	GETNLMID(sysid)		((int)(((uint_t)(sysid) & NODEIDMASK) >> \
114 				    BITS_IN_SYSID))
115 
116 /* Clustering: Macro used for PXFS locks */
117 #define	GETPXFSID(sysid)	((int)(((uint_t)(sysid) & NODEIDMASK) >> \
118 				    BITS_IN_SYSID))
119 #endif	/* defined(_KERNEL) */
120 
121 #define	F_CHKFL		8	/* Unused */
122 #define	F_DUP2FD	9	/* Duplicate fildes at third arg */
123 
124 #define	F_ISSTREAM	13	/* Is the file desc. a stream ? */
125 #define	F_PRIV		15	/* Turn on private access to file */
126 #define	F_NPRIV		16	/* Turn off private access to file */
127 #define	F_QUOTACTL	17	/* UFS quota call */
128 #define	F_BLOCKS	18	/* Get number of BLKSIZE blocks allocated */
129 #define	F_BLKSIZE	19	/* Get optimal I/O block size */
130 /*
131  * Numbers 20-22 have been removed and should not be reused.
132  */
133 #define	F_GETOWN	23	/* Get owner (socket emulation) */
134 #define	F_SETOWN	24	/* Set owner (socket emulation) */
135 
136 #ifdef C2_AUDIT
137 #define	F_REVOKE	25	/* C2 Security. Revoke access to file desc. */
138 #endif
139 
140 #define	F_HASREMOTELOCKS 26	/* Does vp have NFS locks; private to lock */
141 				/* manager */
142 
143 /*
144  * Commands that refer to flock structures.  The argument types differ between
145  * the large and small file environments; therefore, the #defined values must
146  * as well.
147  * The NBMAND forms are private and should not be used.
148  */
149 
150 #if defined(_LP64) || _FILE_OFFSET_BITS == 32
151 /* "Native" application compilation environment */
152 #define	F_SETLK		6	/* Set file lock */
153 #define	F_SETLKW	7	/* Set file lock and wait */
154 #define	F_ALLOCSP	10	/* Allocate file space */
155 #define	F_FREESP	11	/* Free file space */
156 #define	F_GETLK		14	/* Get file lock */
157 #define	F_SETLK_NBMAND	42	/* private */
158 #else
159 /* ILP32 large file application compilation environment version */
160 #define	F_SETLK		34	/* Set file lock */
161 #define	F_SETLKW	35	/* Set file lock and wait */
162 #define	F_ALLOCSP	28	/* Alllocate file space */
163 #define	F_FREESP	27	/* Free file space */
164 #define	F_GETLK		33	/* Get file lock */
165 #define	F_SETLK_NBMAND	44	/* private */
166 #endif /* _LP64 || _FILE_OFFSET_BITS == 32 */
167 
168 #if 	defined(_LARGEFILE64_SOURCE)
169 
170 #if !defined(_LP64) || defined(_KERNEL)
171 /*
172  * transitional large file interface version
173  * These are only valid in a 32 bit application compiled with large files
174  * option, for source compatibility, the 64-bit versions are mapped back
175  * to the native versions.
176  */
177 #define	F_SETLK64	34	/* Set file lock */
178 #define	F_SETLKW64	35	/* Set file lock and wait */
179 #define	F_ALLOCSP64	28	/* Allocate file space */
180 #define	F_FREESP64	27	/* Free file space */
181 #define	F_GETLK64	33	/* Get file lock */
182 #define	F_SETLK64_NBMAND	44	/* private */
183 #else
184 #define	F_SETLK64	6	/* Set file lock */
185 #define	F_SETLKW64	7	/* Set file lock and wait */
186 #define	F_ALLOCSP64	10	/* Allocate file space */
187 #define	F_FREESP64	11	/* Free file space */
188 #define	F_GETLK64	14	/* Get file lock */
189 #define	F_SETLK64_NBMAND	42	/* private */
190 #endif /* !_LP64 || _KERNEL */
191 
192 #endif /* _LARGEFILE64_SOURCE */
193 
194 #define	F_SHARE		40	/* Set a file share reservation */
195 #define	F_UNSHARE	41	/* Remove a file share reservation */
196 #define	F_SHARE_NBMAND	43	/* private */
197 
198 #define	F_BADFD		46	/* Create Poison FD */
199 
200 /*
201  * File segment locking set data type - information passed to system by user.
202  */
203 
204 /* regular version, for both small and large file compilation environment */
205 typedef struct flock {
206 	short	l_type;
207 	short	l_whence;
208 	off_t	l_start;
209 	off_t	l_len;		/* len == 0 means until end of file */
210 	int	l_sysid;
211 	pid_t	l_pid;
212 	long	l_pad[4];		/* reserve area */
213 } flock_t;
214 
215 #if defined(_SYSCALL32)
216 
217 /* Kernel's view of ILP32 flock structure */
218 
219 typedef struct flock32 {
220 	int16_t	l_type;
221 	int16_t	l_whence;
222 	off32_t	l_start;
223 	off32_t	l_len;		/* len == 0 means until end of file */
224 	int32_t	l_sysid;
225 	pid32_t	l_pid;
226 	int32_t	l_pad[4];		/* reserve area */
227 } flock32_t;
228 
229 #endif /* _SYSCALL32 */
230 
231 /* transitional large file interface version */
232 
233 #if 	defined(_LARGEFILE64_SOURCE)
234 
235 typedef struct flock64 {
236 	short	l_type;
237 	short	l_whence;
238 	off64_t	l_start;
239 	off64_t	l_len;		/* len == 0 means until end of file */
240 	int	l_sysid;
241 	pid_t	l_pid;
242 	long	l_pad[4];		/* reserve area */
243 } flock64_t;
244 
245 #if defined(_SYSCALL32)
246 
247 /* Kernel's view of ILP32 flock64 */
248 
249 #if _LONG_LONG_ALIGNMENT == 8 && _LONG_LONG_ALIGNMENT_32 == 4
250 #pragma	pack(4)
251 #endif
252 
253 typedef struct flock64_32 {
254 	int16_t	l_type;
255 	int16_t	l_whence;
256 	off64_t	l_start;
257 	off64_t	l_len;		/* len == 0 means until end of file */
258 	int32_t	l_sysid;
259 	pid32_t	l_pid;
260 	int32_t	l_pad[4];		/* reserve area */
261 } flock64_32_t;
262 
263 #if _LONG_LONG_ALIGNMENT == 8 && _LONG_LONG_ALIGNMENT_32 == 4
264 #pragma pack()
265 #endif
266 
267 /* Kernel's view of LP64 flock64 */
268 
269 typedef struct flock64_64 {
270 	int16_t	l_type;
271 	int16_t	l_whence;
272 	off64_t	l_start;
273 	off64_t	l_len;		/* len == 0 means until end of file */
274 	int32_t	l_sysid;
275 	pid32_t	l_pid;
276 	int64_t	l_pad[4];		/* reserve area */
277 } flock64_64_t;
278 
279 #endif	/* _SYSCALL32 */
280 
281 #endif /* _LARGEFILE64_SOURCE */
282 
283 #if defined(_KERNEL) || defined(_KMEMUSER)
284 /* SVr3 flock type; needed for rfs across the wire compatibility */
285 typedef struct o_flock {
286 	int16_t	l_type;
287 	int16_t	l_whence;
288 	int32_t	l_start;
289 	int32_t	l_len;		/* len == 0 means until end of file */
290 	int16_t	l_sysid;
291 	int16_t	l_pid;
292 } o_flock_t;
293 #endif	/* defined(_KERNEL) */
294 
295 /*
296  * File segment locking types.
297  */
298 #define	F_RDLCK		01	/* Read lock */
299 #define	F_WRLCK		02	/* Write lock */
300 #define	F_UNLCK		03	/* Remove lock(s) */
301 #define	F_UNLKSYS	04	/* remove remote locks for a given system */
302 
303 /*
304  * POSIX constants
305  */
306 
307 #define	O_ACCMODE	3	/* Mask for file access modes */
308 #define	FD_CLOEXEC	1	/* close on exec flag */
309 
310 /*
311  * DIRECTIO
312  */
313 #if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX)
314 #define	DIRECTIO_OFF	(0)
315 #define	DIRECTIO_ON	(1)
316 
317 /*
318  * File share reservation type
319  */
320 typedef struct fshare {
321 	short	f_access;
322 	short	f_deny;
323 	int	f_id;
324 } fshare_t;
325 
326 /*
327  * f_access values
328  */
329 #define	F_RDACC		0x1	/* Read-only share access */
330 #define	F_WRACC		0x2	/* Write-only share access */
331 #define	F_RWACC		0x3	/* Read-Write share access */
332 
333 /*
334  * f_deny values
335  */
336 #define	F_NODNY		0x0	/* Don't deny others access */
337 #define	F_RDDNY		0x1	/* Deny others read share access */
338 #define	F_WRDNY		0x2	/* Deny others write share access */
339 #define	F_RWDNY		0x3	/* Deny others read or write share access */
340 #define	F_COMPAT	0x8	/* Set share to old DOS compatibility mode */
341 #define	F_MANDDNY	0x10	/* private flag: mandatory enforcement */
342 #endif /* defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX) */
343 
344 /*
345  * Special flags for functions such as openat(), fstatat()....
346  */
347 #if !defined(__XOPEN_OR_POSIX) || defined(_ATFILE_SOURCE) || \
348 	defined(__EXTENSIONS__)
349 #define	AT_FDCWD			0xffd19553
350 #define	AT_SYMLINK_NOFOLLOW		0x1000
351 #define	AT_REMOVEDIR			0x1
352 #define	_AT_TRIGGER			0x2
353 #endif
354 
355 #ifdef	__cplusplus
356 }
357 #endif
358 
359 #endif	/* _SYS_FCNTL_H */
360