Commit Graph

16 Commits

Author SHA1 Message Date
Daiki Ueno 1c5c258a49
gnutls: Use default focal image (#6473) (#6479)
The gnutls build should be fixed with:
c3137e1735
2021-09-19 11:29:12 +01:00
jonathanmetzman bf1275f005
[Ubuntu upgrade] Pin projects to Xenial where fuzzer build fails. (#6293)
This does not include coverage build failures.
Related: #6180.
2021-08-24 15:24:25 -07:00
DavidKorczynski 79eba30557
gnutls: Fix dockerfile and libtasn clone to work with new versioning. (#5931) 2021-06-17 08:26:29 -07:00
devtty1er d561c49ae5
Update Dockerfiles (#4070)
* Use LABEL in place of MAINTAINER

* Remove LABEL maintainer from Dockerfiles
2020-07-06 13:18:23 -07:00
Nikos Mavrogiannopoulos 4e8526e38c [gnutls] updated reference to libtasn1 project (#1106)
The project was moved to gitlab.

Closes #1101

Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
2018-01-23 07:28:57 -08:00
Nikos Mavrogiannopoulos c021b7dc0c New fuzzing architecture (#779)
Requisites are build as static libraries and as these linked to the fuzzers.
p11-kit can't be build statically, thus our fuzzers are not using it.
2017-08-16 08:09:27 -07:00
Nikos Mavrogiannopoulos e618de2726 [gnutls] modified to use the internal corpora only (#705)
This avoids issues from external corpora format changing which
could effectively disable fuzzying.

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2017-07-07 06:44:25 -07:00
Nikos Mavrogiannopoulos a2c248a784 [gnutls] statically link with nettle and hogweed and avoid using gmp (#661)
This allows the memory sanitizer to track all variable assignment
and use.
2017-06-08 07:22:41 -07:00
Devin Jeanpierre 330386686d Use apt-get update && apt-get install, per best practices: (#561)
https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/

I ran into this because I was getting errors locally, like:

    E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/d/dpkg/libdpkg-perl_1.18.4ubuntu1.1_all.deb  404  Not Found [IP: 91.189.88.149 80]

It turns out you get these if you don't update, and the official best practices are to `run apt-get update && apt-get install`. In fact, running _any_ apt-get install command without the apt-get update && before it can result in unfortunate caching artifacts -- see "cache busting". (P.S. thanks to Peng on Freenode for helping me, I'm bad at Ubuntu.)

So:
    sed -re \
        's/RUN apt-get ((-y )?(install|build-dep))/RUN apt-get update \&\& apt-get \1/' -i \
        projects/**/Dockerfile

I also manually fixed the cases that already ran apt-get update in their Dockerfile:
    dlplibs/Dockerfile
    grpc/Dockerfile
    libreoffice/Dockerfile
2017-05-01 23:31:02 -07:00
Oliver Chang 60835ac420 oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGE 2017-03-22 12:12:51 -07:00
Oliver Chang 7df64d4ac4 [infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGE 2017-03-15 18:46:31 -07:00
Alex Gaynor c5f8a6eaf2 [gnutls] grammar better (#253) 2017-01-06 18:30:19 -08:00
Mike Aizatsky e6a8c4d6cd [infra] updating usages of base-libfuzzer (#142) 2017-01-03 15:07:49 -08:00
Alex Gaynor f4121e3f61 Move the gnutls fuzzers to their own repo. (#188)
Also add two new ones.
2016-12-15 12:01:36 -08:00
Alex Gaynor 6b27f9b7fa [gnutls] use an initial corpus for x509 (#164)
* [gnutls] use an initial corpus for x509

and add OpenSSL's corpus for client transcripts

* Use --depth=1 on clones
2016-12-10 09:28:26 -08:00
Alex Gaynor ed2ee1adac [In progress] Fuzzer for GNUTLS (#135)
* First cut at gnutls. Doesn't actually find coverage.

* link everything right

* pipes are not sockets

* send not write

* these are not used

* stick this here

* this doesn't exit

* remove jenkinsfile

* move to the right dir

* project file

* update for more recent conventions

* ugh, typo

* new lib

* docs take forever

* name it client fuzzer

* stick a cert store on there!

* add a timeout, ugh

* Shtudown the right side instead of using a timeout

* Use boringssl's test corpus

* simplify grabbing the tarballs

* statically link things. pthread is still dynamically linked because I was not able to make it work

* Added an x509 parser fuzzer

* update for the lastest convention
2016-12-09 07:36:42 -08:00