fuzz: Add fuzzer targeting RADIUS messages

Closes strongswan/strongswan#3027

Signed-off-by: Arthur Chan <[email protected]>
This commit is contained in:
Arthur Chan
2026-05-27 12:36:26 +02:00
committed by Tobias Brunner
parent a5bcaa70ed
commit 50fc4c24a6
4 changed files with 85 additions and 1 deletions
+75
View File
@@ -0,0 +1,75 @@
/*
* Copyright (C) 2026 Arthur SC Chan
*
* Copyright (C) secunet Security Networks AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include <library.h>
#include <utils/debug.h>
#include <radius_message.h>
int LLVMFuzzerInitialize(int *argc, char ***argv)
{
dbg_default_set_level(-1);
library_init(NULL, "fuzz_radius");
if (!lib->plugins->load(lib->plugins, PLUGINS))
{
return 1;
}
return 0;
}
int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len)
{
enumerator_t *enumerator;
radius_message_t *msg;
hasher_t *hasher;
signer_t *signer;
chunk_t data, attr_data;
int type, count, vendor;
if (len < 20)
{
return 0;
}
data = chunk_create((u_char*)buf, len);
msg = radius_message_parse(data);
if (msg)
{
enumerator = msg->create_enumerator(msg);
count = 0;
while (count++ < 10000 &&
enumerator->enumerate(enumerator, &type, &attr_data));
enumerator->destroy(enumerator);
enumerator = msg->create_vendor_enumerator(msg);
count = 0;
while (count++ < 10000 &&
enumerator->enumerate(enumerator, &vendor, &type, &attr_data));
enumerator->destroy(enumerator);
hasher = lib->crypto->create_hasher(lib->crypto, HASH_MD5);
signer = lib->crypto->create_signer(lib->crypto, AUTH_HMAC_MD5_128);
if (!hasher || !signer)
{
return 1;
}
msg->verify(msg, NULL, chunk_empty, hasher, signer);
hasher->destroy(hasher);
signer->destroy(signer);
msg->destroy(msg);
}
return 0;
}