Flutter Engine
The Flutter Engine
Functions | Variables
dart_libfuzzer.cc File Reference
#include <stddef.h>
#include <stdint.h>
#include "bin/dartutils.h"
#include "platform/text_buffer.h"
#include "platform/unicode.h"
#include "platform/utils.h"
#include "vm/json_writer.h"

Go to the source code of this file.

Functions

static int TestUnicode (const uint8_t *Data, size_t Size)
 
static int TestUtilities (const uint8_t *Data, size_t Size)
 
static int InitDartVM ()
 
int LLVMFuzzerInitialize (int *argc_in, char ***argv_in)
 
int LLVMFuzzerTestOneInput (const uint8_t *Data, size_t Size)
 

Variables

static int target = 0
 

Function Documentation

◆ InitDartVM()

static int InitDartVM ( )
static

Definition at line 62 of file dart_libfuzzer.cc.

62 {
63 // TODO(ajcbik): one-time setup of Dart VM.
64 return 0;
65}

◆ LLVMFuzzerInitialize()

int LLVMFuzzerInitialize ( int argc_in,
char ***  argv_in 
)

Definition at line 68 of file dart_libfuzzer.cc.

68 {
69 // Parse --t=<target> from command line.
70 int argc = *argc_in;
71 char** argv = *argv_in;
72 while (--argc > 0) {
73 char* ptr = *++argv;
74 if (*ptr++ == '-' && *ptr++ == '-' && *ptr++ == 't' && *ptr++ == '=') {
75 target = atoi(ptr);
76 }
77 }
78 // Initialize Dart VM.
79 return InitDartVM();
80}
static int InitDartVM()
static int target
char ** argv
Definition: library.h:9

◆ LLVMFuzzerTestOneInput()

int LLVMFuzzerTestOneInput ( const uint8_t *  Data,
size_t  Size 
)

Definition at line 85 of file dart_libfuzzer.cc.

85 {
86 switch (target) {
87 case 0:
88 return TestUnicode(Data, Size);
89 case 1:
90 return TestUtilities(Data, Size);
91 default:
92 fprintf(stderr, "dart_libfuzzer: invalid target --t=%d\n", target);
93 return 1;
94 }
95}
static int TestUnicode(const uint8_t *Data, size_t Size)
static int TestUtilities(const uint8_t *Data, size_t Size)
struct PathData * Data(SkPath *path)
Definition: path_ops.cc:52
TSize< Scalar > Size
Definition: size.h:137

◆ TestUnicode()

static int TestUnicode ( const uint8_t *  Data,
size_t  Size 
)
static

Definition at line 19 of file dart_libfuzzer.cc.

19 {
23 int32_t dst = 0;
25 uint16_t dst16[1024];
26 dart::Utf8::DecodeToUTF16(Data, Size, dst16, 1024);
27 int32_t dst32[1024];
28 dart::Utf8::DecodeToUTF32(Data, Size, dst32, 1024);
30 return 0;
31}
GLenum type
static bool DecodeToUTF32(const uint8_t *utf8_array, intptr_t array_len, int32_t *dst, intptr_t len)
Definition: unicode.cc:245
@ kLatin1
Definition: unicode.h:44
static intptr_t CodeUnitCount(const uint8_t *utf8_array, intptr_t array_len, Type *type)
Definition: unicode.cc:46
static intptr_t ReportInvalidByte(const uint8_t *utf8_array, intptr_t array_len, intptr_t len)
Definition: unicode.cc:163
static bool IsValid(const uint8_t *utf8_array, intptr_t array_len)
Definition: unicode.cc:70
static bool DecodeToUTF16(const uint8_t *utf8_array, intptr_t array_len, uint16_t *dst, intptr_t len)
Definition: unicode.cc:217
static intptr_t Decode(const uint8_t *utf8_array, intptr_t array_len, int32_t *ch)
Definition: unicode.cc:135
dst
Definition: cp.py:12

◆ TestUtilities()

static int TestUtilities ( const uint8_t *  Data,
size_t  Size 
)
static

Definition at line 35 of file dart_libfuzzer.cc.

35 {
36 dart::Utils::StringHash(reinterpret_cast<const char*>(Data), Size);
38 // Text buffer.
40 for (size_t i = 0; i < Size; i++) {
41 buffer.AddChar(Data[i]);
42 }
43 if (static_cast<size_t>(buffer.length()) != Size) return 1;
44 buffer.AddRaw(Data, Size);
45 if (static_cast<size_t>(buffer.length()) != 2 * Size) return 1;
46 free(buffer.Steal());
47 buffer.AddRaw(Data, Size);
48 if (static_cast<size_t>(buffer.length()) != Size) return 1;
49 // Json writer.
50 dart::JSONWriter writer(1);
51 writer.OpenObject("object");
52 writer.AppendBytes(Data, Size);
53 writer.CloseObject();
54 for (size_t i = 0; i < Size; i++) {
55 writer.PrintValue(static_cast<intptr_t>(Data[i]));
56 }
57 writer.PrintValueBase64(Data, Size);
58 return 0;
59}
static uint32_t StringHash(const void *data, int length)
Definition: utils.cc:114
static MagicNumber SniffForMagicNumber(const char *filename)
Definition: dartutils.cc:403
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126

Variable Documentation

◆ target

int target = 0
static

Definition at line 15 of file dart_libfuzzer.cc.