From efbd631862479934d14cd27d1cf07256301f4766 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 1 Jun 2019 16:15:35 +0300 Subject: [PATCH] tests: New style fuzzing tool for P2P frame processing This is a newer version of tests/p2p-fuzzer tool. Signed-off-by: Jouni Malinen --- tests/fuzzing/p2p/Makefile | 18 ++ tests/fuzzing/p2p/corpus/go-neg-req.dat | Bin 0 -> 155 bytes tests/fuzzing/p2p/corpus/invitation-req.dat | Bin 0 -> 123 bytes tests/fuzzing/p2p/corpus/p2ps-pd-req.dat | Bin 0 -> 189 bytes tests/fuzzing/p2p/corpus/proberesp-go.dat | Bin 0 -> 306 bytes tests/fuzzing/p2p/corpus/proberesp.dat | Bin 0 -> 209 bytes tests/fuzzing/p2p/p2p.c | 178 ++++++++++++++++++++ 7 files changed, 196 insertions(+) create mode 100644 tests/fuzzing/p2p/Makefile create mode 100644 tests/fuzzing/p2p/corpus/go-neg-req.dat create mode 100644 tests/fuzzing/p2p/corpus/invitation-req.dat create mode 100644 tests/fuzzing/p2p/corpus/p2ps-pd-req.dat create mode 100644 tests/fuzzing/p2p/corpus/proberesp-go.dat create mode 100644 tests/fuzzing/p2p/corpus/proberesp.dat create mode 100644 tests/fuzzing/p2p/p2p.c diff --git a/tests/fuzzing/p2p/Makefile b/tests/fuzzing/p2p/Makefile new file mode 100644 index 000000000..c088e32d0 --- /dev/null +++ b/tests/fuzzing/p2p/Makefile @@ -0,0 +1,18 @@ +all: p2p +include ../rules.include + +LIBS += $(SRC)/utils/libutils.a +LIBS += $(SRC)/common/libcommon.a +LIBS += $(SRC)/crypto/libcrypto.a +LIBS += $(SRC)/p2p/libp2p.a +LIBS += $(SRC)/tls/libtls.a +LIBS += $(SRC)/wps/libwps.a + +p2p: p2p.o $(OBJS) $(LIBS) + $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) + +clean: + $(MAKE) -C $(SRC) clean + rm -f p2p *~ *.o *.d ../*~ ../*.o ../*.d + +-include $(OBJS:%.o=%.d) diff --git a/tests/fuzzing/p2p/corpus/go-neg-req.dat b/tests/fuzzing/p2p/corpus/go-neg-req.dat new file mode 100644 index 0000000000000000000000000000000000000000..ed06834d71a15feb902334f8d676fa828ced7269 GIT binary patch literal 155 zc-p(bu!ez&fq{V$Ofo>(4h$@u0r|5y85r-zfoLWs22~CgMg}=nCWaIdHdcm+2$n!@ zPBy3}ZUKk@BNHEv1Q|G7Qp+-vQxzNqp=R8bWC-}gBH+cq VC?FsN)WRs>$-u^7uEoHp001l}5ikG% literal 0 Hc-jL100001 diff --git a/tests/fuzzing/p2p/corpus/invitation-req.dat b/tests/fuzzing/p2p/corpus/invitation-req.dat new file mode 100644 index 0000000000000000000000000000000000000000..5991f3e6e3f9c8c162679aa64f570f8ae233af02 GIT binary patch literal 123 zc-p(bu!ez&fq{V$Ofo>(0Sqjh0r|5ynHld!f@oHdun;2ygCHwIL+>sbu8n5t^a0!6PAunUPV8k;OoSk%57K4GR*<#KWK~Rl^|t|33p9 zFd~??Vn`e$P|v}_z`z7#INX(B2>8Ur$k@QZyo7;49f+NrV;Pc+^ce2e0A*MNycie- z1Y8&xnFJge7#RhGK-vU?8JG+`1gsetnFZV#1k7}|R4=s(oY?U@Bw}aVrY8c542%i_ z${<1oL^y$n5C#sI?E-=f94@J4naQaNjshHDqdXb-7|gYR>KNJngTY*G~F9t>d0T%{FMgeOEMg{?Q27z#$ zANnW5!-8jvZ9Ttf#_Ep(iVTbj0?Hsl1w=T3h!6%21}G2^WZ-Z~Ez3+!Rd5pEU|=%z z5b$JRV=&hOs=KQhkUxu)iHSj#fmfD+38 + * + * This software may be distributed under the terms of the BSD license. + * See README for more details. + */ + +#include "utils/includes.h" + +#include "utils/common.h" +#include "utils/eloop.h" +#include "common/ieee802_11_defs.h" +#include "p2p/p2p.h" +#include "../fuzzer-common.h" + + +static void debug_print(void *ctx, int level, const char *msg) +{ + wpa_printf(level, "P2P: %s", msg); +} + + +static void find_stopped(void *ctx) +{ +} + + +static int start_listen(void *ctx, unsigned int freq, + unsigned int duration, + const struct wpabuf *probe_resp_ie) +{ + return 0; +} + + +static void stop_listen(void *ctx) +{ +} + + +static void dev_found(void *ctx, const u8 *addr, + const struct p2p_peer_info *info, + int new_device) +{ +} + + +static void dev_lost(void *ctx, const u8 *dev_addr) +{ +} + + +static int send_action(void *ctx, unsigned int freq, const u8 *dst, + const u8 *src, const u8 *bssid, const u8 *buf, + size_t len, unsigned int wait_time, int *scheduled) +{ + *scheduled = 0; + return 0; +} + + +static void send_action_done(void *ctx) +{ +} + + +static void go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id, + u8 go_intent) +{ +} + + +static struct p2p_data * init_p2p(void) +{ + struct p2p_config p2p; + + os_memset(&p2p, 0, sizeof(p2p)); + p2p.max_peers = 100; + p2p.passphrase_len = 8; + p2p.channels.reg_classes = 1; + p2p.channels.reg_class[0].reg_class = 81; + p2p.channels.reg_class[0].channel[0] = 1; + p2p.channels.reg_class[0].channel[1] = 2; + p2p.channels.reg_class[0].channels = 2; + p2p.debug_print = debug_print; + p2p.find_stopped = find_stopped; + p2p.start_listen = start_listen; + p2p.stop_listen = stop_listen; + p2p.dev_found = dev_found; + p2p.dev_lost = dev_lost; + p2p.send_action = send_action; + p2p.send_action_done = send_action_done; + p2p.go_neg_req_rx = go_neg_req_rx; + + return p2p_init(&p2p); +} + + +struct arg_ctx { + const u8 *data; + size_t data_len; + struct p2p_data *p2p; + int count; +}; + + +static void test_send(void *eloop_data, void *user_ctx) +{ + struct arg_ctx *ctx = eloop_data; + struct os_reltime rx_time; + + wpa_hexdump(MSG_MSGDUMP, "fuzzer - IEs", ctx->data, ctx->data_len); + + os_memset(&rx_time, 0, sizeof(rx_time)); + p2p_scan_res_handler(ctx->p2p, (u8 *) "\x02\x00\x00\x00\x01\x00", 2412, + &rx_time, 0, ctx->data, ctx->data_len); + p2p_scan_res_handled(ctx->p2p); + + p2p_probe_req_rx(ctx->p2p, (u8 *) "\x02\x00\x00\x00\x01\x00", + (u8 *) "\x02\x00\x00\x00\x00\x00", + (u8 *) "\x02\x00\x00\x00\x00\x00", + ctx->data, ctx->data_len, 2412, 0); + + if (ctx->data_len >= IEEE80211_HDRLEN + 1) { + struct os_reltime rx_time; + const struct ieee80211_mgmt *mgmt; + + mgmt = (const struct ieee80211_mgmt *) ctx->data; + os_memset(&rx_time, 0, sizeof(rx_time)); + p2p_rx_action(ctx->p2p, mgmt->da, mgmt->sa, mgmt->bssid, + mgmt->u.action.category, + (const u8 *) ctx->data + IEEE80211_HDRLEN + 1, + ctx->data_len - IEEE80211_HDRLEN - 1, 2412); + } + + eloop_terminate(); +} + + +int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) +{ + struct p2p_data *p2p; + struct arg_ctx ctx; + + wpa_fuzzer_set_debug_level(); + + if (os_program_init()) + return -1; + + if (eloop_init()) { + wpa_printf(MSG_ERROR, "Failed to initialize event loop"); + return 0; + } + + p2p = init_p2p(); + if (!p2p) { + wpa_printf(MSG_ERROR, "P2P init failed"); + return 0; + } + + os_memset(&ctx, 0, sizeof(ctx)); + ctx.p2p = p2p; + ctx.data = data; + ctx.data_len = size; + + eloop_register_timeout(0, 0, test_send, &ctx, NULL); + + wpa_printf(MSG_DEBUG, "Starting eloop"); + eloop_run(); + wpa_printf(MSG_DEBUG, "eloop done"); + + p2p_deinit(p2p); + eloop_destroy(); + os_program_deinit(); + + return 0; +} -- 2.39.2