-
Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathfuzzer-bcmath.c
165 lines (132 loc) · 3.81 KB
/
fuzzer-bcmath.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
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Saki Takamachi <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "fuzzer.h"
#include "Zend/zend.h"
#include <main/php_config.h>
#include "main/php_main.h"
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include "fuzzer-sapi.h"
zend_long char_to_size_t(char *c) {
zend_long ret = 0;
if (*c >= '0' && *c <= '9') {
ret *= 10;
ret += *c - '0';
}
return ret;
}
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
/* num1,num2,scale */
const uint8_t *Comma1 = memchr(Data, ',', Size);
if (!Comma1) {
return 0;
}
size_t dividend_len = Comma1 - Data;
char *dividend_str = estrndup((char *) Data, dividend_len);
Data = Comma1 + 1;
Size -= dividend_len + 1;
const uint8_t *Comma2 = memchr(Data, ',', Size);
if (!Comma2) {
efree(dividend_str);
return 0;
}
size_t divisor_len = Comma2 - Data;
char *divisor_str = estrndup((char *) Data, divisor_len);
Data = Comma2 + 1;
Size -= divisor_len + 1;
char *scale_str = malloc(Size + 1);
memcpy(scale_str, Data, Size);
scale_str[Size] = '\0';
zend_long scale = char_to_size_t(scale_str);
free(scale_str);
if (fuzzer_request_startup() == FAILURE) {
return 0;
}
fuzzer_setup_dummy_frame();
zval result;
ZVAL_UNDEF(&result);
zval args[4];
ZVAL_COPY_VALUE(&args[0], &result);
ZVAL_STRINGL(&args[1], dividend_str, dividend_len);
ZVAL_STRINGL(&args[2], divisor_str, divisor_len);
ZVAL_LONG(&args[3], scale);
fuzzer_call_php_func_zval("bcdiv", 4, args);
zval_ptr_dtor(&result);
zval_ptr_dtor(&args[1]);
zval_ptr_dtor(&args[2]);
efree(dividend_str);
efree(divisor_str);
fuzzer_request_shutdown();
return 0;
}
#define BUF_SIZE 128
static inline bool rand_bool() {
return rand() & 1;
}
static inline size_t generate_random_num_fraction(char *buf, size_t len) {
int zeros = rand() % 10;
for (int i = 0; i < zeros; i++) {
buf[len] = '0';
len++;
}
len += snprintf(buf + len, BUF_SIZE - len, "%ld", random());
return len;
}
static inline size_t generate_random_num(char *buf, size_t len) {
if (rand_bool()) {
/* num < 1 */
buf[len] = '0';
buf[len + 1]= '.';
len += 2;
/* fraction */
len = generate_random_num_fraction(buf, len);
} else {
/* integer */
len += snprintf(buf + len, BUF_SIZE - len, "%ld", random());
if (rand_bool()) {
/* fraction */
buf[len] = '.';
len++;
len = generate_random_num_fraction(buf, len);
}
}
return len;
}
size_t LLVMFuzzerCustomMutator(uint8_t *Data, size_t Size, size_t MaxSize, unsigned int Seed) {
char buf[BUF_SIZE];
size_t len = 0;
/* num1 */
len = generate_random_num(buf, len);
buf[len] = ',';
len++;
/* num2 */
len = generate_random_num(buf, len);
buf[len] = ',';
len++;
/* scale */
len += snprintf(buf + len, BUF_SIZE - len, "%d", rand() % 10);
if (len > MaxSize) {
return 0;
}
memcpy(Data, buf, len);
return len;
}
int LLVMFuzzerInitialize(int *argc, char ***argv) {
fuzzer_init_php(NULL);
/* fuzzer_shutdown_php(); */
return 0;
}