File: libaflppdesock.c

package info (click to toggle)
aflplusplus 4.33c-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,740 kB
  • sloc: ansic: 111,574; cpp: 16,019; sh: 4,766; python: 4,546; makefile: 1,000; javascript: 521; java: 43; sql: 3; xml: 1
file content (352 lines) | stat: -rw-r--r-- 7,977 bytes parent folder | download
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
/* desocket library by Marc "vanHauser" Heuse <vh@thc.org>
 *
 * Use this library for fuzzing if preeny's desock and desock2 solutions
 * do not work for you - these would provide faster performance.
 *
 */

// default: file descriptor 0 for stdin
#define FUZZ_INPUT_FD 0

#include <dlfcn.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

static void *handle;
static bool  do_fork, do_close, debug, running;
static int   port = -1;
static int   listen_fd = -1;

struct myin_addr {

  unsigned int s_addr;  // IPv4 address in network byte order

};

struct mysockaddr {

  unsigned short int sin_family;   // Address family: AF_INET
  unsigned short int sin_port;     // Port number (network byte order)
  struct myin_addr   sin_addr;     // Internet address
  char               sin_zero[8];  // Padding (unused)

};

#define RTLD_LAZY 0x00001

unsigned short int htons(unsigned short int hostshort) {

  return (hostshort << 8) | (hostshort >> 8);

}

static void __get_handle() {

  if (!(handle = dlopen("libc.so", RTLD_NOW))) {

    if (!(handle = dlopen("libc.so.6", RTLD_NOW))) {

      if (!(handle = dlopen("libc-orig.so", RTLD_LAZY))) {

        if (!(handle = dlopen("cygwin1.dll", RTLD_LAZY))) {

          if (!(handle = dlopen("libc.so", RTLD_NOW))) {

            fprintf(stderr, "DESOCK: can not find libc!\n");
            exit(-1);

          }

        }

      }

    }

  }

  if (getenv("DESOCK_DEBUG")) { debug = true; }
  if (getenv("DESOCK_PORT")) { port = atoi(getenv("DESOCK_PORT")); }
  if (getenv("DESOCK_FORK")) { do_fork = true; }
  if (getenv("DESOCK_CLOSE_EXIT")) { do_close = true; }
  if (debug) fprintf(stderr, "DESOCK: initialized!\n");

}

int (*o_shutdown)(int socket, int how);
int shutdown(int socket, int how) {

  if (port != -1 && socket == FUZZ_INPUT_FD && running) {

    running = false;
    if (do_close) {

      if (debug) fprintf(stderr, "DESOCK: exiting\n");
      _exit(0);

    }

  }

  if (port == -1 && do_close) {

    if (debug) fprintf(stderr, "DESOCK: exiting\n");
    _exit(0);

  }

  if (!handle) { __get_handle(); }
  if (!o_shutdown) { o_shutdown = dlsym(handle, "shutdown"); }
  return o_shutdown(socket, how);

}

int (*o_close)(int socket);
int close(int socket) {

  if (port != -1 && socket == FUZZ_INPUT_FD && running) {

    running = false;
    if (do_close) {

      if (debug) fprintf(stderr, "DESOCK: exiting\n");
      _exit(0);

    }

  }

  if (listen_fd != -1 && socket == listen_fd) {

    if (debug) fprintf(stderr, "DESOCK: close bind\n");
    listen_fd = -1;

  }

  if (!handle) { __get_handle(); }
  if (!o_close) { o_close = dlsym(handle, "close"); }
  return o_close(socket);

}

int (*o_fork)(void);
int fork() {

  if (do_fork) {

    if (debug) fprintf(stderr, "DESOCK: fake fork\n");
    return 0;

  }

  if (!handle) { __get_handle(); }
  if (!o_fork) { o_fork = dlsym(handle, "fork"); }
  return o_fork();

}

int (*o_accept)(int sockfd, struct mysockaddr *addr,
                unsigned long int *addrlen);
int accept(int sockfd, struct mysockaddr *addr, unsigned long int *addrlen) {

  if (!handle) { __get_handle(); }
  if (!o_accept) { o_accept = dlsym(handle, "accept"); }
  if (!running && sockfd == listen_fd) {

    if (debug) fprintf(stderr, "DESOCK: intercepted accept on %d\n", sockfd);
    if (addr && addrlen) {

      // we need to fill this!
      memset(addr, 0, *addrlen);
      addr->sin_family = 2;          // AF_INET
      addr->sin_port = htons(1023);  // Port 1023 in network byte order
      addr->sin_addr.s_addr = 0x0100007f;

    }

    running = true;
    return FUZZ_INPUT_FD;

  }

  return o_accept(sockfd, addr, addrlen);

}

int accept4(int sockfd, struct mysockaddr *addr, unsigned long int *addrlen,
            int flags) {

  return accept(sockfd, addr, addrlen);  // ignore flags

}

