afl-testcase.c++ 4.7 KB
Newer Older
Kenton Varda's avatar
Kenton Varda committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
// Copyright (c) 2017 Cloudflare, Inc. and contributors
// Licensed under the MIT License:
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

#include "test-util.h"
#include <kj/main.h>
#include "serialize.h"
#include <capnp/test.capnp.h>
#include <unistd.h>

namespace capnp {
namespace _ {
namespace {

class AflTestMain {
public:
  explicit AflTestMain(kj::ProcessContext& context)
      : context(context) {}

  kj::MainFunc getMain() {
    return kj::MainBuilder(context, "(unknown version)",
        "American Fuzzy Lop test case. Pass input on stdin. Expects a binary "
        "message of type TestAllTypes.")
        .addOption({"lists"}, KJ_BIND_METHOD(*this, runLists),
            "Expect a message of type TestLists instead of TestAllTypes.")
43 44
        .addOption({"canonicalize"}, KJ_BIND_METHOD(*this, canonicalize),
            "Test canonicalization code.")
Kenton Varda's avatar
Kenton Varda committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
        .callAfterParsing(KJ_BIND_METHOD(*this, run))
        .build();
  }

  kj::MainBuilder::Validity run() {
    capnp::StreamFdMessageReader reader(STDIN_FILENO);
    KJ_IF_MAYBE(e, kj::runCatchingExceptions([&]() {
      checkTestMessage(reader.getRoot<TestAllTypes>());
    })) {
      KJ_LOG(ERROR, "threw");
    }
    KJ_IF_MAYBE(e, kj::runCatchingExceptions([&]() {
      checkDynamicTestMessage(reader.getRoot<DynamicStruct>(Schema::from<TestAllTypes>()));
    })) {
      KJ_LOG(ERROR, "dynamic threw");
    }
    KJ_IF_MAYBE(e, kj::runCatchingExceptions([&]() {
      kj::str(reader.getRoot<TestAllTypes>());
    })) {
      KJ_LOG(ERROR, "str threw");
    }
66
    return true;
Kenton Varda's avatar
Kenton Varda committed
67 68 69 70 71 72 73 74 75
  }

  kj::MainBuilder::Validity runLists() {
    capnp::StreamFdMessageReader reader(STDIN_FILENO);
    KJ_IF_MAYBE(e, kj::runCatchingExceptions([&]() {
      kj::str(reader.getRoot<test::TestLists>());
    })) {
      KJ_LOG(ERROR, "threw");
    }
76
    return true;
Kenton Varda's avatar
Kenton Varda committed
77 78
  }

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
  kj::MainBuilder::Validity canonicalize() {
    // (Test case contributed by David Renshaw.)

    kj::Array<capnp::word> canonical;
    bool equal = false;
    KJ_IF_MAYBE(e, kj::runCatchingExceptions([&]() {
      capnp::ReaderOptions options;

      // The default traversal limit of 8 * 1024 * 1024 causes
      // AFL to think that it has found "hang" bugs.
      options.traversalLimitInWords = 8 * 1024;

      capnp::StreamFdMessageReader message(0, options); // read from stdin
      TestAllTypes::Reader myStruct = message.getRoot<TestAllTypes>();
      canonical = capnp::canonicalize(myStruct);

      kj::ArrayPtr<const capnp::word> segments[1] = {canonical.asPtr()};
      capnp::SegmentArrayMessageReader reader(kj::arrayPtr(segments, 1));

      auto originalAny = message.getRoot<capnp::AnyPointer>();

      // Discard cases where the original message is null.
      KJ_ASSERT(!originalAny.isNull());

      equal = originalAny == reader.getRoot<capnp::AnyPointer>();
    })) {
      // Probably some kind of decoding exception.
      KJ_LOG(ERROR, "threw");
      context.exit();
    }

    KJ_ASSERT(equal);

    kj::ArrayPtr<const capnp::word> segments[1] = {canonical.asPtr()};
    capnp::SegmentArrayMessageReader reader(kj::arrayPtr(segments, 1));
    KJ_ASSERT(reader.isCanonical());

    kj::Array<capnp::word> canonical2;
    {
      capnp::ReaderOptions options;
      options.traversalLimitInWords = 8 * 1024;

      TestAllTypes::Reader myStruct = reader.getRoot<TestAllTypes>();
      canonical2 = capnp::canonicalize(myStruct);
    }

    KJ_ASSERT(canonical.size() == canonical2.size());
    auto b1 = canonical.asBytes();
    auto b2 = canonical2.asBytes();
    for (int idx = 0; idx < b1.size(); ++idx) {
      KJ_ASSERT(b1[idx] == b2[idx], idx, b1.size());
    }

132
    return true;
133 134
  }

Kenton Varda's avatar
Kenton Varda committed
135 136 137 138 139 140 141 142 143
private:
  kj::ProcessContext& context;
};

}  // namespace
}  // namespace _
}  // namespace capnp

KJ_MAIN(capnp::_::AflTestMain);