From 9705ccee677eb3009c6d06d1bff4d2b6cf80c4a7 Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Wed, 4 Sep 2019 09:43:09 +0200 Subject: credits and license header for src/* and include/* --- include/afl-as.h | 15 +++++++++------ include/afl-fuzz.h | 15 +++++++++------ include/alloc-inl.h | 13 +++++++++---- include/android-ashmem.h | 24 ++++++++++++++++++++++++ include/common.h | 25 +++++++++++++++++++++++++ include/config.h | 13 +++++++++---- include/debug.h | 13 +++++++++---- include/forkserver.h | 26 ++++++++++++++++++++++++++ include/hash.h | 4 ++-- include/sharedmem.h | 26 ++++++++++++++++++++++++++ include/types.h | 13 +++++++++---- 11 files changed, 157 insertions(+), 30 deletions(-) (limited to 'include') diff --git a/include/afl-as.h b/include/afl-as.h index 55d8694d..f7e5c4dd 100644 --- a/include/afl-as.h +++ b/include/afl-as.h @@ -1,12 +1,15 @@ /* - american fuzzy lop - injectable parts - ------------------------------------- + american fuzzy lop++ - injectable parts + --------------------------------------- - Written and maintained by Michal Zalewski + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi - Forkserver design by Jann Horn - - Copyright 2013, 2014, 2015 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 3206ee72..17bdf95d 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -1,12 +1,15 @@ /* - american fuzzy lop - fuzzer code - -------------------------------- + american fuzzy lop++ - fuzzer header + ------------------------------------ - Written and maintained by Michal Zalewski + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi - Forkserver design by Jann Horn - - Copyright 2013, 2014, 2015, 2016, 2017 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/include/alloc-inl.h b/include/alloc-inl.h index 6e46ae19..de9ac1fc 100644 --- a/include/alloc-inl.h +++ b/include/alloc-inl.h @@ -1,10 +1,15 @@ /* - american fuzzy lop - error-checking, memory-zeroing alloc routines - ------------------------------------------------------------------ + american fuzzy lop++ - error-checking, memory-zeroing alloc routines + -------------------------------------------------------------------- - Written and maintained by Michal Zalewski + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi - Copyright 2013, 2014, 2015 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/include/android-ashmem.h b/include/android-ashmem.h index 02a84d11..bfe7166e 100644 --- a/include/android-ashmem.h +++ b/include/android-ashmem.h @@ -1,3 +1,27 @@ +/* + american fuzzy lop++ - android shared memory compatibility layer + ---------------------------------------------------------------- + + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. + + 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 + + This header re-defines the shared memory routines used by AFL++ + using the Andoid API. + + */ + #ifndef _ANDROID_ASHMEM_H #define _ANDROID_ASHMEM_H diff --git a/include/common.h b/include/common.h index 9845c2af..443d1418 100644 --- a/include/common.h +++ b/include/common.h @@ -1,3 +1,28 @@ +/* + american fuzzy lop++ - common routines header + --------------------------------------------- + + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. + + 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 + + Gather some functions common to multiple executables + + - detect_file_args + + */ + #ifndef __AFLCOMMON_H #define __AFLCOMMON_H #include "types.h" diff --git a/include/config.h b/include/config.h index d85a503d..3ea75bb5 100644 --- a/include/config.h +++ b/include/config.h @@ -1,10 +1,15 @@ /* - american fuzzy lop plus plus - vaguely configurable bits - ---------------------------------------------- + american fuzzy lop++ - vaguely configurable bits + ------------------------------------------------ - Written and maintained by Michal Zalewski + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi - Copyright 2013, 2014, 2015, 2016 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/include/debug.h b/include/debug.h index 5ff2e23e..201ff943 100644 --- a/include/debug.h +++ b/include/debug.h @@ -1,10 +1,15 @@ /* - american fuzzy lop - debug / error handling macros - -------------------------------------------------- + american fuzzy lop++ - debug / error handling macros + ---------------------------------------------------- - Written and maintained by Michal Zalewski + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi - Copyright 2013, 2014, 2015, 2016 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/include/forkserver.h b/include/forkserver.h index bfc35800..d40af87c 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -1,3 +1,29 @@ +/* + american fuzzy lop++ - forkserver header + ---------------------------------------- + + Originally written by Michal Zalewski + + Forkserver design by Jann Horn + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. + + 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 + + Shared code that implements a forkserver. This is used by the fuzzer + as well the other components like afl-tmin. + + */ + #ifndef __AFL_FORKSERVER_H #define __AFL_FORKSERVER_H diff --git a/include/hash.h b/include/hash.h index f60839ea..0ffaa410 100644 --- a/include/hash.h +++ b/include/hash.h @@ -1,6 +1,6 @@ /* - american fuzzy lop - hashing function - ------------------------------------- + american fuzzy lop++ - hashing function + --------------------------------------- The hash32() function is a variant of MurmurHash3, a good non-cryptosafe hashing function developed by Austin Appleby. diff --git a/include/sharedmem.h b/include/sharedmem.h index 7e13b13b..3fbfe664 100644 --- a/include/sharedmem.h +++ b/include/sharedmem.h @@ -1,3 +1,29 @@ +/* + american fuzzy lop++ - shared memory related header + --------------------------------------------------- + + Originally written by Michal Zalewski + + Forkserver design by Jann Horn + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. + + 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 + + Shared code to handle the shared memory. This is used by the fuzzer + as well the other components like afl-tmin, afl-showmap, etc... + + */ + #ifndef __AFL_SHAREDMEM_H #define __AFL_SHAREDMEM_H diff --git a/include/types.h b/include/types.h index dba666b6..baf68401 100644 --- a/include/types.h +++ b/include/types.h @@ -1,10 +1,15 @@ /* - american fuzzy lop - type definitions and minor macros - ------------------------------------------------------ + american fuzzy lop++ - type definitions and minor macros + -------------------------------------------------------- - Written and maintained by Michal Zalewski + Originally written by Michal Zalewski + + Now maintained by by Marc Heuse , + Heiko Eißfeldt and + Andrea Fioraldi - Copyright 2013, 2014, 2015 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. -- cgit 1.4.1