2011-04-27 23:42:16 +02:00
|
|
|
/** @file
|
|
|
|
Function declarations for UEFI "system calls".
|
|
|
|
|
|
|
|
Concept derived from NetBSD's unistd.h file.
|
|
|
|
|
2011-06-28 04:34:10 +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 that accompanies this distribution.
|
|
|
|
The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
#ifndef _EFI_SYS_CALL_H
|
|
|
|
#define _EFI_SYS_CALL_H
|
|
|
|
|
|
|
|
#include <sys/EfiCdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2011-06-28 04:34:10 +02:00
|
|
|
struct stat; /* Structure declared in <sys/stat.h> */
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
#define STDIN_FILENO 0 /* standard input file descriptor */
|
|
|
|
#define STDOUT_FILENO 1 /* standard output file descriptor */
|
|
|
|
#define STDERR_FILENO 2 /* standard error file descriptor */
|
|
|
|
|
|
|
|
/* access function */
|
|
|
|
#define F_OK 0 /* test for existence of file */
|
|
|
|
#define X_OK 0x01 /* test for execute or search permission */
|
|
|
|
#define W_OK 0x02 /* test for write permission */
|
|
|
|
#define R_OK 0x04 /* test for read permission */
|
|
|
|
|
2011-06-28 04:34:10 +02:00
|
|
|
/* whence values for lseek(2)
|
|
|
|
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
|
|
|
|
|
|
|
|
// Parameters for the ValidateFD function.
|
|
|
|
#define VALID_OPEN 1
|
|
|
|
#define VALID_CLOSED 0
|
|
|
|
#define VALID_DONT_CARE -1
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
/* EFI versions of BSD system calls used in stdio */
|
2011-06-28 04:34:10 +02:00
|
|
|
int close (int fd);
|
|
|
|
ssize_t read (int fd, void *buf, size_t n);
|
|
|
|
ssize_t write (int fd, const void *buf, size_t n);
|
|
|
|
int unlink (const char *name);
|
|
|
|
int dup2 (int, int);
|
|
|
|
int rmdir (const char *);
|
|
|
|
int isatty (int);
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
/* These system calls are also declared in sys/fcntl.h */
|
|
|
|
#ifndef __FCNTL_SYSCALLS_DECLARED
|
|
|
|
#define __FCNTL_SYSCALLS_DECLARED
|
2011-06-28 04:34:10 +02:00
|
|
|
int open (const char *name, int oflags, int mode);
|
|
|
|
int creat (const char *, mode_t);
|
|
|
|
int fcntl (int, int, ...);
|
2011-04-27 23:42:16 +02:00
|
|
|
#endif // __FCNTL_SYSCALLS_DECLARED
|
|
|
|
|
|
|
|
/* These system calls are also declared in stat.h */
|
|
|
|
#ifndef __STAT_SYSCALLS_DECLARED
|
|
|
|
#define __STAT_SYSCALLS_DECLARED
|
2011-06-28 04:34:10 +02:00
|
|
|
int mkdir (const char *, mode_t);
|
|
|
|
int fstat (int, struct stat *);
|
|
|
|
int lstat (const char *, struct stat *);
|
|
|
|
int stat (const char *, void *);
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
int chmod (const char *, mode_t);
|
2011-04-27 23:42:16 +02:00
|
|
|
#endif // __STAT_SYSCALLS_DECLARED
|
|
|
|
|
|
|
|
// These are also declared in sys/types.h
|
|
|
|
#ifndef __OFF_T_SYSCALLS_DECLARED
|
|
|
|
#define __OFF_T_SYSCALLS_DECLARED
|
2011-06-28 04:34:10 +02:00
|
|
|
off_t lseek (int, off_t, int);
|
|
|
|
int truncate (const char *, off_t);
|
|
|
|
int ftruncate (int, off_t); // IEEE Std 1003.1b-93
|
2011-04-27 23:42:16 +02:00
|
|
|
#endif /* __OFF_T_SYSCALLS_DECLARED */
|
|
|
|
|
2011-06-28 04:34:10 +02:00
|
|
|
/* EFI-specific Functions. */
|
|
|
|
int DeleteOnClose(int fd); /* Mark an open file to be deleted when closed. */
|
|
|
|
|
|
|
|
/* Find and reserve a free File Descriptor.
|
|
|
|
|
|
|
|
Returns the first free File Descriptor greater than or equal to the,
|
|
|
|
already validated, fd specified by Minfd.
|
|
|
|
|
|
|
|
@return Returns -1 if there are no free FDs. Otherwise returns the
|
|
|
|
found fd.
|
|
|
|
*/
|
|
|
|
int FindFreeFD (int MinFd);
|
|
|
|
|
|
|
|
/* Validate that fd refers to a valid file descriptor.
|
|
|
|
IsOpen is interpreted as follows:
|
|
|
|
- Positive fd must be OPEN
|
|
|
|
- Zero fd must be CLOSED
|
|
|
|
- Negative fd may be OPEN or CLOSED
|
|
|
|
|
|
|
|
@retval TRUE fd is VALID
|
|
|
|
@retval FALSE fd is INVALID
|
|
|
|
*/
|
|
|
|
BOOLEAN ValidateFD (int fd, int IsOpen);
|
|
|
|
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
char *getcwd (char *, size_t);
|
|
|
|
int chdir (const char *);
|
|
|
|
|
2011-04-27 23:42:16 +02:00
|
|
|
/* These system calls don't YET have EFI implementations. */
|
2011-06-28 04:34:10 +02:00
|
|
|
int access (const char *path, int amode);
|
|
|
|
int reboot (int, char *);
|
2011-04-27 23:42:16 +02:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* _EFI_SYS_CALL_H */
|