summaryrefslogtreecommitdiffstats
path: root/fuzz/wget_progress_fuzzer.c
blob: d01cad65d772933f2356ca443af3a53afebff966 (plain)
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
/*
 * Copyright (c) 2017-2019, 2021-2024 Free Software Foundation, Inc.
 *
 * This file is part of GNU Wget.
 *
 * GNU Wget is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * GNU Wget is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Wget.  If not, see <https://www.gnu.org/licenses/>.
 */

#include <config.h>

#include <sys/types.h>
#include <dirent.h> // opendir, readdir
#include <stdint.h> // uint8_t
#include <stdio.h>  // fmemopen
#include <string.h>  // strncmp
#include <stdlib.h>  // free
#include <fcntl.h>  // open flags
#include <unistd.h>  // close
#include <setjmp.h> // longjmp, setjmp

#include "wget.h"

#undef fopen_wgetrc

#ifdef __cplusplus
  extern "C" {
#endif
  #include "progress.h"

  // declarations for wget internal functions
  int main_wget(int argc, const char **argv);
  void cleanup(void);
  FILE *fopen_wget(const char *pathname, const char *mode);
  FILE *fopen_wgetrc(const char *pathname, const char *mode);
  void exit_wget(int status);
#ifdef __cplusplus
  }
#endif

#include "fuzzer.h"

FILE *fopen_wget(const char *pathname, const char *mode)
{
	(void) pathname;
	return fopen("/dev/null", mode);
}

FILE *fopen_wgetrc(const char *pathname, const char *mode)
{
	(void) pathname;
	(void) mode;
	return NULL;
}

#ifdef FUZZING
void exit_wget(int status)
{
	(void) status;
}
#endif


#define NAMEPOS (2 * sizeof(wgint) + sizeof(double))
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
	void *progress;

	if (size > 4096) // same as max_len = ... in .options file
		return 0;

	if (size < NAMEPOS)
		return 0;

//	CLOSE_STDERR

	wgint start = ((wgint *) data)[0];
	wgint end = ((wgint *) data)[1];
	double dltime = ((wgint *) data)[2];

	if (start < 0 || end < 0)
		return 0;

	if (start > end) {
		wgint x = start;
		start = end;
		end = x;
	}

//	double dltime = ((double *) (data + 2 * sizeof(wgint)))[0];

	char *filename = strndup((char *) (data + NAMEPOS), size - NAMEPOS);

//	printf("%ld %ld %lf %s\n", start, end, dltime, filename);

	set_progress_implementation("bar:force"); // [:force][:noscroll]

	progress = progress_create (filename, start, end);
	progress_update (progress, 0, dltime);
	progress_update (progress, end - start, dltime);
	progress_finish (progress, dltime);

	set_progress_implementation("dot:default");// [:default|:binary|:mega|:giga]
	progress = progress_create (filename, start, end);
	progress_update (progress, 0, dltime);
	progress_update (progress, end - start, dltime);
	progress_finish (progress, dltime);

	set_progress_implementation("dot:binary");// [:default|:binary|:mega|:giga]
	progress = progress_create (filename, start, end);
	progress_update (progress, 0, dltime);
	progress_update (progress, end - start, dltime);
	progress_finish (progress, dltime);

	set_progress_implementation("dot:mega");// [:default|:binary|:mega|:giga]
	progress = progress_create (filename, start, end);
	progress_update (progress, 0, dltime);
	progress_update (progress, end - start, dltime);
	progress_finish (progress, dltime);

	set_progress_implementation("dot:giga");// [:default|:binary|:mega|:giga]
	progress = progress_create (filename, start, end);
	progress_update (progress, 0, dltime);
	progress_update (progress, end - start, dltime);
	progress_finish (progress, dltime);

	free(filename);

//	RESTORE_STDERR

	return 0;
}