1 | /* |
---|
2 | (C) Copyright IBM Corp. 2005, 2006 |
---|
3 | |
---|
4 | All rights reserved. |
---|
5 | |
---|
6 | Redistribution and use in source and binary forms, with or without |
---|
7 | modification, are permitted provided that the following conditions are met: |
---|
8 | |
---|
9 | * Redistributions of source code must retain the above copyright notice, |
---|
10 | this list of conditions and the following disclaimer. |
---|
11 | * Redistributions in binary form must reproduce the above copyright |
---|
12 | notice, this list of conditions and the following disclaimer in the |
---|
13 | documentation and/or other materials provided with the distribution. |
---|
14 | * Neither the name of IBM nor the names of its contributors may be |
---|
15 | used to endorse or promote products derived from this software without |
---|
16 | specific prior written permission. |
---|
17 | |
---|
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
19 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
20 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
21 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
---|
22 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
23 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
24 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
25 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
26 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
27 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
---|
28 | POSSIBILITY OF SUCH DAMAGE. |
---|
29 | |
---|
30 | Author: Andreas Neukoetter (ti95neuk@de.ibm.com) |
---|
31 | */ |
---|
32 | |
---|
33 | #include <stdarg.h> |
---|
34 | #include <fcntl.h> |
---|
35 | #include "jsre.h" |
---|
36 | |
---|
37 | #define JSRE_O_RDONLY 0 |
---|
38 | #define JSRE_O_WRONLY 1 |
---|
39 | #define JSRE_O_RDWR 2 |
---|
40 | |
---|
41 | #define JSRE_O_CREAT 64 |
---|
42 | #define JSRE_O_EXCL 128 |
---|
43 | #define JSRE_O_NOCTTY 256 |
---|
44 | #define JSRE_O_TRUNC 512 |
---|
45 | #define JSRE_O_APPEND 1024 |
---|
46 | #define JSRE_O_NDELAY 2048 |
---|
47 | #define JSRE_O_SYNC 4096 |
---|
48 | #define JSRE_O_ASYNC 8192 |
---|
49 | |
---|
50 | typedef struct |
---|
51 | { |
---|
52 | unsigned int pathname; |
---|
53 | unsigned int pad0[3]; |
---|
54 | unsigned int flags; |
---|
55 | unsigned int pad1[3]; |
---|
56 | unsigned int mode; |
---|
57 | unsigned int pad2[3]; |
---|
58 | } syscall_open_t; |
---|
59 | |
---|
60 | int |
---|
61 | open (const char *filename, int flags, ...) |
---|
62 | { |
---|
63 | syscall_open_t sys; |
---|
64 | va_list ap; |
---|
65 | |
---|
66 | sys.pathname = ( unsigned int )filename; |
---|
67 | |
---|
68 | sys.flags = 0; |
---|
69 | |
---|
70 | sys.flags |= ( ( flags & O_CREAT ) ? JSRE_O_CREAT : 0 ); |
---|
71 | sys.flags |= ( ( flags & O_EXCL ) ? JSRE_O_EXCL : 0 ); |
---|
72 | sys.flags |= ( ( flags & O_NOCTTY ) ? JSRE_O_NOCTTY : 0 ); |
---|
73 | sys.flags |= ( ( flags & O_TRUNC ) ? JSRE_O_TRUNC : 0 ); |
---|
74 | sys.flags |= ( ( flags & O_APPEND ) ? JSRE_O_APPEND : 0 ); |
---|
75 | // sys.flags |= ( ( flags & O_NOBLOCK ) ? JSRE_O_NOBLOCK : 0 ); |
---|
76 | // sys.flags |= ( ( flags & O_NDELAY ) ? JSRE_O_NDELAY : 0 ); |
---|
77 | sys.flags |= ( ( flags & O_SYNC ) ? JSRE_O_SYNC : 0 ); |
---|
78 | // sys.flags |= ( ( flags & O_NOFOLLOW ) ? JSRE_O_NOFOLLOW : 0 ); |
---|
79 | // sys.flags |= ( ( flags & O_DIRECTORY ) ? JSRE_O_DIRECTORY : 0 ); |
---|
80 | // sys.flags |= ( ( flags & O_DIRECT ) ? JSRE_O_DIRECT : 0 ); |
---|
81 | // sys.flags |= ( ( flags & O_ASYNC ) ? JSRE_O_ASYNC : 0 ); |
---|
82 | // sys.flags |= ( ( flags & O_LARGEFILE ) ? JSRE_O_LARGEFILE : 0 ); |
---|
83 | |
---|
84 | |
---|
85 | sys.flags |= ( ( flags & O_RDONLY ) ? JSRE_O_RDONLY : 0 ); |
---|
86 | sys.flags |= ( ( flags & O_WRONLY ) ? JSRE_O_WRONLY : 0 ); |
---|
87 | sys.flags |= ( ( flags & O_RDWR ) ? JSRE_O_RDWR : 0 ); |
---|
88 | |
---|
89 | /* FIXME: we have to check/map all flags */ |
---|
90 | |
---|
91 | va_start (ap, flags); |
---|
92 | sys.mode = va_arg (ap, int); |
---|
93 | va_end (ap); |
---|
94 | |
---|
95 | return __send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_OPEN, &sys); |
---|
96 | } |
---|