2011-04-27 23:42:16 +02:00
|
|
|
/** @file
|
|
|
|
This file includes the definitions for open and fcntl described by POSIX
|
|
|
|
for <fcntl.h>; it also includes related kernel definitions.
|
|
|
|
|
2011-08-05 01:35:57 +02:00
|
|
|
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
2011-04-27 23:42:16 +02:00
|
|
|
This program and the accompanying materials are licensed and made
|
|
|
|
available under the terms and conditions of the BSD License which
|
|
|
|
accompanies this distribution. The full text of the license may be found
|
2011-08-05 01:35:57 +02:00
|
|
|
at http://opensource.org/licenses/bsd-license.
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
Copyright (c) 1983, 1990, 1993
|
|
|
|
The Regents of the University of California. All rights reserved.
|
|
|
|
(c) UNIX System Laboratories, Inc.
|
|
|
|
All or some portions of this file are derived from material licensed
|
|
|
|
to the University of California by American Telephone and Telegraph
|
|
|
|
Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
the permission of UNIX System Laboratories, Inc.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. Neither the name of the University nor the names of its contributors
|
|
|
|
may be used to endorse or promote products derived from this software
|
|
|
|
without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
SUCH DAMAGE.
|
|
|
|
|
|
|
|
fcntl.h 8.3 (Berkeley) 1/21/94
|
|
|
|
NetBSD: fcntl.h,v 1.34 2006/10/05 14:48:33 chs Exp
|
|
|
|
*/
|
|
|
|
#ifndef _SYS_FCNTL_H_
|
|
|
|
#define _SYS_FCNTL_H_
|
|
|
|
|
|
|
|
#include <sys/featuretest.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
StdLib: Add isDirSep character classification macro and function. Implement several Posix functions and clean up EfiSysCall.h. Align file mode handling with UEFI file protocol flags.
Include/ctype.h: Function declaration and Macro definition of isDirSep
Include/unistd.h: Declarations added from EfiSysCall.h
Include/utime.h: New file. For the Posix utime() function.
Include/sys/_ctype.h: Update character class bit maps.
Include/sys/EfiSysCall.h: Move declarations to unistd.h
Include/sys/fcntl.h: Improve comments. Add UEFI-specific macros.
Include/sys/filio.h: Remove declarations for unsupported file ioctls.
Include/sys/stat.h: Fix flags. Add macros and declarations.
Include/sys/time.h: Add declarations for new functions Tm2Efi() and Time2Efi().
Include/sys/types.h: Use EFI-specific instead of BSD-specific definitions for typedefs.
Include/sys/unistd.h: Delete inappropriate content. Guard macro definitions.
LibC/Locale/setlocale.c
LibC/Stdio/{fdopen.c, findfp.c, fopen.c, freopen.c, gettemp.c, makebuf.c, mktemp.c,
remove.c, stdio.c, tempnam.c, tmpfile.c, tmpnam.c}
LibC/Time/{itimer.c, ZoneProc.c}
LibC/Uefi/SysCalls.c
LibC/Uefi/Devices/Console/daConsole.c
LibC/Uefi/Devices/UefiShell/daShell.c
PosixLib/Gen/readdir.c
Include unistd.h instead of EfiSysCall.h
LibC/Ctype/CClass.c: Character classification function implementation for isDirSep.
LibC/Ctype/iCtype.c: Update character classification and case conversion tables.
LibC/Time/TimeEfi.c: Improve comments. Implement new functions Tm2Efi() and Time2Efi().
LibC/Uefi/StubFunctions.c: Add missing include. Cosmetic changes to declarations.
LibC/Uefi/SysCalls.c: Add support function for utime().
LibC/Uefi/Uefi.inf: Add LibGen library class dependency.
LibC/Uefi/Xform.c: Enhance Omode2EFI().
LibC/Uefi/Devices/UefiShell/daShell.c: Enhance da_ShellMkdir. Implement da_ShellIoctl to set file times.
PosixLib/Gen/access.c: New file. Implement the access() function.
PosixLib/Gen/dirname.c: Enhance to use isDirSep and differentiate between the device, path, and filename components of UEFI Shell-style paths.
PosixLib/Gen/utime.c: New file. Implement the utime() function.
PosixLib/Gen/LibGen.inf: Change MODULE_TYPE. Add new files.
Signed-off-by: darylm503
Reviewed-by: geekboy15a
Reviewed-by: jljusten
Reviewed-by: Rahul Khana
Reviewed-by: leegrosenbaum
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12800 6f19259b-4bc3-4df7-8a09-765794883524
2011-11-30 01:52:45 +01:00
|
|
|
/** @{
|
|
|
|
File status flags used by open(2), fcntl(2).
|
2011-08-05 01:35:57 +02:00
|
|
|
They are also used (indirectly) in the kernel file structure f_flags,
|
|
|
|
which is a superset of the open/fcntl flags.
|
|
|
|
Open/fcntl flags begin with O_; kernel-internal flags begin with F.
|
|
|
|
**/
|
2011-04-27 23:42:16 +02:00
|
|
|
/* open-only flags */
|
2011-08-05 01:35:57 +02:00
|
|
|
#define O_RDONLY 0x00000000 ///< open for reading only
|
|
|
|
#define O_WRONLY 0x00000001 ///< open for writing only
|
|
|
|
#define O_RDWR 0x00000002 ///< open for reading and writing
|
|
|
|
#define O_ACCMODE 0x00000003 ///< mask for above modes
|
|
|
|
|
|
|
|
#define O_NONBLOCK 0x00000004 ///< no delay
|
|
|
|
#define O_APPEND 0x00000008 ///< set append mode
|
|
|
|
#define O_CREAT 0x00000200 ///< create if nonexistent
|
|
|
|
#define O_TRUNC 0x00000400 ///< truncate to zero length
|
|
|
|
#define O_EXCL 0x00000800 ///< error if already exists
|
StdLib: Add isDirSep character classification macro and function. Implement several Posix functions and clean up EfiSysCall.h. Align file mode handling with UEFI file protocol flags.
Include/ctype.h: Function declaration and Macro definition of isDirSep
Include/unistd.h: Declarations added from EfiSysCall.h
Include/utime.h: New file. For the Posix utime() function.
Include/sys/_ctype.h: Update character class bit maps.
Include/sys/EfiSysCall.h: Move declarations to unistd.h
Include/sys/fcntl.h: Improve comments. Add UEFI-specific macros.
Include/sys/filio.h: Remove declarations for unsupported file ioctls.
Include/sys/stat.h: Fix flags. Add macros and declarations.
Include/sys/time.h: Add declarations for new functions Tm2Efi() and Time2Efi().
Include/sys/types.h: Use EFI-specific instead of BSD-specific definitions for typedefs.
Include/sys/unistd.h: Delete inappropriate content. Guard macro definitions.
LibC/Locale/setlocale.c
LibC/Stdio/{fdopen.c, findfp.c, fopen.c, freopen.c, gettemp.c, makebuf.c, mktemp.c,
remove.c, stdio.c, tempnam.c, tmpfile.c, tmpnam.c}
LibC/Time/{itimer.c, ZoneProc.c}
LibC/Uefi/SysCalls.c
LibC/Uefi/Devices/Console/daConsole.c
LibC/Uefi/Devices/UefiShell/daShell.c
PosixLib/Gen/readdir.c
Include unistd.h instead of EfiSysCall.h
LibC/Ctype/CClass.c: Character classification function implementation for isDirSep.
LibC/Ctype/iCtype.c: Update character classification and case conversion tables.
LibC/Time/TimeEfi.c: Improve comments. Implement new functions Tm2Efi() and Time2Efi().
LibC/Uefi/StubFunctions.c: Add missing include. Cosmetic changes to declarations.
LibC/Uefi/SysCalls.c: Add support function for utime().
LibC/Uefi/Uefi.inf: Add LibGen library class dependency.
LibC/Uefi/Xform.c: Enhance Omode2EFI().
LibC/Uefi/Devices/UefiShell/daShell.c: Enhance da_ShellMkdir. Implement da_ShellIoctl to set file times.
PosixLib/Gen/access.c: New file. Implement the access() function.
PosixLib/Gen/dirname.c: Enhance to use isDirSep and differentiate between the device, path, and filename components of UEFI Shell-style paths.
PosixLib/Gen/utime.c: New file. Implement the utime() function.
PosixLib/Gen/LibGen.inf: Change MODULE_TYPE. Add new files.
Signed-off-by: darylm503
Reviewed-by: geekboy15a
Reviewed-by: jljusten
Reviewed-by: Rahul Khana
Reviewed-by: leegrosenbaum
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12800 6f19259b-4bc3-4df7-8a09-765794883524
2011-11-30 01:52:45 +01:00
|
|
|
|
|
|
|
/* UEFI-specific open-only flags. */
|
|
|
|
#define O_HIDDEN 0x00010000 ///< Hidden file attribute
|
|
|
|
#define O_SYSTEM 0x00020000 ///< System file attribute
|
|
|
|
#define O_ARCHIVE 0x00040000 ///< Archive file attribute
|
2011-08-05 01:35:57 +02:00
|
|
|
/// @}
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
//#define O_DIRECT 0x00080000 /* direct I/O hint */
|
|
|
|
|
2011-08-05 01:35:57 +02:00
|
|
|
#define O_SETMASK 0x0000000F ///< Flags modifiable by F_SETFD (fcntl)
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants used for fcntl(2)
|
|
|
|
*/
|
|
|
|
|
StdLib: Add isDirSep character classification macro and function. Implement several Posix functions and clean up EfiSysCall.h. Align file mode handling with UEFI file protocol flags.
Include/ctype.h: Function declaration and Macro definition of isDirSep
Include/unistd.h: Declarations added from EfiSysCall.h
Include/utime.h: New file. For the Posix utime() function.
Include/sys/_ctype.h: Update character class bit maps.
Include/sys/EfiSysCall.h: Move declarations to unistd.h
Include/sys/fcntl.h: Improve comments. Add UEFI-specific macros.
Include/sys/filio.h: Remove declarations for unsupported file ioctls.
Include/sys/stat.h: Fix flags. Add macros and declarations.
Include/sys/time.h: Add declarations for new functions Tm2Efi() and Time2Efi().
Include/sys/types.h: Use EFI-specific instead of BSD-specific definitions for typedefs.
Include/sys/unistd.h: Delete inappropriate content. Guard macro definitions.
LibC/Locale/setlocale.c
LibC/Stdio/{fdopen.c, findfp.c, fopen.c, freopen.c, gettemp.c, makebuf.c, mktemp.c,
remove.c, stdio.c, tempnam.c, tmpfile.c, tmpnam.c}
LibC/Time/{itimer.c, ZoneProc.c}
LibC/Uefi/SysCalls.c
LibC/Uefi/Devices/Console/daConsole.c
LibC/Uefi/Devices/UefiShell/daShell.c
PosixLib/Gen/readdir.c
Include unistd.h instead of EfiSysCall.h
LibC/Ctype/CClass.c: Character classification function implementation for isDirSep.
LibC/Ctype/iCtype.c: Update character classification and case conversion tables.
LibC/Time/TimeEfi.c: Improve comments. Implement new functions Tm2Efi() and Time2Efi().
LibC/Uefi/StubFunctions.c: Add missing include. Cosmetic changes to declarations.
LibC/Uefi/SysCalls.c: Add support function for utime().
LibC/Uefi/Uefi.inf: Add LibGen library class dependency.
LibC/Uefi/Xform.c: Enhance Omode2EFI().
LibC/Uefi/Devices/UefiShell/daShell.c: Enhance da_ShellMkdir. Implement da_ShellIoctl to set file times.
PosixLib/Gen/access.c: New file. Implement the access() function.
PosixLib/Gen/dirname.c: Enhance to use isDirSep and differentiate between the device, path, and filename components of UEFI Shell-style paths.
PosixLib/Gen/utime.c: New file. Implement the utime() function.
PosixLib/Gen/LibGen.inf: Change MODULE_TYPE. Add new files.
Signed-off-by: darylm503
Reviewed-by: geekboy15a
Reviewed-by: jljusten
Reviewed-by: Rahul Khana
Reviewed-by: leegrosenbaum
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12800 6f19259b-4bc3-4df7-8a09-765794883524
2011-11-30 01:52:45 +01:00
|
|
|
/** @{ command values used for fcntl(2). **/
|
2011-08-05 01:35:57 +02:00
|
|
|
#define F_DUPFD 0 ///< duplicate file descriptor
|
|
|
|
#define F_GETFD 1 ///< get file descriptor flags
|
|
|
|
#define F_SETFD 2 ///< set file descriptor flags
|
|
|
|
#define F_GETFL 3 ///< get file status flags
|
|
|
|
#define F_SETFL 4 ///< set file status flags
|
|
|
|
#define F_GETOWN 5 ///< get SIGIO/SIGURG proc/pgrp
|
|
|
|
#define F_SETOWN 6 ///< set SIGIO/SIGURG proc/pgrp
|
|
|
|
#define F_GETLK 7 ///< get record locking information
|
|
|
|
#define F_SETLK 8 ///< set record locking information
|
|
|
|
#define F_SETLKW 9 ///< F_SETLK; wait if blocked
|
|
|
|
#define F_CLOSEM 10 ///< close all fds >= to the one given
|
|
|
|
#define F_MAXFD 11 ///< return the max open fd
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
/** file descriptor flags (F_GETFD, F_SETFD). **/
|
|
|
|
#define FD_CLOEXEC 1 ///< close-on-exec flag
|
|
|
|
|
StdLib: Add isDirSep character classification macro and function. Implement several Posix functions and clean up EfiSysCall.h. Align file mode handling with UEFI file protocol flags.
Include/ctype.h: Function declaration and Macro definition of isDirSep
Include/unistd.h: Declarations added from EfiSysCall.h
Include/utime.h: New file. For the Posix utime() function.
Include/sys/_ctype.h: Update character class bit maps.
Include/sys/EfiSysCall.h: Move declarations to unistd.h
Include/sys/fcntl.h: Improve comments. Add UEFI-specific macros.
Include/sys/filio.h: Remove declarations for unsupported file ioctls.
Include/sys/stat.h: Fix flags. Add macros and declarations.
Include/sys/time.h: Add declarations for new functions Tm2Efi() and Time2Efi().
Include/sys/types.h: Use EFI-specific instead of BSD-specific definitions for typedefs.
Include/sys/unistd.h: Delete inappropriate content. Guard macro definitions.
LibC/Locale/setlocale.c
LibC/Stdio/{fdopen.c, findfp.c, fopen.c, freopen.c, gettemp.c, makebuf.c, mktemp.c,
remove.c, stdio.c, tempnam.c, tmpfile.c, tmpnam.c}
LibC/Time/{itimer.c, ZoneProc.c}
LibC/Uefi/SysCalls.c
LibC/Uefi/Devices/Console/daConsole.c
LibC/Uefi/Devices/UefiShell/daShell.c
PosixLib/Gen/readdir.c
Include unistd.h instead of EfiSysCall.h
LibC/Ctype/CClass.c: Character classification function implementation for isDirSep.
LibC/Ctype/iCtype.c: Update character classification and case conversion tables.
LibC/Time/TimeEfi.c: Improve comments. Implement new functions Tm2Efi() and Time2Efi().
LibC/Uefi/StubFunctions.c: Add missing include. Cosmetic changes to declarations.
LibC/Uefi/SysCalls.c: Add support function for utime().
LibC/Uefi/Uefi.inf: Add LibGen library class dependency.
LibC/Uefi/Xform.c: Enhance Omode2EFI().
LibC/Uefi/Devices/UefiShell/daShell.c: Enhance da_ShellMkdir. Implement da_ShellIoctl to set file times.
PosixLib/Gen/access.c: New file. Implement the access() function.
PosixLib/Gen/dirname.c: Enhance to use isDirSep and differentiate between the device, path, and filename components of UEFI Shell-style paths.
PosixLib/Gen/utime.c: New file. Implement the utime() function.
PosixLib/Gen/LibGen.inf: Change MODULE_TYPE. Add new files.
Signed-off-by: darylm503
Reviewed-by: geekboy15a
Reviewed-by: jljusten
Reviewed-by: Rahul Khana
Reviewed-by: leegrosenbaum
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12800 6f19259b-4bc3-4df7-8a09-765794883524
2011-11-30 01:52:45 +01:00
|
|
|
/** @{ record locking flags (F_GETLK, F_SETLK, F_SETLKW). **/
|
2011-08-05 01:35:57 +02:00
|
|
|
#define F_RDLCK 1 ///< shared or read lock
|
|
|
|
#define F_UNLCK 2 ///< unlock
|
|
|
|
#define F_WRLCK 3 ///< exclusive or write lock
|
|
|
|
/// @}
|
|
|
|
|
StdLib: Add isDirSep character classification macro and function. Implement several Posix functions and clean up EfiSysCall.h. Align file mode handling with UEFI file protocol flags.
Include/ctype.h: Function declaration and Macro definition of isDirSep
Include/unistd.h: Declarations added from EfiSysCall.h
Include/utime.h: New file. For the Posix utime() function.
Include/sys/_ctype.h: Update character class bit maps.
Include/sys/EfiSysCall.h: Move declarations to unistd.h
Include/sys/fcntl.h: Improve comments. Add UEFI-specific macros.
Include/sys/filio.h: Remove declarations for unsupported file ioctls.
Include/sys/stat.h: Fix flags. Add macros and declarations.
Include/sys/time.h: Add declarations for new functions Tm2Efi() and Time2Efi().
Include/sys/types.h: Use EFI-specific instead of BSD-specific definitions for typedefs.
Include/sys/unistd.h: Delete inappropriate content. Guard macro definitions.
LibC/Locale/setlocale.c
LibC/Stdio/{fdopen.c, findfp.c, fopen.c, freopen.c, gettemp.c, makebuf.c, mktemp.c,
remove.c, stdio.c, tempnam.c, tmpfile.c, tmpnam.c}
LibC/Time/{itimer.c, ZoneProc.c}
LibC/Uefi/SysCalls.c
LibC/Uefi/Devices/Console/daConsole.c
LibC/Uefi/Devices/UefiShell/daShell.c
PosixLib/Gen/readdir.c
Include unistd.h instead of EfiSysCall.h
LibC/Ctype/CClass.c: Character classification function implementation for isDirSep.
LibC/Ctype/iCtype.c: Update character classification and case conversion tables.
LibC/Time/TimeEfi.c: Improve comments. Implement new functions Tm2Efi() and Time2Efi().
LibC/Uefi/StubFunctions.c: Add missing include. Cosmetic changes to declarations.
LibC/Uefi/SysCalls.c: Add support function for utime().
LibC/Uefi/Uefi.inf: Add LibGen library class dependency.
LibC/Uefi/Xform.c: Enhance Omode2EFI().
LibC/Uefi/Devices/UefiShell/daShell.c: Enhance da_ShellMkdir. Implement da_ShellIoctl to set file times.
PosixLib/Gen/access.c: New file. Implement the access() function.
PosixLib/Gen/dirname.c: Enhance to use isDirSep and differentiate between the device, path, and filename components of UEFI Shell-style paths.
PosixLib/Gen/utime.c: New file. Implement the utime() function.
PosixLib/Gen/LibGen.inf: Change MODULE_TYPE. Add new files.
Signed-off-by: darylm503
Reviewed-by: geekboy15a
Reviewed-by: jljusten
Reviewed-by: Rahul Khana
Reviewed-by: leegrosenbaum
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12800 6f19259b-4bc3-4df7-8a09-765794883524
2011-11-30 01:52:45 +01:00
|
|
|
/** @{ Constants for fcntl's passed to the underlying fs - like ioctl's. **/
|
2011-04-27 23:42:16 +02:00
|
|
|
#define F_PARAM_MASK 0xfff
|
|
|
|
#define F_PARAM_LEN(x) (((x) >> 16) & F_PARAM_MASK)
|
|
|
|
#define F_PARAM_MAX 4095
|
2011-08-05 01:35:57 +02:00
|
|
|
#define F_FSCTL (int)0x80000000 ///< This fcntl goes to the fs
|
|
|
|
#define F_FSVOID (int)0x40000000 ///< no parameters
|
|
|
|
#define F_FSOUT (int)0x20000000 ///< copy out parameter
|
|
|
|
#define F_FSIN (int)0x10000000 ///< copy in parameter
|
2011-04-27 23:42:16 +02:00
|
|
|
#define F_FSINOUT (F_FSIN | F_FSOUT)
|
2011-08-05 01:35:57 +02:00
|
|
|
#define F_FSDIRMASK (int)0x70000000 ///< mask for IN/OUT/VOID
|
|
|
|
#define F_FSPRIV (int)0x00008000 ///< command is fs-specific
|
|
|
|
/// @}
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
/* Always ensure that these are consistent with <stdio.h> and <unistd.h>! */
|
|
|
|
#ifndef SEEK_SET
|
|
|
|
#define SEEK_SET 0 /* set file offset to offset */
|
|
|
|
#endif
|
|
|
|
#ifndef SEEK_CUR
|
|
|
|
#define SEEK_CUR 1 /* set file offset to current plus offset */
|
|
|
|
#endif
|
|
|
|
#ifndef SEEK_END
|
|
|
|
#define SEEK_END 2 /* set file offset to EOF plus offset */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/EfiCdefs.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#ifndef __FCNTL_SYSCALLS_DECLARED
|
|
|
|
#define __FCNTL_SYSCALLS_DECLARED
|
2011-08-05 01:35:57 +02:00
|
|
|
|
|
|
|
/** The open() function establishes the connection between a file and a file
|
|
|
|
descriptor. It creates an open file description that refers to a file
|
|
|
|
and a file descriptor that refers to that open file description. The file
|
|
|
|
descriptor is used by other I/O functions to refer to that file.
|
|
|
|
|
|
|
|
The open() function returns a file descriptor for the named file that is
|
|
|
|
the lowest file descriptor not currently open for that process. The open
|
|
|
|
file description is new, and therefore the file descriptor shall not
|
|
|
|
share it with any other process in the system.
|
|
|
|
|
|
|
|
The file offset used to mark the current position within the file is set
|
|
|
|
to the beginning of the file.
|
|
|
|
|
|
|
|
The file status flags and file access modes of the open file description
|
|
|
|
are set according to the value of oflags.
|
|
|
|
|
|
|
|
Values for oflags are constructed by a bitwise-inclusive OR of flags from
|
|
|
|
the following list, defined in <fcntl.h>. Applications shall specify
|
|
|
|
exactly one of { O_RDONLY, O_RDWR, O_WRONLY } in the value of oflags.
|
|
|
|
Any combination of { O_NONBLOCK, O_APPEND, O_CREAT, O_TRUNC, O_EXCL } may
|
|
|
|
also be specified in oflags.
|
|
|
|
|
|
|
|
Values for mode specify the access permissions for newly created files.
|
|
|
|
|
|
|
|
@param[in] Path The path argument points to a pathname naming the
|
|
|
|
object to be opened.
|
|
|
|
@param[in] oflags File status flags and file access modes of the
|
|
|
|
open file description.
|
|
|
|
@param[in] mode File access permission bits as defined in
|
|
|
|
<sys/stat.h>.
|
|
|
|
|
|
|
|
@return Upon successful completion, open() opens the file and returns
|
|
|
|
a non-negative integer representing the lowest numbered
|
|
|
|
unused file descriptor. Otherwise, open returns -1 and sets
|
|
|
|
errno to indicate the error. If a negative value is
|
|
|
|
returned, no files are created or modified.
|
|
|
|
|
|
|
|
@retval EMFILE No file descriptors available -- Max number already open.
|
|
|
|
@retval EINVAL Bad value specified for oflags or mode.
|
|
|
|
@retval ENOMEM Failure allocating memory for internal buffers.
|
|
|
|
@retval EEXIST File exists and open attempted with (O_EXCL | O_CREAT) set.
|
|
|
|
@retval EIO UEFI failure. Check value in EFIerrno.
|
|
|
|
**/
|
|
|
|
int open(const char *Path, int oflags, int mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
**/
|
2011-04-27 23:42:16 +02:00
|
|
|
int creat(const char *, mode_t);
|
2011-08-05 01:35:57 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
**/
|
2011-04-27 23:42:16 +02:00
|
|
|
int fcntl(int, int, ...);
|
|
|
|
#endif // __FCNTL_SYSCALLS_DECLARED
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_SYS_FCNTL_H_ */
|