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
|
// Copyright 2018 The Chromium OS Authors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// libfuzzer-based fuzzer for public APIs.
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <epoxy/egl.h>
#include "util/macros.h"
#include "virglrenderer.h"
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size);
#ifndef CLEANUP_EACH_INPUT
// eglInitialize leaks unless eglTeriminate is called (which only happens
// with CLEANUP_EACH_INPUT), so suppress leak detection on everything
// allocated by it.
const char* __lsan_default_suppressions(void);
const char* __lsan_default_suppressions(void) {
return "leak:eglInitialize\n";
}
#endif // !CLEANUP_EACH_INPUT
struct fuzzer_cookie
{
EGLDisplay display;
EGLConfig egl_config;
EGLContext ctx;
};
static void fuzzer_write_fence(UNUSED void *opaque, UNUSED uint32_t fence)
{
}
static virgl_renderer_gl_context fuzzer_create_gl_context(
void *cookie, UNUSED int scanout_idx,
struct virgl_renderer_gl_ctx_param *param)
{
struct fuzzer_cookie *cookie_data = cookie;
EGLContext shared = param->shared ? eglGetCurrentContext() : NULL;
const EGLint context_attribs[] = { EGL_CONTEXT_CLIENT_VERSION, 3,
EGL_NONE };
EGLContext ctx = eglCreateContext(cookie_data->display,
cookie_data->egl_config,
shared,
context_attribs);
assert(ctx);
return ctx;
}
static void fuzzer_destroy_gl_context(void *cookie,
virgl_renderer_gl_context ctx)
{
struct fuzzer_cookie *cookie_data = cookie;
eglDestroyContext(cookie_data->display, ctx);
}
static int fuzzer_make_current(UNUSED void *cookie, UNUSED int scanout_idx,
UNUSED virgl_renderer_gl_context ctx)
{
return 0;
}
const int FUZZER_CTX_ID = 1;
const char *SWRAST_ENV = "LIBGL_ALWAYS_SOFTWARE";
static struct fuzzer_cookie cookie;
static struct virgl_renderer_callbacks fuzzer_cbs = {
.version = 1,
.write_fence = fuzzer_write_fence,
.create_gl_context = fuzzer_create_gl_context,
.destroy_gl_context = fuzzer_destroy_gl_context,
.make_current = fuzzer_make_current,
};
static bool initialized = false;
static int initialize_environment(void)
{
if (!initialized) {
EGLBoolean ok;
// Force SW rendering unless env variable is already set.
setenv(SWRAST_ENV, "true", 0);
cookie.display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
assert(cookie.display != EGL_NO_DISPLAY);
ok = eglInitialize(cookie.display, NULL, NULL);
assert(ok);
const EGLint config_attribs[] = { EGL_SURFACE_TYPE, EGL_DONT_CARE,
EGL_NONE };
EGLint num_configs;
ok = eglChooseConfig(cookie.display, config_attribs,
&cookie.egl_config, 1, &num_configs);
assert(ok);
ok = eglBindAPI(EGL_OPENGL_ES_API);
assert(ok);
const EGLint context_attribs[] = { EGL_CONTEXT_CLIENT_VERSION, 3,
EGL_NONE };
cookie.ctx = eglCreateContext(cookie.display, cookie.egl_config,
EGL_NO_CONTEXT, context_attribs);
assert(cookie.ctx != EGL_NO_CONTEXT);
ok = eglMakeCurrent(cookie.display, EGL_NO_SURFACE, EGL_NO_SURFACE,
cookie.ctx);
assert(ok);
initialized = true;
}
return FUZZER_CTX_ID;
}
#ifdef CLEANUP_EACH_INPUT
static void cleanup_environment()
{
if (cookie.ctx != EGL_NO_CONTEXT) {
eglMakeCurrent(cookie.display, NULL, NULL, NULL);
eglDestroyContext(cookie.display, cookie.ctx);
}
if (cookie.display != EGL_NO_DISPLAY) {
eglTerminate(cookie.display);
}
initialized = false;
}
#endif
static uint32_t fuzz_mode_init(void) {
uint32_t ctx_id = initialize_environment();
int ret;
// There are trade-offs here between ensuring that state is not persisted
// between invocations of virgl_renderer_submit_cmd, and to avoid leaking
// resources that comes with repeated dlopen()/dlclose()ing the mesa
// driver with each eglInitialize()/eglTerminate() if CLEANUP_EACH_INPUT
// is set.
ret = virgl_renderer_init(&cookie, 0, &fuzzer_cbs);
assert(!ret);
const char *name = "fuzzctx";
ret = virgl_renderer_context_create(ctx_id, strlen(name), name);
assert(!ret);
return ctx_id;
}
static void fuzz_mode_fini(uint32_t ctx_id) {
virgl_renderer_context_destroy(ctx_id);
virgl_renderer_cleanup(&cookie);
#ifdef CLEANUP_EACH_INPUT
// The following cleans up between each input which is a lot slower.
cleanup_environment();
#endif
}
static void FuzzMode0(const uint8_t* data, size_t size)
{
uint32_t ctx_id = fuzz_mode_init();
virgl_renderer_submit_cmd((void *)data, ctx_id, size / sizeof(uint32_t));
fuzz_mode_fini(ctx_id);
}
static void FuzzMode1(const uint8_t* data, size_t size)
{
uint32_t ctx_id = fuzz_mode_init();
struct virgl_renderer_resource_create_args args;
args.handle = 10;
args.target = 3;
args.format = 10;
args.bind = 10;
args.width = 200;
args.height = 200;
args.depth = 1;
args.array_size = 0;
args.last_level = 0;
args.nr_samples = 0;
args.flags = 0;
virgl_renderer_resource_create(&args, NULL, 0);
virgl_renderer_ctx_attach_resource(ctx_id, args.handle);
virgl_renderer_submit_cmd((void *)data, ctx_id, size / sizeof(uint32_t));
fuzz_mode_fini(ctx_id);
}
static void (UNUSED *fuzzer_modes[])(const uint8_t *, size_t) = {
FuzzMode0,
FuzzMode1
};
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
if (size == 0)
return -1;
// Hardcode to test with the fuzzmode1 for now.
uint8_t mode = 1;
assert(size > 0);
fuzzer_modes[mode](data, size);
return 0;
}
|