2004-04-29 17:13:24 +00:00
|
|
|
#define _GNU_SOURCE /* for Linux O_DIRECT */
|
2003-12-11 17:50:28 +00:00
|
|
|
#include <u.h>
|
|
|
|
#define NOPLAN9DEFINES
|
2004-06-11 14:38:56 +00:00
|
|
|
#include <sys/file.h>
|
2003-12-11 17:50:28 +00:00
|
|
|
#include <libc.h>
|
2004-05-14 20:19:53 +00:00
|
|
|
#ifndef O_DIRECT
|
|
|
|
#define O_DIRECT 0
|
|
|
|
#endif
|
2003-12-11 17:50:28 +00:00
|
|
|
|
|
|
|
int
|
2004-03-25 23:03:57 +00:00
|
|
|
p9open(char *name, int mode)
|
2003-12-11 17:50:28 +00:00
|
|
|
{
|
|
|
|
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;
|
2003-12-11 17:50:28 +00:00
|
|
|
|
2004-06-11 18:57:32 +00:00
|
|
|
rdwr = mode&3;
|
|
|
|
umode = rdwr;
|
2003-12-11 17:50:28 +00:00
|
|
|
cexec = mode&OCEXEC;
|
|
|
|
rclose = mode&ORCLOSE;
|
2004-06-11 14:38:56 +00:00
|
|
|
lock = mode&OLOCK;
|
|
|
|
mode &= ~(3|OCEXEC|ORCLOSE|OLOCK);
|
2003-12-11 17:50:28 +00:00
|
|
|
if(mode&OTRUNC){
|
|
|
|
umode |= O_TRUNC;
|
|
|
|
mode ^= OTRUNC;
|
|
|
|
}
|
2004-04-29 17:13:24 +00:00
|
|
|
if(mode&ODIRECT){
|
|
|
|
umode |= O_DIRECT;
|
|
|
|
mode ^= ODIRECT;
|
|
|
|
}
|
2005-01-07 18:03:36 +00:00
|
|
|
if(mode&ONONBLOCK){
|
|
|
|
umode |= O_NONBLOCK;
|
|
|
|
mode ^= ONONBLOCK;
|
|
|
|
}
|
2005-02-11 16:58:23 +00:00
|
|
|
if(mode&OAPPEND){
|
|
|
|
umode |= O_APPEND;
|
|
|
|
mode ^= OAPPEND;
|
|
|
|
}
|
2003-12-11 17:50:28 +00:00
|
|
|
if(mode){
|
2004-05-14 19:45:23 +00:00
|
|
|
werrstr("mode 0x%x not supported", mode);
|
2003-12-11 17:50:28 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2003-12-11 17:50:28 +00:00
|
|
|
if(cexec)
|
|
|
|
fcntl(fd, F_SETFL, FD_CLOEXEC);
|
|
|
|
if(rclose)
|
|
|
|
remove(name);
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|