int (*o_listen)(int sockfd, int backlog);
int listen(int sockfd, int backlog) {

  if (!handle) { __get_handle(); }
  if (!o_listen) { o_listen = dlsym(handle, "listen"); }
  if (sockfd == listen_fd) {

    if (debug) fprintf(stderr, "DESOCK: intercepted listen on %d\n", sockfd);
    return 0;

  }

  return o_listen(sockfd, backlog);

}

int (*o_bind)(int sockfd, const struct mysockaddr *addr,
              unsigned long int addrlen);
int bind(int sockfd, const struct mysockaddr *addr, unsigned long int addrlen) {

  if (!handle) { __get_handle(); }
  if (!o_bind) { o_bind = dlsym(handle, "bind"); }
  if (addr->sin_port == htons(port)) {

    if (debug) fprintf(stderr, "DESOCK: intercepted bind on %d\n", sockfd);
    listen_fd = sockfd;
    return 0;

  }

  return o_bind(sockfd, addr, addrlen);

}

int (*o_setsockopt)(int sockfd, int level, int optname, const void *optval,
                    unsigned long int optlen);
int setsockopt(int sockfd, int level, int optname, const void *optval,
               unsigned long int optlen) {

  if (!handle) { __get_handle(); }
  if (!o_setsockopt) { o_setsockopt = dlsym(handle, "setsockopt"); }
  if (listen_fd == sockfd) {

    if (debug)
      fprintf(stderr, "DESOCK: intercepted setsockopt on %d for %d\n", sockfd,
              optname);
    return 0;

  }

  return o_setsockopt(sockfd, level, optname, optval, optlen);

}

int (*o_getsockopt)(int sockfd, int level, int optname, void *optval,
                    unsigned long int *optlen);
int getsockopt(int sockfd, int level, int optname, void *optval,
               unsigned long int *optlen) {

  if (!handle) { __get_handle(); }
  if (!o_getsockopt) { o_getsockopt = dlsym(handle, "getsockopt"); }
  if (listen_fd == sockfd) {

    if (debug)
      fprintf(stderr, "DESOCK: intercepted getsockopt on %d for %d\n", sockfd,
              optname);
    int *o = (int *)optval;
    if (o != NULL) {

      *o = 1;  // let's hope this is fine

    }

    return 0;

  }

  return o_getsockopt(sockfd, level, optname, optval, optlen);

}

int (*o_getpeername)(int sockfd, struct mysockaddr *addr,
                     unsigned long int *addrlen);
int getpeername(int sockfd, struct mysockaddr *addr,
                unsigned long int *addrlen) {

  if (!handle) { __get_handle(); }
  if (!o_getpeername) { o_getpeername = dlsym(handle, "getpeername"); }
  if (port != -1 && sockfd == FUZZ_INPUT_FD) {

    if (debug) fprintf(stderr, "DESOCK: getpeername\n");
    if (addr && addrlen) {

      // we need to fill this!
      memset(addr, 0, *addrlen);
      addr->sin_family = 2;          // AF_INET
      addr->sin_port = htons(1023);  // Port 1023 in network byte order
      addr->sin_addr.s_addr = 0x0100007f;

    }

    return 0;

  }

  return o_getpeername(sockfd, addr, addrlen);

}

int (*o_getsockname)(int sockfd, struct mysockaddr *addr,
                     unsigned long int *addrlen);
int getsockname(int sockfd, struct mysockaddr *addr,
                unsigned long int *addrlen) {

  if (!handle) { __get_handle(); }
  if (!o_getsockname) { o_getsockname = dlsym(handle, "getsockname"); }
  if (port != -1 && sockfd == FUZZ_INPUT_FD) {

    if (debug) fprintf(stderr, "DESOCK: getsockname\n");
    if (addr && addrlen) {

      // we need to fill this!
      memset(addr, 0, *addrlen);
      addr->sin_family = 2;  // AF_INET
      addr->sin_port = htons(port);
      addr->sin_addr.s_addr = 0x0100007f;

    }

    return 0;

  }

  return o_getsockname(sockfd, addr, addrlen);

}

static FILE *(*o_fdopen)(int fd, const char *mode);
FILE *fdopen(int fd, const char *mode) {

  if (!o_fdopen) {

    if (!handle) { __get_handle(); }

    o_fdopen = dlsym(handle, "fdopen");
    if (!o_fdopen) {

      fprintf(stderr, "%s(): can not find fdopen\n", dlerror());
      exit(-1);

    }

  }

  if (fd == FUZZ_INPUT_FD && strcmp(mode, "r") != 0) {

    if (debug) fprintf(stderr, "DESOCK: intercepted fdopen(r+) for %d\n", fd);
    return o_fdopen(fd, "r");

  }

  return o_fdopen(fd, mode);

}

/* TARGET SPECIFIC HOOKS - put extra needed code for your target here */