mirror of https://github.com/google/oss-fuzz.git
134 lines
3.5 KiB
C
134 lines
3.5 KiB
C
/* Copyright 2022 Google LLC
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include "lcms2.h"
|
|
|
|
|
|
/* Fuzzer that creates a transform with the following vars initialized by way
|
|
* of fuzzer data:
|
|
* - srcFormat
|
|
* - dstFormat
|
|
* - profile
|
|
* Then applies the transform once on a input derived from the fuzzer.
|
|
* This input data and output data to cmsDoTransform is allocated such
|
|
* that it is large enough for any input/output types.
|
|
*/
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
if (size < 4096) {
|
|
return 0;
|
|
}
|
|
uint8_t *profile_data = NULL;
|
|
uint8_t *input_data = NULL;
|
|
uint8_t *output_data = NULL;
|
|
|
|
// Create a random src and dst format
|
|
uint32_t srcFormat = *(uint32_t*)data;
|
|
data += 4;
|
|
size -= 4;
|
|
uint32_t dstFormat = *(uint32_t*)data;
|
|
data += 4;
|
|
size -= 4;
|
|
uint32_t flags = *(uint32_t*)data;
|
|
data += 4;
|
|
size -= 4;
|
|
uint32_t intent = (*(uint32_t*)data) % 16;
|
|
data += 4;
|
|
size -= 4;
|
|
|
|
if (T_CHANNELS(srcFormat) <= 0 ||
|
|
T_EXTRA(srcFormat) > 5 ||
|
|
T_CHANNELS(dstFormat) == 0) {
|
|
return 0;
|
|
}
|
|
int max_channels = T_CHANNELS(dstFormat);
|
|
if (max_channels < T_CHANNELS(srcFormat)) {
|
|
max_channels = T_CHANNELS(srcFormat);
|
|
}
|
|
|
|
profile_data = (uint8_t*)malloc(512);
|
|
memcpy(profile_data, data, 512);
|
|
data += 512;
|
|
size -= 512;
|
|
cmsHPROFILE srcProfile = cmsOpenProfileFromMem(profile_data, 512);
|
|
if (!srcProfile) {
|
|
goto cleanup;
|
|
}
|
|
|
|
cmsHPROFILE dstProfile = cmsCreate_sRGBProfile();
|
|
if (!dstProfile) {
|
|
cmsCloseProfile(srcProfile);
|
|
goto cleanup;
|
|
}
|
|
|
|
cmsColorSpaceSignature srcCS = cmsGetColorSpace(srcProfile);
|
|
cmsUInt32Number nSrcComponents = cmsChannelsOf(srcCS);
|
|
|
|
// allocate input buffer with fuzz data. Choose a large enough size so
|
|
// overflows wont occur due to erroneous typing.
|
|
int pixel_size = T_BYTES(srcFormat);
|
|
if (pixel_size < T_BYTES(dstFormat))
|
|
pixel_size = T_BYTES(dstFormat);
|
|
if (pixel_size == 0)
|
|
pixel_size = sizeof(uint64_t);
|
|
|
|
// Ensure inout_size meets the upper bound of input and output
|
|
// buffers.
|
|
int inout_size = 4 + nSrcComponents;
|
|
if (max_channels > 0) {
|
|
inout_size *= max_channels;
|
|
}
|
|
if (T_EXTRA(srcFormat) > 0) {
|
|
inout_size *= T_EXTRA(srcFormat);
|
|
}
|
|
if (pixel_size > 0) {
|
|
inout_size *= pixel_size;
|
|
}
|
|
inout_size *= 80;
|
|
if (size < inout_size) {
|
|
cmsCloseProfile(srcProfile);
|
|
cmsCloseProfile(dstProfile);
|
|
goto cleanup;
|
|
}
|
|
|
|
input_data = (uint8_t *)malloc(inout_size);
|
|
memcpy(input_data, data, inout_size);
|
|
// Make empty output data
|
|
output_data = (uint8_t *)malloc(inout_size);
|
|
|
|
cmsHTRANSFORM hTransform = cmsCreateTransform(
|
|
srcProfile, srcFormat, dstProfile, dstFormat, intent, flags);
|
|
cmsCloseProfile(srcProfile);
|
|
cmsCloseProfile(dstProfile);
|
|
|
|
if (!hTransform) {
|
|
goto cleanup;
|
|
}
|
|
|
|
// Do the transform
|
|
cmsDoTransform(hTransform, input_data, output_data, 1);
|
|
cmsDeleteTransform(hTransform);
|
|
|
|
cleanup:
|
|
if (output_data != NULL) {
|
|
free(output_data);
|
|
}
|
|
if (input_data != NULL) {
|
|
free(input_data);
|
|
}
|
|
if (profile_data != NULL) {
|
|
free(profile_data);
|
|
}
|
|
|
|
return 0;
|
|
}
|