The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/fcntl.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: fcntl.h,v 1.31.4.1 2005/04/03 13:30:04 tron Exp $      */
    2 
    3 /*-
    4  * Copyright (c) 1983, 1990, 1993
    5  *      The Regents of the University of California.  All rights reserved.
    6  * (c) UNIX System Laboratories, Inc.
    7  * All or some portions of this file are derived from material licensed
    8  * to the University of California by American Telephone and Telegraph
    9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
   10  * the permission of UNIX System Laboratories, Inc.
   11  *
   12  * Redistribution and use in source and binary forms, with or without
   13  * modification, are permitted provided that the following conditions
   14  * are met:
   15  * 1. Redistributions of source code must retain the above copyright
   16  *    notice, this list of conditions and the following disclaimer.
   17  * 2. Redistributions in binary form must reproduce the above copyright
   18  *    notice, this list of conditions and the following disclaimer in the
   19  *    documentation and/or other materials provided with the distribution.
   20  * 3. Neither the name of the University nor the names of its contributors
   21  *    may be used to endorse or promote products derived from this software
   22  *    without specific prior written permission.
   23  *
   24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   34  * SUCH DAMAGE.
   35  *
   36  *      @(#)fcntl.h     8.3 (Berkeley) 1/21/94
   37  */
   38 
   39 #ifndef _SYS_FCNTL_H_
   40 #define _SYS_FCNTL_H_
   41 
   42 /*
   43  * This file includes the definitions for open and fcntl
   44  * described by POSIX for <fcntl.h>; it also includes
   45  * related kernel definitions.
   46  */
   47 
   48 #ifndef _KERNEL
   49 #include <sys/featuretest.h>
   50 #include <sys/types.h>
   51 #if defined(_XOPEN_SOURCE) || defined(_NETBSD_SOURCE)
   52 #include <sys/stat.h>
   53 #endif /* _XOPEN_SOURCE || _NETBSD_SOURCE */
   54 #endif /* !_KERNEL */
   55 
   56 /*
   57  * File status flags: these are used by open(2), fcntl(2).
   58  * They are also used (indirectly) in the kernel file structure f_flags,
   59  * which is a superset of the open/fcntl flags.  Open flags and f_flags
   60  * are inter-convertible using OFLAGS(fflags) and FFLAGS(oflags).
   61  * Open/fcntl flags begin with O_; kernel-internal flags begin with F.
   62  */
   63 /* open-only flags */
   64 #define O_RDONLY        0x00000000      /* open for reading only */
   65 #define O_WRONLY        0x00000001      /* open for writing only */
   66 #define O_RDWR          0x00000002      /* open for reading and writing */
   67 #define O_ACCMODE       0x00000003      /* mask for above modes */
   68 
   69 /*
   70  * Kernel encoding of open mode; separate read and write bits that are
   71  * independently testable: 1 greater than the above.
   72  *
   73  * XXX
   74  * FREAD and FWRITE are excluded from the #ifdef _KERNEL so that TIOCFLUSH,
   75  * which was documented to use FREAD/FWRITE, continues to work.
   76  */
   77 #if defined(_NETBSD_SOURCE)
   78 #define FREAD           0x00000001
   79 #define FWRITE          0x00000002
   80 #endif
   81 #define O_NONBLOCK      0x00000004      /* no delay */
   82 #define O_APPEND        0x00000008      /* set append mode */
   83 #if defined(_NETBSD_SOURCE)
   84 #define O_SHLOCK        0x00000010      /* open with shared file lock */
   85 #define O_EXLOCK        0x00000020      /* open with exclusive file lock */
   86 #define O_ASYNC         0x00000040      /* signal pgrp when data ready */
   87 #endif
   88 #if (_POSIX_C_SOURCE - 0) >= 199309L || \
   89     (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \
   90     (_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE)
   91 #define O_SYNC          0x00000080      /* synchronous writes */
   92 #endif
   93 #if defined(_NETBSD_SOURCE)
   94 #define O_NOFOLLOW      0x00000100      /* don't follow symlinks on the last */
   95                                         /* path component */
   96 #endif
   97 #define O_CREAT         0x00000200      /* create if nonexistent */
   98 #define O_TRUNC         0x00000400      /* truncate to zero length */
   99 #define O_EXCL          0x00000800      /* error if already exists */
  100 
  101 #if (_POSIX_C_SOURCE - 0) >= 199309L || (_XOPEN_SOURCE - 0) >= 500 || \
  102     defined(_NETBSD_SOURCE)
  103 #define O_DSYNC         0x00010000      /* write: I/O data completion */
  104 #define O_RSYNC         0x00020000      /* read: I/O completion as for write */
  105 #endif
  106 
  107 #if defined(_NETBSD_SOURCE)
  108 #define O_ALT_IO        0x00040000      /* use alternate i/o semantics */
  109 #endif
  110 
  111 /* defined by POSIX 1003.1; BSD default, but required to be bitwise distinct */
  112 #define O_NOCTTY        0x00008000      /* don't assign controlling terminal */
  113 
  114 #ifdef _KERNEL
  115 /* convert from open() flags to/from fflags; convert O_RD/WR to FREAD/FWRITE */
  116 #define FFLAGS(oflags)  ((oflags) + 1)
  117 #define OFLAGS(fflags)  ((fflags) - 1)
  118 
  119 /* all bits settable during open(2) */
  120 #define O_MASK          (O_ACCMODE|O_NONBLOCK|O_APPEND|O_SHLOCK|O_EXLOCK|\
  121                          O_ASYNC|O_SYNC|O_CREAT|O_TRUNC|O_EXCL|O_DSYNC|\
  122                          O_RSYNC|O_NOCTTY|O_ALT_IO|O_NOFOLLOW)
  123 
  124 #define FMARK           0x00001000      /* mark during gc() */
  125 #define FDEFER          0x00002000      /* defer for next gc pass */
  126 #define FHASLOCK        0x00004000      /* descriptor holds advisory lock */
  127 #define FKIOCTL         0x80000000      /* kernel originated ioctl */
  128 /* bits to save after open(2) */
  129 #define FMASK           (FREAD|FWRITE|FAPPEND|FASYNC|FFSYNC|FNONBLOCK|FDSYNC|\
  130                          FRSYNC|FALTIO)
  131 /* bits settable by fcntl(F_SETFL, ...) */
  132 #define FCNTLFLAGS      (FAPPEND|FASYNC|FFSYNC|FNONBLOCK|FDSYNC|FRSYNC|FALTIO)
  133 #endif /* _KERNEL */
  134 
  135 /*
  136  * The O_* flags used to have only F* names, which were used in the kernel
  137  * and by fcntl.  We retain the F* names for the kernel f_flags field
  138  * and for backward compatibility for fcntl.
  139  */
  140 #if defined(_NETBSD_SOURCE)
  141 #define FAPPEND         O_APPEND        /* kernel/compat */
  142 #define FASYNC          O_ASYNC         /* kernel/compat */
  143 #define O_FSYNC         O_SYNC          /* compat */
  144 #define FNDELAY         O_NONBLOCK      /* compat */
  145 #define O_NDELAY        O_NONBLOCK      /* compat */
  146 #endif
  147 #if defined(_KERNEL)
  148 #define FNONBLOCK       O_NONBLOCK      /* kernel */
  149 #define FFSYNC          O_SYNC          /* kernel */
  150 #define FDSYNC          O_DSYNC         /* kernel */
  151 #define FRSYNC          O_RSYNC         /* kernel */
  152 #define FALTIO          O_ALT_IO        /* kernel */
  153 #endif
  154 
  155 /*
  156  * Constants used for fcntl(2)
  157  */
  158 
  159 /* command values */
  160 #define F_DUPFD         0               /* duplicate file descriptor */
  161 #define F_GETFD         1               /* get file descriptor flags */
  162 #define F_SETFD         2               /* set file descriptor flags */
  163 #define F_GETFL         3               /* get file status flags */
  164 #define F_SETFL         4               /* set file status flags */
  165 #if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 500 || \
  166     defined(_NETBSD_SOURCE)
  167 #define F_GETOWN        5               /* get SIGIO/SIGURG proc/pgrp */
  168 #define F_SETOWN        6               /* set SIGIO/SIGURG proc/pgrp */
  169 #endif
  170 #define F_GETLK         7               /* get record locking information */
  171 #define F_SETLK         8               /* set record locking information */
  172 #define F_SETLKW        9               /* F_SETLK; wait if blocked */
  173 #if defined(_NETBSD_SOURCE)
  174 #define F_CLOSEM        10              /* close all fds >= to the one given */
  175 #define F_MAXFD         11              /* return the max open fd */
  176 #endif
  177 
  178 /* file descriptor flags (F_GETFD, F_SETFD) */
  179 #define FD_CLOEXEC      1               /* close-on-exec flag */
  180 
  181 /* record locking flags (F_GETLK, F_SETLK, F_SETLKW) */
  182 #define F_RDLCK         1               /* shared or read lock */
  183 #define F_UNLCK         2               /* unlock */
  184 #define F_WRLCK         3               /* exclusive or write lock */
  185 #ifdef _KERNEL
  186 #define F_WAIT          0x010           /* Wait until lock is granted */
  187 #define F_FLOCK         0x020           /* Use flock(2) semantics for lock */
  188 #define F_POSIX         0x040           /* Use POSIX semantics for lock */
  189 #endif
  190 
  191 /* Constants for fcntl's passed to the underlying fs - like ioctl's. */
  192 #if defined(_NETBSD_SOURCE)
  193 #define F_PARAM_MASK    0xfff
  194 #define F_PARAM_LEN(x)  (((x) >> 16) & F_PARAM_MASK)
  195 #define F_PARAM_MAX     4095
  196 #define F_FSCTL         (int)0x80000000 /* This fcntl goes to the fs */
  197 #define F_FSVOID        (int)0x40000000 /* no parameters */
  198 #define F_FSOUT         (int)0x20000000 /* copy out parameter */
  199 #define F_FSIN          (int)0x10000000 /* copy in parameter */
  200 #define F_FSINOUT       (F_FSIN | F_FSOUT)
  201 #define F_FSDIRMASK     (int)0x70000000 /* mask for IN/OUT/VOID */
  202 #define F_FSPRIV        (int)0x00008000 /* command is fs-specific */
  203 
  204 /*
  205  * Define command macros for operations which, if implemented, must be
  206  * the same for all fs's.
  207  */
  208 #define _FCN(inout, num, len) \
  209                 (F_FSCTL | inout | ((len & F_PARAM_MASK) << 16) | (num))
  210 #define _FCNO(c)        _FCN(F_FSVOID,  (c), 0)
  211 #define _FCNR(c, t)     _FCN(F_FSIN,    (c), (int)sizeof(t))
  212 #define _FCNW(c, t)     _FCN(F_FSOUT,   (c), (int)sizeof(t))
  213 #define _FCNRW(c, t)    _FCN(F_FSINOUT, (c), (int)sizeof(t))
  214 
  215 /*
  216  * Define command macros for fs-specific commands.
  217  */
  218 #define _FCN_FSPRIV(inout, fs, num, len) \
  219         (F_FSCTL | F_FSPRIV | inout | ((len & F_PARAM_MASK) << 16) |    \
  220          (fs) << 8 | (num))
  221 #define _FCNO_FSPRIV(f, c)      _FCN_FSPRIV(F_FSVOID,  (f), (c), 0)
  222 #define _FCNR_FSPRIV(f, c, t)   _FCN_FSPRIV(F_FSIN,    (f), (c), (int)sizeof(t))
  223 #define _FCNW_FSPRIV(f, c, t)   _FCN_FSPRIV(F_FSOUT,   (f), (c), (int)sizeof(t))
  224 #define _FCNRW_FSPRIV(f, c, t)  _FCN_FSPRIV(F_FSINOUT, (f), (c), (int)sizeof(t))
  225 
  226 #endif /* _NETBSD_SOURCE */
  227 
  228 /*
  229  * Advisory file segment locking data type -
  230  * information passed to system by user
  231  */
  232 struct flock {
  233         off_t   l_start;        /* starting offset */
  234         off_t   l_len;          /* len = 0 means until end of file */
  235         pid_t   l_pid;          /* lock owner */
  236         short   l_type;         /* lock type: read/write, etc. */
  237         short   l_whence;       /* type of l_start */
  238 };
  239 
  240 
  241 #if defined(_NETBSD_SOURCE)
  242 /* lock operations for flock(2) */
  243 #define LOCK_SH         0x01            /* shared file lock */
  244 #define LOCK_EX         0x02            /* exclusive file lock */
  245 #define LOCK_NB         0x04            /* don't block when locking */
  246 #define LOCK_UN         0x08            /* unlock file */
  247 #endif
  248 
  249 /* Always ensure that these are consistent with <stdio.h> and <unistd.h>! */
  250 #ifndef SEEK_SET
  251 #define SEEK_SET        0       /* set file offset to offset */
  252 #endif
  253 #ifndef SEEK_CUR
  254 #define SEEK_CUR        1       /* set file offset to current plus offset */
  255 #endif
  256 #ifndef SEEK_END
  257 #define SEEK_END        2       /* set file offset to EOF plus offset */
  258 #endif
  259 
  260 #ifndef _KERNEL
  261 #include <sys/cdefs.h>
  262 
  263 __BEGIN_DECLS
  264 int     open(const char *, int, ...);
  265 int     creat(const char *, mode_t);
  266 int     fcntl(int, int, ...);
  267 #if defined(_NETBSD_SOURCE)
  268 int     flock(int, int);
  269 #endif /* _NETBSD_SOURCE */
  270 __END_DECLS
  271 #endif /* !_KERNEL */
  272 
  273 #endif /* !_SYS_FCNTL_H_ */

Cache object: d65ae2af67790dc75f9d38850fe1cbb0


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.