Skip to content

Commit

Permalink
Rebrand into libdiffuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel committed Aug 29, 2018
1 parent 14ff5db commit 286292f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
15 changes: 5 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#
# american fuzzy lop - libdislocator
# ----------------------------------
#
# Written by Michal Zalewski <lcamtuf@google.com>
#
# Copyright 2016 Google Inc. All rights reserved.
# libdiffuzz
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -19,18 +14,18 @@ HELPER_PATH = $(PREFIX)/lib/afl
CFLAGS ?= -O3 -funroll-loops
CFLAGS += -Wall -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign

all: libdislocator.so
all: libdiffuzz.so

libdislocator.so: libdislocator.so.c
libdiffuzz.so: libdiffuzz.so.c
$(CC) $(CFLAGS) -shared -fPIC $< -o $@ $(LDFLAGS)

.NOTPARALLEL: clean

clean:
rm -f *.o *.so *~ a.out core core.[1-9][0-9]*
rm -f libdislocator.so
rm -f libdiffuzz.so

install: all
install -m 755 libdislocator.so $${DESTDIR}$(HELPER_PATH)
install -m 755 libdiffuzz.so $${DESTDIR}$(HELPER_PATH)
install -m 644 README.dislocator $${DESTDIR}$(HELPER_PATH)

11 changes: 7 additions & 4 deletions libdislocator.so.c → libdiffuzz.so.c
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
/*
american fuzzy lop - dislocator, an abusive allocator
-----------------------------------------------------
libdiffuzz: memory allocator that helps discover
reads from uninitialized memory.
Written and maintained by Michal Zalewski <lcamtuf@google.com>
Written by Sergey Davidoff <shnatsel@gmail.com>
based on american fuzzy lop's dislocator, which is
written and maintained by Michal Zalewski <lcamtuf@google.com>
Copyright 2016 Google Inc. All rights reserved.
libdiffuzz: Copyright 2018 Sergey Davidoff
libdislocator: Copyright 2016 Google Inc. 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.
Expand Down

0 comments on commit 286292f

Please sign in to comment.