/* * Mausezahn - A fast versatile traffic generator * Copyright (C) 2008-2010 Herbert Haas * * This program 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. * * 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. * * You should have received a copy of the GNU General Public License along with * this program; if not, see http://www.gnu.org/licenses/gpl-2.0.html * */ #include "mz.h" #include "cli.h" #include "mops.h" int cmd_port_source (struct cli_def *cli, const char *command, char *argv[], int argc) { u_int32_t t32=0; int validport=0; if ( (strcmp(argv[argc-1],"?")==0) || (argc>2) ) { cli_print(cli, "Specify the source port number:\n"); cli_print(cli, " []\r"); cli_print(cli, " random [norandom]\r"); cli_print(cli, "\n"); return CLI_OK; } if (mz_strcmp(argv[0], "random",1)==0) { clipkt->sp_isrand = 1; clipkt->sp_isrange = 0; } else if (mz_strcmp(argv[0], "norandom",1)==0) { clipkt->sp_isrand = 0; } else { if (!mz_strisnum(argv[0])) { cli_print(cli, "Unknown keyword\n"); return CLI_OK; } t32 = str2int(argv[0]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); return CLI_OK; } else { clipkt->sp= (u_int16_t) t32; validport=1; clipkt->sp_isrange = 0; } } if ((argc==2) && (validport)) { if (!mz_strisnum(argv[1])) { cli_print(cli, "Invalid number\n"); return CLI_OK; } t32 = str2int(argv[1]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); } else { clipkt->sp_start = clipkt->sp; clipkt->sp_stop = (u_int16_t) t32; clipkt->sp_isrange = 1; } } return CLI_OK; } int cmd_port_destination (struct cli_def *cli, const char *command, char *argv[], int argc) { u_int32_t t32=0; int validport=0; if ( (strcmp(argv[argc-1],"?")==0) || (argc>2) ) { cli_print(cli, "Specify the destination port number\r"); cli_print(cli, " []\r"); cli_print(cli, " random [norandom]\r"); cli_print(cli, "\n"); return CLI_OK; } if (mz_strcmp(argv[0], "random",1)==0) { clipkt->dp_isrand = 1; clipkt->dp_isrange = 0; } else if (mz_strcmp(argv[0], "norandom",1)==0) { clipkt->dp_isrand = 0; } else { if (!mz_strisnum(argv[0])) { cli_print(cli, "Unknown keyword\n"); return CLI_OK; } t32 = str2int(argv[0]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); return CLI_OK; } else { clipkt->dp= (u_int16_t) t32; validport=1; clipkt->dp_isrange = 0; } } if ((argc==2) && (validport)) { if (!mz_strisnum(argv[1])) { cli_print(cli, "Invalid number\n"); return CLI_OK; } t32 = str2int(argv[1]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); } else { clipkt->dp_start = clipkt->dp; clipkt->dp_stop = (u_int16_t) t32; clipkt->dp_isrange = 1; } } return CLI_OK; } int cmd_udp_sum (struct cli_def *cli, const char *command, char *argv[], int argc) { int sum; if ( (strcmp(argv[argc-1],"?")==0) || (argc>1) ) { cli_print(cli, "Specify the UDP checksum:\n"); cli_print(cli, " - either in hexadecimal format (0-ffff)\r"); cli_print(cli, " - or use the keyword 'auto' (default)\r"); cli_print(cli, " - or use the keyword 'unset'\r"); cli_print(cli, "\r"); cli_print(cli, "By default, the checksum is computed automatically. The keyword\r"); cli_print(cli, "'unset' signals the receiver that the checksum has not be computed\r"); cli_print(cli, "and should be ignored.\n"); return CLI_OK; } if (mz_strcmp(argv[0], "auto", 2)==0) { clipkt->udp_sum_false=0; return CLI_OK; } if (mz_strcmp(argv[0], "unset", 2)==0) { clipkt->udp_sum_false=1; clipkt->udp_sum = 0xffff; return CLI_OK; } sum = (int) xstr2int(argv[0]); if (sum>0xffff) { cli_print(cli, "The checksum must be within range 0..ffff\n"); return CLI_OK; } clipkt->udp_sum = (u_int16_t) sum; clipkt->udp_sum_false=1; return CLI_OK; } int cmd_udp_len (struct cli_def *cli, const char *command, char *argv[], int argc) { if ( (strcmp(argv[argc-1],"?")==0) || (argc>1) ) { cli_print(cli, "Specify the UDP length\r"); cli_print(cli, "\n"); return CLI_OK; } cli_print(cli, "Not supported in this version.\n"); return CLI_OK; } int cmd_udp_end(struct cli_def *cli, const char *command, char *argv[], int argc) { char prompt[16]; sprintf(prompt, "pkt-%i",clipkt->id); cli_set_configmode(cli, MZ_MODE_PACKET, prompt); return CLI_OK; } th>6107020752729cf6faa4d6e06ad7f13818e416ea /Documentation parent58c1f9950ffc6acbb907051b0a4e56aaf4baa9ce (diff)parentfaf8dcc12c2780bfec61eb95e5ad74af2ff4f82f (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Pull networking fixes from David Miller: 1) Fix negative error code usage in ATM layer, from Stefan Hajnoczi. 2) If CONFIG_SYSCTL is disabled, the default TTL is not initialized properly. From Ezequiel Garcia. 3) Missing spinlock init in mvneta driver, from Gregory CLEMENT. 4) Missing unlocks in hwmb error paths, also from Gregory CLEMENT. 5) Fix deadlock on team->lock when propagating features, from Ivan Vecera. 6) Work around buffer offset hw bug in alx chips, from Feng Tang. 7) Fix double listing of SCTP entries in sctp_diag dumps, from Xin Long. 8) Various statistics bug fixes in mlx4 from Eric Dumazet. 9) Fix some randconfig build errors wrt fou ipv6 from Arnd Bergmann. 10) All of l2tp was namespace aware, but the ipv6 support code was not doing so. From Shmulik Ladkani. 11) Handle on-stack hrtimers properly in pktgen, from Guenter Roeck. 12) Propagate MAC changes properly through VLAN devices, from Mike Manning. 13) Fix memory leak in bnx2x_init_one(), from Vitaly Kuznetsov. * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net: (62 commits) sfc: Track RPS flow IDs per channel instead of per function usbnet: smsc95xx: fix link detection for disabled autonegotiation virtio_net: fix virtnet_open and virtnet_probe competing for try_fill_recv bnx2x: avoid leaking memory on bnx2x_init_one() failures fou: fix IPv6 Kconfig options openvswitch: update checksum in {push,pop}_mpls sctp: sctp_diag should dump sctp socket type net: fec: update dirty_tx even if no skb vlan: Propagate MAC address to VLANs atm: iphase: off by one in rx_pkt() atm: firestream: add more reserved strings vxlan: Accept user specified MTU value when create new vxlan link net: pktgen: Call destroy_hrtimer_on_stack() timer: Export destroy_hrtimer_on_stack() net: l2tp: Make l2tp_ip6 namespace aware Documentation: ip-sysctl.txt: clarify secure_redirects sfc: use flow dissector helpers for aRFS ieee802154: fix logic error in ieee802154_llsec_parse_dev_addr net: nps_enet: Disable interrupts before napi reschedule net/lapb: tuse %*ph to dump buffers ...
Diffstat (limited to 'Documentation')