-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrapper.c
More file actions
216 lines (192 loc) · 3.86 KB
/
wrapper.c
File metadata and controls
216 lines (192 loc) · 3.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <fcntl.h>
#include "wrapper.h"
#include "debug.h"
/*
* all the functions are wrappers
* with errno as a return value
*/
int wrapper_lstat(const char *path, struct stat * stbuf)
{
int res = 0;
res = lstat(path, stbuf);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_lstat]: %s\n", strerror(errno));
}
return res;
}
int wrapper_open(const char *path, int flag, int *fd)
{
int res = 0;
res = open(path, flag);
*fd = res;
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_open]: %s\n", strerror(errno));
}
return res;
}
int wrapper_open_mode(const char *path, int flag, int mode, int *fd)
{
int res = 0;
res = open(path, flag, mode);
*fd = res;
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_open]: %s\n", strerror(errno));
}
return res;
}
int wrapper_pread(int fd, void *buf, size_t count, off_t offset)
{
int res = 0;
res = pread(fd, buf, count, offset);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_read]: %s\n", strerror(errno));
}
return res;
}
int wrapper_pwrite(int fd, void *buf, size_t count, off_t offset)
{
int res = 0;
res = pwrite(fd, buf, count, offset);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_pwrite]: %s\n", strerror(errno));
}
return res;
}
int wrapper_close(int fd)
{
int res = 0;
res = close(fd);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_close]: %s\n", strerror(errno));
}
return res;
}
int wrapper_access(const char *path, int mode)
{
int res = 0;
res = access(path, mode);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_access]: %s\n", strerror(errno));
}
return res;
}
int wrapper_mkdir(const char *path, mode_t mode)
{
int res = 0;
res = mkdir(path, mode);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_mkdir]: %s\n", strerror(errno));
}
return res;
}
int wrapper_rmdir(const char *path)
{
int res = 0;
res = rmdir(path);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_rmdir]: %s\n", strerror(errno));
}
return res;
}
int wrapper_mknod(const char *path, mode_t mode, dev_t dev)
{
int res = 0;
res = mknod(path, mode, dev);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_mknod]: %s\n", strerror(errno));
}
return res;
}
int wrapper_unlink(const char *path)
{
int res = 0;
res = unlink(path);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_unlink]: %s\n", strerror(errno));
}
return res;
}
int wrapper_truncate(const char *path, off_t length)
{
int res = 0;
res = truncate(path, length);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_truncate]: %s\n", strerror(errno));
}
return res;
}
int wrapper_chown(const char *path, uid_t owner, gid_t group)
{
int res = 0;
res = chown(path, owner, group);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_chown]: %s\n", strerror(errno));
}
return res;
}
int wrapper_chmod(const char *path, mode_t mode)
{
int res = 0;
res = chmod(path, mode);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_chmod]: %s\n", strerror(errno));
}
return res;
}
int wrapper_opendir(const char *path, DIR **dp)
{
int res = 0;
*dp = opendir(path);
if(!dp) {
res = -errno;
PDEBUG("[wrapper_opendir]: %s\n", strerror(errno));
}
return res;
}
int wrapper_readdir(DIR *dp, struct dirent **dir)
{
int res = 0;
/*
* set errno to 0,
* so we can tell when readdir() fails
*/
errno = 0;
*dir = readdir(dp);
if(errno) {
res = -errno;
PDEBUG("[wrapper_readdir]: %s\n", strerror(errno));
return res;
}
errno = 0;
return res;
}
int wrapper_closedir(DIR *dp)
{
int res = 0;
res = closedir(dp);
if(res < 0) {
res = -errno;
PDEBUG("[wrapper_closedir]: %s\n", strerror(errno));
}
return res;
}