/* NETWOX Network toolbox Copyright(c) 1999-2006 Laurent Constantin ----- Main server : http://www.laurentconstantin.com/ Backup servers : http://go.to/laurentconstantin/ http://laurentconstantin.est-la.com/ http://laurentconstantin.free.fr/ http://membres.lycos.fr/lauconstantin/ [my current email address is on the web servers] ----- This file is part of Netwox. Netwox is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Netwox 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 (http://www.gnu.org/). ------------------------------------------------------------------------ */ /*-------------------------------------------------------------*/ #include "../netwox.h" /*-------------------------------------------------------------*/ netwib_conststring t000098_description[] = { "This tool sends a lot of random messages to a SYSLOG server.", "This tool permits to check syslog server limits.", "", "Parameter --message contains the common part which will be used in", "all random messages.", NETWOX_DESC_client, NETWOX_DESC_toolpriv_none, NULL }; netwox_toolarg t000098_args[] = { NETWOX_SOCK_ARG_UDP_CLIPORT("514"), NETWOX_TOOLARG_OPT_UINT32('y', "priority", "message's priority", NULL), NETWOX_TOOLARG_OPT_BUF('m', "message", "message root part", "hello"), NETWOX_TOOLARG_END }; netwox_tooltreenodetype t000098_nodes[] = { NETWOX_TOOLTREENODETYPE_CLIENT_UDP_SYSLOG, NETWOX_TOOLTREENODETYPE_END }; netwox_tool_info t000098_info = { "Flood a host with syslog messages", t000098_description, NULL, t000098_args, t000098_nodes, }; /*-------------------------------------------------------------*/ netwib_err t000098_core(int argc, char *argv[]) { netwox_arg *parg; netwox_sockinfo sockinfo; netwib_io *pio; netwib_ip localip; netwox_syslog_priority priority; netwib_buf msg, msg2, buf; netwib_uint32 cstmsgsize; netwib_time t; /* obtain parameters */ netwib_er(netwox_arg_init(argc, argv, &t000098_info, &parg)); netwib_er(netwox_sockinfo_init_arg_udp_cli(parg, &sockinfo)); netwib_er(netwox_arg_uint32(parg, 'y', &priority)); netwib_er(netwox_arg_buf(parg, 'm', &msg)); netwib_er(netwox_sock_init(&sockinfo, &pio)); /* send message */ netwib_er(netwib_buf_init_mallocdefault(&buf)); netwib_er(netwib_buf_init_mallocdefault(&msg2)); netwib_er(netwib_buf_append_buf(&msg, &msg2)); cstmsgsize = netwib__buf_ref_data_size(&msg); netwib_er(netwib_sock_ctl_get_local(pio, &localip, NULL)); while(NETWIB_TRUE) { netwib_er(netwib_time_init_now(&t)); netwib__buf_reinit(&buf); msg2.endoffset = cstmsgsize; /* values 32 and 126 come from rfc 3164 */ netwib_er(netwib_buf_append_rand(16, 32, 126, &msg2)); netwib_er(netwox_syslog_msg_init(priority, &t, NULL, &localip, &msg2, &buf)); netwib_er(netwib_io_write(pio, &buf)); } netwib_er(netwib_buf_close(&msg2)); netwib_er(netwib_buf_close(&buf)); /* close */ netwib_er(netwib_io_close(&pio)); netwib_er(netwox_sockinfo_close(&sockinfo)); netwib_er(netwox_arg_close(&parg)); return(NETWIB_ERR_OK); }