plan9port/src/lib9/open.c

62 lines
1 KiB
C
Raw Normal View History

#define _GNU_SOURCE /* for Linux O_DIRECT */
#include <u.h>
#define NOPLAN9DEFINES
2004-06-11 14:38:56 +00:00
#include <sys/file.h>
#include <libc.h>
#ifndef O_DIRECT
#define O_DIRECT 0
#endif
int
2004-03-25 23:03:57 +00:00
p9open(char *name, int mode)
{
int cexec, rclose;
2004-06-11 18:57:32 +00:00
int fd, umode, lock, rdwr;
2005-01-07 07:19:35 +00:00
struct flock fl;
2004-06-11 18:57:32 +00:00
rdwr = mode&3;
umode = rdwr;
cexec = mode&OCEXEC;
rclose = mode&ORCLOSE;
2004-06-11 14:38:56 +00:00
lock = mode&OLOCK;
mode &= ~(3|OCEXEC|ORCLOSE|OLOCK);
if(mode&OTRUNC){
umode |= O_TRUNC;
mode ^= OTRUNC;
}
if(mode&ODIRECT){
umode |= O_DIRECT;
mode ^= ODIRECT;
}
if(mode&ONONBLOCK){
umode |= O_NONBLOCK;
mode ^= ONONBLOCK;
}
if(mode&OAPPEND){
umode |= O_APPEND;
mode ^= OAPPEND;
}
if(mode){
2004-05-14 19:45:23 +00:00
werrstr("mode 0x%x not supported", mode);
return -1;
}
fd = open(name, umode);
if(fd >= 0){
2004-06-11 14:38:56 +00:00
if(lock){
2005-01-07 07:19:35 +00:00
fl.l_type = (rdwr==OREAD) ? F_RDLCK : F_WRLCK;
fl.l_whence = SEEK_SET;
fl.l_start = 0;
fl.l_len = 0;
if(fcntl(fd, F_SETLK, &fl) < 0){
2004-06-11 14:38:56 +00:00
close(fd);
return -1;
}
}
if(cexec)
fcntl(fd, F_SETFL, FD_CLOEXEC);
if(rclose)
remove(name);
}
return fd;
}