forked from wmkhoo/taintgrind
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tnt_libc.c
369 lines (327 loc) · 8.68 KB
/
tnt_libc.c
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#include "pub_tool_libcbase.h"
#include "secretgrind.h"
#include "tnt_include.h"
#include "tnt_libc.h"
#include "pub_tool_stacktrace.h"
#include "pub_tool_libcassert.h"
#include "pub_tool_libcfile.h"
#include "pub_tool_mallocfree.h"
int errno = 0;
/* -------------------------------------------- */
/* ----------- libc functions i want ---------- */
/* -------------------------------------------- */
static inline int
isupper(char c)
{
return (c >= 'A' && c <= 'Z');
}
static inline int
isalpha(char c)
{
return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
}
static inline int
isspace(char c)
{
return (c == ' ' || c == '\t' || c == '\n' || c == '\12');
}
static inline int
isdigit(char c)
{
return (c >= '0' && c <= '9');
}
/* -------------------------------------------- */
/* ----------------- strlcpy(l) ---------------- */
/* -------------------------------------------- */
SizeT libc_strlcpy(char *dst, const char *src, SizeT len)
{
SizeT srcLen = VG_(strlen)(src);
SizeT dstLen = 0;
dst[0] = '\0';
if (len) {
VG_(strncpy)(dst, src, len-1);
dst[VG_(strlen)(src)] = '\0';
}
dstLen = VG_(strlen)(dst);
return max(dstLen, srcLen);
}
/* -------------------------------------------- */
/* ----------------- strlcat(l) ---------------- */
/* -------------------------------------------- */
SizeT libc_strlcat(char *dst, const char *src, SizeT len)
{
SizeT srcLen = VG_(strlen)(src);
SizeT dstLen = 0;
if ( len ) {
VG_(strncat)(dst, src, len-1);
dst[VG_(strlen)(src)] = '\0';
}
dstLen = VG_(strlen)(dst);
tl_assert ( dstLen <= (SizeT)(-1) - srcLen );
return (dstLen + srcLen); /* count does not include NUL */
}
/* -------------------------------------------- */
/* ----------------- strtol(l) ---------------- */
/* -------------------------------------------- */
// Note: copied from https://opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/libkern/strtol.c
/*
* Convert a string to a long integer.
*
* Ignores `locale' stuff. Assumes that the upper and lower case
* alphabets and digits are each contiguous.
*/
long
libc_strtol(nptr, endptr, base)
const char *nptr;
char **endptr;
register int base;
{
register const char *s = nptr;
register unsigned long acc;
register int c;
register unsigned long cutoff;
register int neg = 0, any, cutlim;
errno = EOK;
/*
* Skip white space and pick up leading +/- sign if any.
* If base is 0, allow 0x for hex and 0 for octal, else
* assume decimal; if base is already 16, allow 0x.
*/
do {
c = *s++;
} while (isspace(c));
if (c == '-') {
neg = 1;
c = *s++;
} else if (c == '+')
c = *s++;
if ((base == 0 || base == 16) &&
c == '0' && (*s == 'x' || *s == 'X')) {
c = s[1];
s += 2;
base = 16;
} else if ((base == 0 || base == 2) &&
c == '0' && (*s == 'b' || *s == 'B')) {
c = s[1];
s += 2;
base = 2;
}
if (base == 0)
base = c == '0' ? 8 : 10;
/*
* Compute the cutoff value between legal numbers and illegal
* numbers. That is the largest legal value, divided by the
* base. An input number that is greater than this value, if
* followed by a legal input character, is too big. One that
* is equal to this value may be valid or not; the limit
* between valid and invalid numbers is then based on the last
* digit. For instance, if the range for longs is
* [-2147483648..2147483647] and the input base is 10,
* cutoff will be set to 214748364 and cutlim to either
* 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
* a value > 214748364, or equal but the next digit is > 7 (or 8),
* the number is too big, and we will return a range error.
*
* Set any if any `digits' consumed; make it negative to indicate
* overflow.
*/
cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
cutlim = cutoff % (unsigned long)base;
cutoff /= (unsigned long)base;
for (acc = 0, any = 0;; c = *s++) {
if (isdigit(c))
c -= '0';
else if (isalpha(c))
c -= isupper(c) ? 'A' - 10 : 'a' - 10;
else
break;
if (c >= base)
break;
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
any = -1;
else {
any = 1;
acc *= base;
acc += c;
}
}
if (any < 0) {
acc = neg ? LONG_MIN : LONG_MAX;
errno = ERANGE;
} else if (neg)
acc = -acc;
if (endptr != 0)
*endptr = (char *)(any ? s - 1 : nptr);
return (acc);
}
/*
* Convert a string to an unsigned long integer.
*
* Ignores `locale' stuff. Assumes that the upper and lower case
* alphabets and digits are each contiguous.
*/
unsigned long
libc_strtoul(nptr, endptr, base)
const char *nptr;
char **endptr;
register int base;
{
register const char *s = nptr;
register unsigned long acc;
register int c;
register unsigned long cutoff;
register int neg = 0, any, cutlim;
errno = EOK;
/*
* See strtol for comments as to the logic used.
*/
do {
c = *s++;
} while (isspace(c));
if (c == '-') {
neg = 1;
c = *s++;
} else if (c == '+')
c = *s++;
if ((base == 0 || base == 16) &&
c == '0' && (*s == 'x' || *s == 'X')) {
c = s[1];
s += 2;
base = 16;
} else if ((base == 0 || base == 2) &&
c == '0' && (*s == 'b' || *s == 'B')) {
c = s[1];
s += 2;
base = 2;
}
if (base == 0)
base = c == '0' ? 8 : 10;
cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
for (acc = 0, any = 0;; c = *s++) {
if (isdigit(c))
c -= '0';
else if (isalpha(c))
c -= isupper(c) ? 'A' - 10 : 'a' - 10;
else
break;
if (c >= base)
break;
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
any = -1;
else {
any = 1;
acc *= base;
acc += c;
}
}
if (any < 0) {
acc = ULONG_MAX;
errno = ERANGE;
} else if (neg)
acc = -acc;
if (endptr != 0)
*endptr = (char *)(any ? s - 1 : nptr);
return (acc);
}
/* -------------------------------------------- */
/* ----------------- basename(path) ----------- */
/* -------------------------------------------- */
char * libc_basename (path)
char * path;
{
/*char *s = VG_(strrchr) (path, '/');
return (s == NULL) ? path : ++s;*/
return (char*)VG_(basename)(path);
}
/* -------------------------------------------- */
/* ----------------- strncat ----------------- */
/* -------------------------------------------- */
// copy from https://opensource.apple.com/source/Libc/Libc-262/i386/gen/strncat.c
/*
* Concatenate src on the end of dst. At most strlen(dst)+n+1 bytes
* are written at dst (at most n+1 bytes being appended). Return dst.
*/
/*char *
libc_strncat(dst, src, n)
char *dst;
const char *src;
register SizeT n;
{
if (n != 0) {
register char *d = dst;
register const char *s = src;
while (*d != 0)
d++;
do {
if ((*d = *s++) == 0)
break;
d++;
} while (--n != 0);
*d = 0;
}
return (dst);
}*/
/* -------------------------------------------- */
/* ----------------- realpath ----------------- */
/* -------------------------------------------- */
/*
#if defined VGO_linux
# include "vki/vki-linux.h"
# define VKI_ELOOP (40) // not defined in vki-linux.h
#else
# error OS unknown
#endif
#if defined VGA_amd64
# include "vki/vki-amd64-linux.h"
#else
# error arch unknown
#endif
// defined in tnt_syswrap.c
extern void resolve_filename(Int fd, HChar *path, SizeT max);
// defined in coregrind/m_syscall
extern SysRes VG_(do_syscall) ( UWord sysno, UWord a1, UWord a2, UWord a3,
UWord a4, UWord a5, UWord a6,
UWord a7, UWord a8 );
char *libc_realpath(const char * filename, char * resolved)
{
Int fd;
Int r;
SysRes statres;
struct vg_stat st1, st2;
char buf[PATH_MAX];
char tmp[PATH_MAX];
if (!filename) {
errno = VKI_EINVAL;
return 0;
}
fd = VG_(fd_open)(filename, VKI_O_RDONLY|VKI_O_NONBLOCK, 0666);
if (fd < 0) return 0;
resolve_filename(fd, buf, sizeof(buf));
LOG("buf:%s\n", buf);
// I don't call as below because I want to test for the error
//r = VG_(readlink)(buf, tmp, sizeof tmp - 1);
SysRes res = VG_(do_syscall)(__NR_readlink, (UWord)buf, (UWord)tmp, sizeof tmp - 1, 0,0,0,0,0);
if ( sr_isError(res) && sr_Err(res) == VKI_EINVAL ) {
// it's not a symbolic link, just copy the original
return resolved ? VG_(strcpy)(resolved, filename) : VG_(strdup)("realpath-dup", filename);
}
r = sr_isError(res) ? -1 : sr_Res(res);
LOG("readlink:%u\n", sr_Err(res));
if (r < 0) goto err;
tmp[r] = 0;
LOG("readlink:%s\n", tmp);
VG_(fstat) (fd, &st1);
statres = VG_(stat)( tmp, &st2 );
LOG("stat error:%d\n", sr_isError(statres));
if ( sr_isError(statres) || st1.dev != st2.dev || st1.ino != st2.ino) {
if (!sr_Err(statres)) errno = VKI_ELOOP;
goto err;
}
VG_(close)(fd);
return resolved ? VG_(strcpy)(resolved, tmp) : VG_(strdup)("realpath-dup",tmp);
err:
VG_(close)(fd);
return 0;
}
* */