tests: Remove obsolete wnm-fuzzer
tests/fuzzing/wnm replaced this more than a year ago, so get rid of the now obsolete version. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
ceab836a99
commit
0be7967692
4 changed files with 0 additions and 210 deletions
|
@ -1,94 +0,0 @@
|
|||
all: wnm-fuzzer
|
||||
|
||||
ifndef CC
|
||||
CC=gcc
|
||||
endif
|
||||
|
||||
ifndef LDO
|
||||
LDO=$(CC)
|
||||
endif
|
||||
|
||||
ifndef CFLAGS
|
||||
CFLAGS = -MMD -O2 -Wall -g
|
||||
endif
|
||||
|
||||
SRC=../../src
|
||||
|
||||
CFLAGS += -I$(SRC)
|
||||
CFLAGS += -DCONFIG_WNM
|
||||
CFLAGS += -DCONFIG_INTERWORKING
|
||||
CFLAGS += -DCONFIG_GAS
|
||||
CFLAGS += -DCONFIG_HS20
|
||||
CFLAGS += -DIEEE8021X_EAPOL
|
||||
|
||||
$(SRC)/utils/libutils.a:
|
||||
$(MAKE) -C $(SRC)/utils
|
||||
|
||||
$(SRC)/common/libcommon.a:
|
||||
$(MAKE) -C $(SRC)/common
|
||||
|
||||
$(SRC)/crypto/libcrypto.a:
|
||||
$(MAKE) -C $(SRC)/crypto
|
||||
|
||||
$(SRC)/tls/libtls.a:
|
||||
$(MAKE) -C $(SRC)/tls
|
||||
|
||||
$(SRC)/rsn_supp/librsn_supp.a:
|
||||
$(MAKE) -C $(SRC)/rsn_supp
|
||||
|
||||
$(SRC)/eapol_supp/libeapol_supp.a:
|
||||
$(MAKE) -C $(SRC)/eapol_supp
|
||||
|
||||
$(SRC)/eap_peer/libeap_peer.a:
|
||||
$(MAKE) -C $(SRC)/eap_peer
|
||||
|
||||
$(SRC)/eap_common/libeap_common.a:
|
||||
$(MAKE) -C $(SRC)/eap_common
|
||||
|
||||
$(SRC)/l2_packet/libl2_packet.a:
|
||||
$(MAKE) -C $(SRC)/l2_packet
|
||||
|
||||
LIBS += $(SRC)/common/libcommon.a
|
||||
LIBS += $(SRC)/crypto/libcrypto.a
|
||||
LIBS += $(SRC)/tls/libtls.a
|
||||
LIBS += $(SRC)/rsn_supp/librsn_supp.a
|
||||
LIBS += $(SRC)/eapol_supp/libeapol_supp.a
|
||||
LIBS += $(SRC)/eap_peer/libeap_peer.a
|
||||
LIBS += $(SRC)/eap_common/libeap_common.a
|
||||
LIBS += $(SRC)/l2_packet/libl2_packet.a
|
||||
LIBS += $(SRC)/utils/libutils.a
|
||||
|
||||
ELIBS += $(SRC)/crypto/libcrypto.a
|
||||
ELIBS += $(SRC)/tls/libtls.a
|
||||
|
||||
CFLAGS += -I$(SRC)/utils
|
||||
OBJS += ../../wpa_supplicant/wnm_sta.o
|
||||
OBJS += ../../wpa_supplicant/bss.o
|
||||
OBJS += ../../wpa_supplicant/scan.o
|
||||
OBJS += ../../wpa_supplicant/notify.o
|
||||
OBJS += ../../wpa_supplicant/wpa_supplicant.o
|
||||
OBJS += ../../wpa_supplicant/config.o
|
||||
OBJS += ../../wpa_supplicant/config_file.o
|
||||
OBJS += ../../wpa_supplicant/blacklist.o
|
||||
OBJS += ../../wpa_supplicant/events.o
|
||||
OBJS += ../../wpa_supplicant/wpas_glue.o
|
||||
OBJS += ../../wpa_supplicant/wmm_ac.o
|
||||
OBJS += ../../wpa_supplicant/eap_register.o
|
||||
OBJS += ../../wpa_supplicant/gas_query.o
|
||||
OBJS += ../../wpa_supplicant/offchannel.o
|
||||
OBJS += ../../wpa_supplicant/interworking.o
|
||||
OBJS += ../../wpa_supplicant/hs20_supplicant.o
|
||||
OBJS += ../../wpa_supplicant/rrm.o
|
||||
OBJS += ../../wpa_supplicant/op_classes.o
|
||||
OBJS += $(SRC)/drivers/drivers.o
|
||||
OBJS += $(SRC)/drivers/driver_common.o
|
||||
|
||||
wnm-fuzzer: wnm-fuzzer.o $(OBJS) $(LIBS)
|
||||
$(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) $(ELIBS)
|
||||
|
||||
clean:
|
||||
$(MAKE) -C $(SRC) clean
|
||||
$(MAKE) -C ../../wpa_supplicant clean
|
||||
rm -f wnm-fuzzer *~ *.o *.d
|
||||
|
||||
-include $(OBJS:%.o=%.d)
|
Binary file not shown.
|
@ -1,116 +0,0 @@
|
|||
/*
|
||||
* wpa_supplicant - WNM fuzzer
|
||||
* Copyright (c) 2015-2019, Jouni Malinen <j@w1.fi>
|
||||
*
|
||||
* 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 "rsn_supp/wpa.h"
|
||||
#include "rsn_supp/wpa_i.h"
|
||||
#include "../../wpa_supplicant/wpa_supplicant_i.h"
|
||||
#include "../../wpa_supplicant/bss.h"
|
||||
#include "../../wpa_supplicant/wnm_sta.h"
|
||||
#include "../../wpa_supplicant/config.h"
|
||||
|
||||
|
||||
struct arg_ctx {
|
||||
const char *fname;
|
||||
struct wpa_supplicant wpa_s;
|
||||
struct wpa_bss bss;
|
||||
struct wpa_driver_ops driver;
|
||||
struct wpa_sm wpa;
|
||||
struct wpa_config conf;
|
||||
};
|
||||
|
||||
|
||||
static void test_send_wnm(void *eloop_data, void *user_ctx)
|
||||
{
|
||||
struct arg_ctx *ctx = eloop_data;
|
||||
char *data;
|
||||
size_t len;
|
||||
struct ieee80211_mgmt *mgmt;
|
||||
|
||||
wpa_printf(MSG_INFO, "wnm-fuzzer: Send '%s'", ctx->fname);
|
||||
|
||||
data = os_readfile(ctx->fname, &len);
|
||||
if (!data) {
|
||||
wpa_printf(MSG_ERROR, "Could not read '%s'", ctx->fname);
|
||||
goto out;
|
||||
}
|
||||
|
||||
wpa_hexdump(MSG_MSGDUMP, "fuzzer - WNM", data, len);
|
||||
|
||||
mgmt = (struct ieee80211_mgmt *) data;
|
||||
ieee802_11_rx_wnm_action(&ctx->wpa_s, mgmt, len);
|
||||
|
||||
out:
|
||||
os_free(data);
|
||||
eloop_terminate();
|
||||
}
|
||||
|
||||
|
||||
static int init_wpa(struct arg_ctx *ctx)
|
||||
{
|
||||
ctx->wpa_s.wpa_state = WPA_COMPLETED;
|
||||
os_memcpy(ctx->wpa_s.bssid, "\x02\x00\x00\x00\x03\x00", ETH_ALEN);
|
||||
ctx->wpa_s.current_bss = &ctx->bss;
|
||||
ctx->wpa_s.driver = &ctx->driver;
|
||||
ctx->wpa_s.wpa = &ctx->wpa;
|
||||
ctx->wpa_s.conf = &ctx->conf;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static void deinit_wpa(struct arg_ctx *ctx)
|
||||
{
|
||||
wnm_deallocate_memory(&ctx->wpa_s);
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
struct arg_ctx ctx;
|
||||
int ret = -1;
|
||||
|
||||
if (argc < 2) {
|
||||
printf("usage: %s <file>\n", argv[0]);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (os_program_init())
|
||||
return -1;
|
||||
|
||||
wpa_debug_level = 0;
|
||||
wpa_debug_show_keys = 1;
|
||||
|
||||
if (eloop_init()) {
|
||||
wpa_printf(MSG_ERROR, "Failed to initialize event loop");
|
||||
return -1;
|
||||
}
|
||||
|
||||
os_memset(&ctx, 0, sizeof(ctx));
|
||||
ctx.fname = argv[1];
|
||||
if (init_wpa(&ctx))
|
||||
goto fail;
|
||||
|
||||
eloop_register_timeout(0, 0, test_send_wnm, &ctx, NULL);
|
||||
|
||||
wpa_printf(MSG_DEBUG, "Starting eloop");
|
||||
eloop_run();
|
||||
wpa_printf(MSG_DEBUG, "eloop done");
|
||||
deinit_wpa(&ctx);
|
||||
|
||||
ret = 0;
|
||||
fail:
|
||||
eloop_destroy();
|
||||
os_program_deinit();
|
||||
|
||||
return ret;
|
||||
}
|
Binary file not shown.
Loading…
Reference in a new issue