libnet4r 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +15 -0
- data/LICENSE +28 -0
- data/README +187 -0
- data/Rakefile +110 -0
- data/ext/extconf.rb +60 -0
- data/ext/libnet.c +705 -0
- data/ext/libnet_arp.c +152 -0
- data/ext/libnet_ethernet.c +115 -0
- data/ext/libnet_ipv4.c +140 -0
- data/ext/libnet_ipv6.c +138 -0
- data/ext/libnet_udp.c +112 -0
- data/ext/libnet_vlan.c +131 -0
- data/lib/libnet4r/header.rb +609 -0
- data/lib/libnet4r/helpers.rb +19 -0
- data/lib/libnet4r/libnet.rb +39 -0
- data/libnet/CVS/Entries +24 -0
- data/libnet/CVS/Repository +1 -0
- data/libnet/CVS/Root +1 -0
- data/libnet/Makefile.am +15 -0
- data/libnet/Makefile.am.common +10 -0
- data/libnet/Makefile.in +443 -0
- data/libnet/README +21 -0
- data/libnet/VERSION +1 -0
- data/libnet/acconfig.h +36 -0
- data/libnet/acinclude.m4 +463 -0
- data/libnet/aclocal.m4 +1337 -0
- data/libnet/autom4te.cache/CVS/Entries +1 -0
- data/libnet/autom4te.cache/CVS/Repository +1 -0
- data/libnet/autom4te.cache/CVS/Root +1 -0
- data/libnet/autom4te.cache/output.0 +6225 -0
- data/libnet/autom4te.cache/requests +111 -0
- data/libnet/autom4te.cache/traces.0 +272 -0
- data/libnet/config.guess +1314 -0
- data/libnet/config.sub +1410 -0
- data/libnet/configure +6225 -0
- data/libnet/configure.in +235 -0
- data/libnet/doc/BUGS +19 -0
- data/libnet/doc/CHANGELOG +527 -0
- data/libnet/doc/CONTRIB +53 -0
- data/libnet/doc/COPYING +31 -0
- data/libnet/doc/CVS/Entries +12 -0
- data/libnet/doc/CVS/Repository +1 -0
- data/libnet/doc/CVS/Root +1 -0
- data/libnet/doc/DESIGN_NOTES +134 -0
- data/libnet/doc/MIGRATION +172 -0
- data/libnet/doc/PACKET_BUILDING +161 -0
- data/libnet/doc/PORTED +45 -0
- data/libnet/doc/RAWSOCKET_NON_SEQUITUR +41 -0
- data/libnet/doc/TODO +96 -0
- data/libnet/doc/html/acconfig_8h-source.html +49 -0
- data/libnet/doc/html/annotated.html +17 -0
- data/libnet/doc/html/bpf_8h-source.html +277 -0
- data/libnet/doc/html/config_8h-source.html +125 -0
- data/libnet/doc/html/doxygen.css +169 -0
- data/libnet/doc/html/doxygen.png +0 -0
- data/libnet/doc/html/files.html +29 -0
- data/libnet/doc/html/functions.html +26 -0
- data/libnet/doc/html/functions_vars.html +26 -0
- data/libnet/doc/html/getopt_8h-source.html +97 -0
- data/libnet/doc/html/globals.html +219 -0
- data/libnet/doc/html/globals_defs.html +104 -0
- data/libnet/doc/html/globals_func.html +136 -0
- data/libnet/doc/html/gnuc_8h-source.html +56 -0
- data/libnet/doc/html/graph_legend.dot +22 -0
- data/libnet/doc/html/graph_legend.html +75 -0
- data/libnet/doc/html/ifaddrlist_8h-source.html +65 -0
- data/libnet/doc/html/in__systm_8h-source.html +90 -0
- data/libnet/doc/html/index.html +17 -0
- data/libnet/doc/html/libnet-asn1_8h-source.html +268 -0
- data/libnet/doc/html/libnet-functions_8h-source.html +742 -0
- data/libnet/doc/html/libnet-functions_8h.html +8844 -0
- data/libnet/doc/html/libnet-headers_8h-source.html +1655 -0
- data/libnet/doc/html/libnet-headers_8h.html +3053 -0
- data/libnet/doc/html/libnet-macros_8h-source.html +161 -0
- data/libnet/doc/html/libnet-macros_8h.html +358 -0
- data/libnet/doc/html/libnet-structures_8h-source.html +233 -0
- data/libnet/doc/html/libnet-types_8h-source.html +58 -0
- data/libnet/doc/html/libnet_8h-source.html +119 -0
- data/libnet/doc/html/libnet_8h.html +24 -0
- data/libnet/doc/html/structlibnet__802__1q__hdr.html +145 -0
- data/libnet/doc/html/structlibnet__802__1x__hdr.html +97 -0
- data/libnet/doc/libnet.doxygen.conf +1102 -0
- data/libnet/doc/man/CVS/Entries +1 -0
- data/libnet/doc/man/CVS/Repository +1 -0
- data/libnet/doc/man/CVS/Root +1 -0
- data/libnet/doc/man/man3/libnet-functions.h.3 +3136 -0
- data/libnet/doc/man/man3/libnet-headers.h.3 +1872 -0
- data/libnet/doc/man/man3/libnet-macros.h.3 +172 -0
- data/libnet/doc/man/man3/libnet.h.3 +17 -0
- data/libnet/doc/man/man3/libnet_802_1q_hdr.3 +53 -0
- data/libnet/doc/man/man3/libnet_802_1x_hdr.3 +41 -0
- data/libnet/include/CVS/Entries +10 -0
- data/libnet/include/CVS/Repository +1 -0
- data/libnet/include/CVS/Root +1 -0
- data/libnet/include/Makefile.am +7 -0
- data/libnet/include/Makefile.in +395 -0
- data/libnet/include/bpf.h +264 -0
- data/libnet/include/config.h.in +118 -0
- data/libnet/include/gnuc.h +43 -0
- data/libnet/include/ifaddrlist.h +52 -0
- data/libnet/include/libnet/CVS/Entries +9 -0
- data/libnet/include/libnet/CVS/Repository +1 -0
- data/libnet/include/libnet/CVS/Root +1 -0
- data/libnet/include/libnet/Makefile.am +12 -0
- data/libnet/include/libnet/Makefile.in +294 -0
- data/libnet/include/libnet/libnet-asn1.h +255 -0
- data/libnet/include/libnet/libnet-functions.h +2157 -0
- data/libnet/include/libnet/libnet-headers.h +1662 -0
- data/libnet/include/libnet/libnet-macros.h +186 -0
- data/libnet/include/libnet/libnet-structures.h +222 -0
- data/libnet/include/libnet/libnet-types.h +45 -0
- data/libnet/include/libnet.h.in +132 -0
- data/libnet/include/stamp-h.in +1 -0
- data/libnet/include/win32/CVS/Entries +5 -0
- data/libnet/include/win32/CVS/Repository +1 -0
- data/libnet/include/win32/CVS/Root +1 -0
- data/libnet/include/win32/config.h +112 -0
- data/libnet/include/win32/getopt.h +84 -0
- data/libnet/include/win32/in_systm.h +77 -0
- data/libnet/include/win32/libnet.h +106 -0
- data/libnet/install-sh +250 -0
- data/libnet/libnet-config.in +62 -0
- data/libnet/libnet.doxygen.conf +1102 -0
- data/libnet/man/CVS/Entries +1 -0
- data/libnet/man/CVS/Repository +1 -0
- data/libnet/man/CVS/Root +1 -0
- data/libnet/missing +283 -0
- data/libnet/mkinstalldirs +40 -0
- data/libnet/sample/CVS/Entries +47 -0
- data/libnet/sample/CVS/Repository +1 -0
- data/libnet/sample/CVS/Root +1 -0
- data/libnet/sample/Makefile.am +63 -0
- data/libnet/sample/Makefile.in +729 -0
- data/libnet/sample/arp-new.c +144 -0
- data/libnet/sample/arp.c +151 -0
- data/libnet/sample/bgp4_hdr.c +225 -0
- data/libnet/sample/bgp4_notification.c +242 -0
- data/libnet/sample/bgp4_open.c +266 -0
- data/libnet/sample/bgp4_update.c +337 -0
- data/libnet/sample/cdp.c +187 -0
- data/libnet/sample/dhcp_discover.c +257 -0
- data/libnet/sample/dns.c +260 -0
- data/libnet/sample/dot1x.c +113 -0
- data/libnet/sample/fddi_tcp1.c +213 -0
- data/libnet/sample/fddi_tcp2.c +209 -0
- data/libnet/sample/get_addr.c +112 -0
- data/libnet/sample/gre.c +410 -0
- data/libnet/sample/icmp6_echoreq.c +184 -0
- data/libnet/sample/icmp_echo_cq.c +201 -0
- data/libnet/sample/icmp_redirect.c +200 -0
- data/libnet/sample/icmp_timeexceed.c +190 -0
- data/libnet/sample/icmp_timestamp.c +157 -0
- data/libnet/sample/icmp_unreach.c +204 -0
- data/libnet/sample/ieee.c +177 -0
- data/libnet/sample/ip_link.c +201 -0
- data/libnet/sample/ip_raw.c +180 -0
- data/libnet/sample/isl.c +167 -0
- data/libnet/sample/libnet_test.h +60 -0
- data/libnet/sample/mpls.c +251 -0
- data/libnet/sample/ntp.c +193 -0
- data/libnet/sample/ospf_hello.c +179 -0
- data/libnet/sample/ospf_lsa.c +190 -0
- data/libnet/sample/ping_of_death.c +171 -0
- data/libnet/sample/rpc_tcp.c +214 -0
- data/libnet/sample/rpc_udp.c +213 -0
- data/libnet/sample/sebek.c +299 -0
- data/libnet/sample/smurf.c +194 -0
- data/libnet/sample/stp.c +227 -0
- data/libnet/sample/synflood.c +200 -0
- data/libnet/sample/synflood6.c +209 -0
- data/libnet/sample/synflood6_frag.c +234 -0
- data/libnet/sample/tcp1.c +227 -0
- data/libnet/sample/tcp2.c +192 -0
- data/libnet/sample/tftp.c +207 -0
- data/libnet/sample/tring_tcp1.c +214 -0
- data/libnet/sample/tring_tcp2.c +210 -0
- data/libnet/sample/udp1.c +223 -0
- data/libnet/sample/udp2.c +232 -0
- data/libnet/sample/win32/CVS/Entries +9 -0
- data/libnet/sample/win32/CVS/Repository +1 -0
- data/libnet/sample/win32/CVS/Root +1 -0
- data/libnet/sample/win32/arp/CVS/Entries +2 -0
- data/libnet/sample/win32/arp/CVS/Repository +1 -0
- data/libnet/sample/win32/arp/CVS/Root +1 -0
- data/libnet/sample/win32/arp/arp.vcproj +136 -0
- data/libnet/sample/win32/cdp/CVS/Entries +2 -0
- data/libnet/sample/win32/cdp/CVS/Repository +1 -0
- data/libnet/sample/win32/cdp/CVS/Root +1 -0
- data/libnet/sample/win32/cdp/cdp.vcproj +136 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Entries +2 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Repository +1 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Root +1 -0
- data/libnet/sample/win32/dhcp_discover/dhcp_discover.vcproj +139 -0
- data/libnet/sample/win32/dns/CVS/Entries +2 -0
- data/libnet/sample/win32/dns/CVS/Repository +1 -0
- data/libnet/sample/win32/dns/CVS/Root +1 -0
- data/libnet/sample/win32/dns/dns.vcproj +139 -0
- data/libnet/sample/win32/get_addr/CVS/Entries +2 -0
- data/libnet/sample/win32/get_addr/CVS/Repository +1 -0
- data/libnet/sample/win32/get_addr/CVS/Root +1 -0
- data/libnet/sample/win32/get_addr/get_addr.vcproj +139 -0
- data/libnet/sample/win32/getopt.c +121 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Entries +2 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Repository +1 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Root +1 -0
- data/libnet/sample/win32/icmp_echo_cq/icmp_echo_cq.vcproj +139 -0
- data/libnet/sample/win32/tcp1/CVS/Entries +2 -0
- data/libnet/sample/win32/tcp1/CVS/Repository +1 -0
- data/libnet/sample/win32/tcp1/CVS/Root +1 -0
- data/libnet/sample/win32/tcp1/tcp1.vcproj +142 -0
- data/libnet/sample/win32/udp1/CVS/Entries +3 -0
- data/libnet/sample/win32/udp1/CVS/Repository +1 -0
- data/libnet/sample/win32/udp1/CVS/Root +1 -0
- data/libnet/sample/win32/udp1/dns.vcproj +125 -0
- data/libnet/sample/win32/udp1/udp1.vcproj +139 -0
- data/libnet/src/CVS/Entries +60 -0
- data/libnet/src/CVS/Repository +1 -0
- data/libnet/src/CVS/Root +1 -0
- data/libnet/src/Makefile.am +71 -0
- data/libnet/src/Makefile.in +428 -0
- data/libnet/src/libnet_advanced.c +136 -0
- data/libnet/src/libnet_asn1.c +436 -0
- data/libnet/src/libnet_build_802.1q.c +115 -0
- data/libnet/src/libnet_build_802.1x.c +103 -0
- data/libnet/src/libnet_build_802.2.c +167 -0
- data/libnet/src/libnet_build_802.3.c +101 -0
- data/libnet/src/libnet_build_arp.c +169 -0
- data/libnet/src/libnet_build_bgp.c +350 -0
- data/libnet/src/libnet_build_cdp.c +191 -0
- data/libnet/src/libnet_build_data.c +90 -0
- data/libnet/src/libnet_build_dhcp.c +156 -0
- data/libnet/src/libnet_build_dns.c +129 -0
- data/libnet/src/libnet_build_ethernet.c +173 -0
- data/libnet/src/libnet_build_fddi.c +191 -0
- data/libnet/src/libnet_build_gre.c +427 -0
- data/libnet/src/libnet_build_icmp.c +437 -0
- data/libnet/src/libnet_build_igmp.c +112 -0
- data/libnet/src/libnet_build_ip.c +892 -0
- data/libnet/src/libnet_build_ipsec.c +232 -0
- data/libnet/src/libnet_build_isl.c +113 -0
- data/libnet/src/libnet_build_link.c +90 -0
- data/libnet/src/libnet_build_mpls.c +112 -0
- data/libnet/src/libnet_build_ntp.c +121 -0
- data/libnet/src/libnet_build_ospf.c +699 -0
- data/libnet/src/libnet_build_rip.c +108 -0
- data/libnet/src/libnet_build_rpc.c +138 -0
- data/libnet/src/libnet_build_sebek.c +108 -0
- data/libnet/src/libnet_build_snmp.c +52 -0
- data/libnet/src/libnet_build_stp.c +222 -0
- data/libnet/src/libnet_build_tcp.c +365 -0
- data/libnet/src/libnet_build_token_ring.c +193 -0
- data/libnet/src/libnet_build_udp.c +111 -0
- data/libnet/src/libnet_build_vrrp.c +117 -0
- data/libnet/src/libnet_checksum.c +376 -0
- data/libnet/src/libnet_cq.c +395 -0
- data/libnet/src/libnet_crc.c +113 -0
- data/libnet/src/libnet_dll.c +47 -0
- data/libnet/src/libnet_error.c +55 -0
- data/libnet/src/libnet_if_addr.c +415 -0
- data/libnet/src/libnet_init.c +234 -0
- data/libnet/src/libnet_internal.c +310 -0
- data/libnet/src/libnet_link_bpf.c +348 -0
- data/libnet/src/libnet_link_dlpi.c +785 -0
- data/libnet/src/libnet_link_linux.c +310 -0
- data/libnet/src/libnet_link_nit.c +125 -0
- data/libnet/src/libnet_link_none.c +66 -0
- data/libnet/src/libnet_link_pf.c +179 -0
- data/libnet/src/libnet_link_snit.c +149 -0
- data/libnet/src/libnet_link_snoop.c +166 -0
- data/libnet/src/libnet_link_win32.c +346 -0
- data/libnet/src/libnet_pblock.c +511 -0
- data/libnet/src/libnet_port_list.c +295 -0
- data/libnet/src/libnet_prand.c +106 -0
- data/libnet/src/libnet_raw.c +257 -0
- data/libnet/src/libnet_resolve.c +414 -0
- data/libnet/src/libnet_version.c +54 -0
- data/libnet/src/libnet_write.c +502 -0
- data/libnet/version.h.in +6 -0
- data/libnet/win32/CVS/Entries +15 -0
- data/libnet/win32/CVS/Repository +1 -0
- data/libnet/win32/CVS/Root +1 -0
- data/libnet/win32/Libnet-1.1.1-2002.sln +77 -0
- data/libnet/win32/Libnet-1.1.1-2003.ncb +0 -0
- data/libnet/win32/Libnet-1.1.1-2003.sln +84 -0
- data/libnet/win32/Libnet-1.1.1-2003.suo +0 -0
- data/libnet/win32/Libnet-1.1.1.vcproj +311 -0
- data/libnet/win32/Libnet-latest.ncb +0 -0
- data/libnet/win32/Libnet-latest.opt +0 -0
- data/libnet/win32/Libnet-latest.sln +77 -0
- data/libnet/win32/Libnet-latest.suo +0 -0
- data/libnet/win32/Libnet-latest.vcproj +311 -0
- data/libnet/win32/Libnet.dsp +337 -0
- data/libnet/win32/Libnet.dsw +32 -0
- data/libnet/win32/README.txt +57 -0
- data/libnet/win32/libnet_dll.def +164 -0
- data/test/tc_arp.rb +169 -0
- data/test/tc_class.rb +219 -0
- data/test/tc_ethernet.rb +97 -0
- data/test/tc_header.rb +163 -0
- data/test/tc_init.rb +25 -0
- data/test/tc_ipv4.rb +219 -0
- data/test/tc_ipv6.rb +235 -0
- data/test/tc_udp.rb +229 -0
- data/test/tc_vlan.rb +118 -0
- data/test/ts_all.rb +15 -0
- metadata +401 -0
@@ -0,0 +1,223 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: udp1.c,v 1.6 2004/03/01 20:26:12 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* Build a UDP packet
|
6
|
+
*
|
7
|
+
* Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
* Redistribution and use in source and binary forms, with or without
|
11
|
+
* modification, are permitted provided that the following conditions
|
12
|
+
* are met:
|
13
|
+
* 1. Redistributions of source code must retain the above copyright
|
14
|
+
* notice, this list of conditions and the following disclaimer.
|
15
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
16
|
+
* notice, this list of conditions and the following disclaimer in the
|
17
|
+
* documentation and/or other materials provided with the distribution.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
20
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
22
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
25
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
26
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
27
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
28
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
29
|
+
* SUCH DAMAGE.
|
30
|
+
*
|
31
|
+
*/
|
32
|
+
|
33
|
+
#if (HAVE_CONFIG_H)
|
34
|
+
#include "../include/config.h"
|
35
|
+
#endif
|
36
|
+
#include "./libnet_test.h"
|
37
|
+
#ifdef __WIN32__
|
38
|
+
#include "../include/win32/getopt.h"
|
39
|
+
#endif
|
40
|
+
|
41
|
+
int
|
42
|
+
main(int argc, char *argv[])
|
43
|
+
{
|
44
|
+
int c, i, j, build_ip;
|
45
|
+
u_char *cp;
|
46
|
+
libnet_t *l;
|
47
|
+
libnet_ptag_t ip, ipo;
|
48
|
+
libnet_ptag_t udp;
|
49
|
+
char *payload;
|
50
|
+
u_short payload_s;
|
51
|
+
struct libnet_stats ls;
|
52
|
+
u_long src_ip, dst_ip;
|
53
|
+
u_short src_prt, dst_prt;
|
54
|
+
u_char opt[20];
|
55
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
56
|
+
|
57
|
+
printf("libnet 1.1 packet shaping: UDP + IP options[raw]\n");
|
58
|
+
|
59
|
+
/*
|
60
|
+
* Initialize the library. Root priviledges are required.
|
61
|
+
*/
|
62
|
+
l = libnet_init(
|
63
|
+
LIBNET_RAW4, /* injection type */
|
64
|
+
NULL, /* network interface */
|
65
|
+
errbuf); /* errbuf */
|
66
|
+
|
67
|
+
if (l == NULL)
|
68
|
+
{
|
69
|
+
fprintf(stderr, "libnet_init() failed: %s\n", errbuf);
|
70
|
+
exit(EXIT_FAILURE);
|
71
|
+
}
|
72
|
+
|
73
|
+
src_ip = 0;
|
74
|
+
dst_ip = 0;
|
75
|
+
src_prt = 0;
|
76
|
+
dst_prt = 0;
|
77
|
+
payload = NULL;
|
78
|
+
payload_s = 0;
|
79
|
+
ip = ipo = udp = 0;
|
80
|
+
while ((c = getopt(argc, argv, "d:s:p:")) != EOF)
|
81
|
+
{
|
82
|
+
switch (c)
|
83
|
+
{
|
84
|
+
/*
|
85
|
+
* We expect the input to be of the form `ip.ip.ip.ip.port`. We
|
86
|
+
* point cp to the last dot of the IP address/port string and
|
87
|
+
* then seperate them with a NULL byte. The optarg now points to
|
88
|
+
* just the IP address, and cp points to the port.
|
89
|
+
*/
|
90
|
+
case 'd':
|
91
|
+
if (!(cp = strrchr(optarg, '.')))
|
92
|
+
{
|
93
|
+
usage(argv[0]);
|
94
|
+
}
|
95
|
+
*cp++ = 0;
|
96
|
+
dst_prt = (u_short)atoi(cp);
|
97
|
+
if ((dst_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
98
|
+
{
|
99
|
+
fprintf(stderr, "Bad destination IP address: %s\n", optarg); exit(EXIT_FAILURE);
|
100
|
+
}
|
101
|
+
break;
|
102
|
+
case 's':
|
103
|
+
if (!(cp = strrchr(optarg, '.')))
|
104
|
+
{
|
105
|
+
usage(argv[0]);
|
106
|
+
}
|
107
|
+
*cp++ = 0;
|
108
|
+
src_prt = (u_short)atoi(cp);
|
109
|
+
if ((src_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
110
|
+
{
|
111
|
+
fprintf(stderr, "Bad source IP address: %s\n", optarg);
|
112
|
+
exit(EXIT_FAILURE);
|
113
|
+
}
|
114
|
+
break;
|
115
|
+
case 'p':
|
116
|
+
payload = optarg;
|
117
|
+
payload_s = strlen(payload);
|
118
|
+
break;
|
119
|
+
default:
|
120
|
+
exit(EXIT_FAILURE);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
if (!src_ip || !src_prt || !dst_ip || !dst_prt)
|
125
|
+
{
|
126
|
+
usage(argv[0]);
|
127
|
+
exit(EXIT_FAILURE);
|
128
|
+
}
|
129
|
+
|
130
|
+
for (build_ip = 0, i = 0; i < 10; i++)
|
131
|
+
{
|
132
|
+
udp = libnet_build_udp(
|
133
|
+
src_prt, /* source port */
|
134
|
+
dst_prt + i, /* destination port */
|
135
|
+
LIBNET_UDP_H + payload_s, /* packet length */
|
136
|
+
0, /* checksum */
|
137
|
+
payload, /* payload */
|
138
|
+
payload_s, /* payload size */
|
139
|
+
l, /* libnet handle */
|
140
|
+
udp); /* libnet id */
|
141
|
+
if (udp == -1)
|
142
|
+
{
|
143
|
+
fprintf(stderr, "Can't build UDP header: %s\n", libnet_geterror(l));
|
144
|
+
goto bad;
|
145
|
+
}
|
146
|
+
|
147
|
+
if (1)
|
148
|
+
{
|
149
|
+
build_ip = 0;
|
150
|
+
/* this is not a legal options string */
|
151
|
+
for (j = 0; j < 20; j++)
|
152
|
+
{
|
153
|
+
opt[j] = libnet_get_prand(LIBNET_PR2);
|
154
|
+
}
|
155
|
+
ipo = libnet_build_ipv4_options(
|
156
|
+
opt,
|
157
|
+
20,
|
158
|
+
l,
|
159
|
+
ipo);
|
160
|
+
if (ipo == -1)
|
161
|
+
{
|
162
|
+
fprintf(stderr, "Can't build IP options: %s\n", libnet_geterror(l));
|
163
|
+
goto bad;
|
164
|
+
}
|
165
|
+
|
166
|
+
ip = libnet_build_ipv4(
|
167
|
+
LIBNET_IPV4_H + 20 + payload_s + LIBNET_UDP_H, /* length */
|
168
|
+
0, /* TOS */
|
169
|
+
242, /* IP ID */
|
170
|
+
0, /* IP Frag */
|
171
|
+
64, /* TTL */
|
172
|
+
IPPROTO_UDP, /* protocol */
|
173
|
+
0, /* checksum */
|
174
|
+
src_ip,
|
175
|
+
dst_ip,
|
176
|
+
NULL, /* payload */
|
177
|
+
0, /* payload size */
|
178
|
+
l, /* libnet handle */
|
179
|
+
ip); /* libnet id */
|
180
|
+
if (ip == -1)
|
181
|
+
{
|
182
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
183
|
+
goto bad;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
|
187
|
+
/*
|
188
|
+
* Write it to the wire.
|
189
|
+
*/
|
190
|
+
fprintf(stderr, "%d byte packet, ready to go\n",
|
191
|
+
libnet_getpacket_size(l));
|
192
|
+
c = libnet_write(l);
|
193
|
+
if (c == -1)
|
194
|
+
{
|
195
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
196
|
+
goto bad;
|
197
|
+
}
|
198
|
+
else
|
199
|
+
{
|
200
|
+
fprintf(stderr, "Wrote %d byte UDP packet; check the wire.\n", c);
|
201
|
+
}
|
202
|
+
}
|
203
|
+
libnet_stats(l, &ls);
|
204
|
+
fprintf(stderr, "Packets sent: %lld\n"
|
205
|
+
"Packet errors: %lld\n"
|
206
|
+
"Bytes written: %lld\n",
|
207
|
+
ls.packets_sent, ls.packet_errors, ls.bytes_written);
|
208
|
+
libnet_destroy(l);
|
209
|
+
return (EXIT_SUCCESS);
|
210
|
+
bad:
|
211
|
+
libnet_destroy(l);
|
212
|
+
return (EXIT_FAILURE);
|
213
|
+
}
|
214
|
+
|
215
|
+
void
|
216
|
+
usage(char *name)
|
217
|
+
{
|
218
|
+
fprintf(stderr,
|
219
|
+
"usage: %s -s source_ip.source_port -d destination_ip.destination_port"
|
220
|
+
" [-p payload]\n",
|
221
|
+
name);
|
222
|
+
}
|
223
|
+
/* EOF */
|
@@ -0,0 +1,232 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: udp2.c,v 1.6 2004/03/01 20:26:12 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* Build a UDP packet using port list chains
|
6
|
+
*
|
7
|
+
* Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
* Redistribution and use in source and binary forms, with or without
|
11
|
+
* modification, are permitted provided that the following conditions
|
12
|
+
* are met:
|
13
|
+
* 1. Redistributions of source code must retain the above copyright
|
14
|
+
* notice, this list of conditions and the following disclaimer.
|
15
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
16
|
+
* notice, this list of conditions and the following disclaimer in the
|
17
|
+
* documentation and/or other materials provided with the distribution.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
20
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
22
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
25
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
26
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
27
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
28
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
29
|
+
* SUCH DAMAGE.
|
30
|
+
*
|
31
|
+
*/
|
32
|
+
|
33
|
+
#if (HAVE_CONFIG_H)
|
34
|
+
#include "../include/config.h"
|
35
|
+
#endif
|
36
|
+
#include "./libnet_test.h"
|
37
|
+
|
38
|
+
|
39
|
+
int
|
40
|
+
main(int argc, char **argv)
|
41
|
+
{
|
42
|
+
int c, build_ip;
|
43
|
+
struct timeval r;
|
44
|
+
struct timeval s;
|
45
|
+
struct timeval e;
|
46
|
+
libnet_t *l;
|
47
|
+
libnet_ptag_t udp;
|
48
|
+
char *payload;
|
49
|
+
libnet_ptag_t t;
|
50
|
+
struct libnet_stats ls;
|
51
|
+
u_int16_t payload_s;
|
52
|
+
u_int32_t src_ip, dst_ip;
|
53
|
+
u_int16_t bport, eport, cport;
|
54
|
+
libnet_plist_t plist, *plist_p;
|
55
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
56
|
+
|
57
|
+
printf("libnet 1.1.2 packet shaping: UDP2[link]\n");
|
58
|
+
|
59
|
+
l = libnet_init(
|
60
|
+
LIBNET_LINK, /* injection type */
|
61
|
+
NULL, /* network interface */
|
62
|
+
errbuf); /* errbuf */
|
63
|
+
|
64
|
+
if (l == NULL)
|
65
|
+
{
|
66
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
67
|
+
exit(EXIT_FAILURE);
|
68
|
+
}
|
69
|
+
|
70
|
+
src_ip = 0;
|
71
|
+
dst_ip = 0;
|
72
|
+
payload = NULL;
|
73
|
+
payload_s = 0;
|
74
|
+
plist_p = NULL;
|
75
|
+
while ((c = getopt(argc, argv, "d:s:p:P:")) != EOF)
|
76
|
+
{
|
77
|
+
switch (c)
|
78
|
+
{
|
79
|
+
case 'd':
|
80
|
+
if ((dst_ip = libnet_name2addr4(l, optarg,
|
81
|
+
LIBNET_RESOLVE)) == -1)
|
82
|
+
{
|
83
|
+
fprintf(stderr, "Bad destination IP address: %s\n", optarg);
|
84
|
+
exit(1);
|
85
|
+
}
|
86
|
+
break;
|
87
|
+
case 's':
|
88
|
+
if ((src_ip = libnet_name2addr4(l, optarg,
|
89
|
+
LIBNET_RESOLVE)) == -1)
|
90
|
+
{
|
91
|
+
fprintf(stderr, "Bad source IP address: %s\n", optarg);
|
92
|
+
exit(1);
|
93
|
+
}
|
94
|
+
break;
|
95
|
+
case 'P':
|
96
|
+
plist_p = &plist;
|
97
|
+
if (libnet_plist_chain_new(l, &plist_p, optarg) == -1)
|
98
|
+
{
|
99
|
+
fprintf(stderr, "Bad token in port list: %s\n",
|
100
|
+
libnet_geterror(l));
|
101
|
+
exit(1);
|
102
|
+
}
|
103
|
+
break;
|
104
|
+
case 'p':
|
105
|
+
payload = optarg;
|
106
|
+
payload_s = strlen(payload);
|
107
|
+
break;
|
108
|
+
default:
|
109
|
+
usage(argv[0]);
|
110
|
+
exit(EXIT_FAILURE);
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
if (!src_ip || !dst_ip || !plist_p)
|
115
|
+
{
|
116
|
+
usage(argv[0]);
|
117
|
+
exit(EXIT_FAILURE);
|
118
|
+
}
|
119
|
+
|
120
|
+
udp = 0;
|
121
|
+
#if !(__WIN32__)
|
122
|
+
gettimeofday(&s, NULL);
|
123
|
+
#else
|
124
|
+
/* This obviously is not as good - but it compiles now. */
|
125
|
+
s.tv_sec = time(NULL);
|
126
|
+
s.tv_usec = 0;
|
127
|
+
#endif
|
128
|
+
|
129
|
+
build_ip = 1;
|
130
|
+
while (libnet_plist_chain_next_pair(plist_p, &bport, &eport))
|
131
|
+
{
|
132
|
+
while (!(bport > eport) && bport != 0)
|
133
|
+
{
|
134
|
+
cport = bport++;
|
135
|
+
udp = libnet_build_udp(
|
136
|
+
1025, /* source port */
|
137
|
+
cport, /* destination port */
|
138
|
+
LIBNET_UDP_H + payload_s, /* packet size */
|
139
|
+
0, /* checksum */
|
140
|
+
payload, /* payload */
|
141
|
+
payload_s, /* payload size */
|
142
|
+
l, /* libnet handle */
|
143
|
+
udp); /* libnet id */
|
144
|
+
if (udp == -1)
|
145
|
+
{
|
146
|
+
fprintf(stderr, "Can't build UDP header (at port %d): %s\n",
|
147
|
+
cport, libnet_geterror(l));
|
148
|
+
goto bad;
|
149
|
+
}
|
150
|
+
if (build_ip)
|
151
|
+
{
|
152
|
+
build_ip = 0;
|
153
|
+
t = libnet_build_ipv4(
|
154
|
+
LIBNET_IPV4_H + LIBNET_UDP_H + payload_s, /* length */
|
155
|
+
0, /* TOS */
|
156
|
+
242, /* IP ID */
|
157
|
+
0, /* IP Frag */
|
158
|
+
64, /* TTL */
|
159
|
+
IPPROTO_UDP, /* protocol */
|
160
|
+
0, /* checksum */
|
161
|
+
src_ip, /* source IP */
|
162
|
+
dst_ip, /* destination IP */
|
163
|
+
NULL, /* payload */
|
164
|
+
0, /* payload size */
|
165
|
+
l, /* libnet handle */
|
166
|
+
0);
|
167
|
+
if (t == -1)
|
168
|
+
{
|
169
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
170
|
+
goto bad;
|
171
|
+
}
|
172
|
+
|
173
|
+
t = libnet_build_ethernet(
|
174
|
+
enet_dst, /* ethernet dest */
|
175
|
+
enet_src, /* ethernet source */
|
176
|
+
ETHERTYPE_IP, /* protocol type */
|
177
|
+
NULL, /* payload */
|
178
|
+
0, /* payload size */
|
179
|
+
l, /* libnet handle */
|
180
|
+
0);
|
181
|
+
if (t == -1)
|
182
|
+
{
|
183
|
+
fprintf(stderr, "Can't build ethernet header: %s\n",
|
184
|
+
libnet_geterror(l));
|
185
|
+
goto bad;
|
186
|
+
}
|
187
|
+
}
|
188
|
+
c = libnet_write(l);
|
189
|
+
if (c == -1)
|
190
|
+
{
|
191
|
+
fprintf(stderr, "write error: %s\n", libnet_geterror(l));
|
192
|
+
}
|
193
|
+
else
|
194
|
+
{
|
195
|
+
fprintf(stderr, "wrote %d byte UDP packet to port %d\r", c,
|
196
|
+
cport);
|
197
|
+
}
|
198
|
+
}
|
199
|
+
fprintf(stderr, "\n");
|
200
|
+
}
|
201
|
+
|
202
|
+
#if !(__WIN32__)
|
203
|
+
gettimeofday(&e, NULL);
|
204
|
+
#else
|
205
|
+
/* This obviously is not as good - but it compiles now. */
|
206
|
+
s.tv_sec = time(NULL);
|
207
|
+
s.tv_usec = 0;
|
208
|
+
#endif
|
209
|
+
|
210
|
+
libnet_timersub(&e, &s, &r);
|
211
|
+
fprintf(stderr, "Total time spent in loop: %d.%d\n", r.tv_sec, r.tv_usec);
|
212
|
+
|
213
|
+
libnet_stats(l, &ls);
|
214
|
+
fprintf(stderr, "Packets sent: %lld\n"
|
215
|
+
"Packet errors: %lld\n"
|
216
|
+
"Bytes written: %lld\n",
|
217
|
+
ls.packets_sent, ls.packet_errors, ls.bytes_written);
|
218
|
+
libnet_destroy(l);
|
219
|
+
return (EXIT_SUCCESS);
|
220
|
+
bad:
|
221
|
+
libnet_destroy(l);
|
222
|
+
return (EXIT_FAILURE);
|
223
|
+
}
|
224
|
+
|
225
|
+
|
226
|
+
void
|
227
|
+
usage(char *name)
|
228
|
+
{
|
229
|
+
fprintf(stderr, "usage: %s -s s_ip -d d_ip -P port list [-p payload]\n", name);
|
230
|
+
}
|
231
|
+
|
232
|
+
/* EOF */
|
@@ -0,0 +1 @@
|
|
1
|
+
/usr/local/CVS/libnet/sample/win32
|
@@ -0,0 +1 @@
|
|
1
|
+
mike@66.234.207.232:/usr/local/CVS
|
@@ -0,0 +1 @@
|
|
1
|
+
/usr/local/CVS/libnet/sample/win32/arp
|
@@ -0,0 +1 @@
|
|
1
|
+
mike@66.234.207.232:/usr/local/CVS
|
@@ -0,0 +1,136 @@
|
|
1
|
+
<?xml version="1.0" encoding="Windows-1252"?>
|
2
|
+
<VisualStudioProject
|
3
|
+
ProjectType="Visual C++"
|
4
|
+
Version="7.10"
|
5
|
+
Name="arp"
|
6
|
+
ProjectGUID="{8DB5763E-7AA2-43BE-9D7A-1F4138DEA904}"
|
7
|
+
Keyword="Win32Proj">
|
8
|
+
<Platforms>
|
9
|
+
<Platform
|
10
|
+
Name="Win32"/>
|
11
|
+
</Platforms>
|
12
|
+
<Configurations>
|
13
|
+
<Configuration
|
14
|
+
Name="Debug|Win32"
|
15
|
+
OutputDirectory="Debug"
|
16
|
+
IntermediateDirectory="Debug"
|
17
|
+
ConfigurationType="1"
|
18
|
+
CharacterSet="2">
|
19
|
+
<Tool
|
20
|
+
Name="VCCLCompilerTool"
|
21
|
+
Optimization="0"
|
22
|
+
AdditionalIncludeDirectories="..\..\..\include; ..\..\..\..\winpcap\wpcap\libpcap\Win32\Include"
|
23
|
+
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
24
|
+
MinimalRebuild="TRUE"
|
25
|
+
BasicRuntimeChecks="3"
|
26
|
+
RuntimeLibrary="5"
|
27
|
+
UsePrecompiledHeader="0"
|
28
|
+
WarningLevel="3"
|
29
|
+
Detect64BitPortabilityProblems="TRUE"
|
30
|
+
DebugInformationFormat="4"/>
|
31
|
+
<Tool
|
32
|
+
Name="VCCustomBuildTool"/>
|
33
|
+
<Tool
|
34
|
+
Name="VCLinkerTool"
|
35
|
+
OutputFile="$(OutDir)/arp.exe"
|
36
|
+
LinkIncremental="2"
|
37
|
+
GenerateDebugInformation="TRUE"
|
38
|
+
ProgramDatabaseFile="$(OutDir)/arp.pdb"
|
39
|
+
SubSystem="1"
|
40
|
+
TargetMachine="1"/>
|
41
|
+
<Tool
|
42
|
+
Name="VCMIDLTool"/>
|
43
|
+
<Tool
|
44
|
+
Name="VCPostBuildEventTool"/>
|
45
|
+
<Tool
|
46
|
+
Name="VCPreBuildEventTool"/>
|
47
|
+
<Tool
|
48
|
+
Name="VCPreLinkEventTool"/>
|
49
|
+
<Tool
|
50
|
+
Name="VCResourceCompilerTool"/>
|
51
|
+
<Tool
|
52
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
53
|
+
<Tool
|
54
|
+
Name="VCXMLDataGeneratorTool"/>
|
55
|
+
<Tool
|
56
|
+
Name="VCWebDeploymentTool"/>
|
57
|
+
<Tool
|
58
|
+
Name="VCManagedWrapperGeneratorTool"/>
|
59
|
+
<Tool
|
60
|
+
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
61
|
+
</Configuration>
|
62
|
+
<Configuration
|
63
|
+
Name="Release|Win32"
|
64
|
+
OutputDirectory="Release"
|
65
|
+
IntermediateDirectory="Release"
|
66
|
+
ConfigurationType="1"
|
67
|
+
CharacterSet="2">
|
68
|
+
<Tool
|
69
|
+
Name="VCCLCompilerTool"
|
70
|
+
Optimization="2"
|
71
|
+
InlineFunctionExpansion="1"
|
72
|
+
OmitFramePointers="TRUE"
|
73
|
+
AdditionalIncludeDirectories="..\..\..\include; ..\..\..\..\winpcap\wpcap\libpcap\Win32\Include"
|
74
|
+
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;WPCAP"
|
75
|
+
StringPooling="TRUE"
|
76
|
+
RuntimeLibrary="4"
|
77
|
+
EnableFunctionLevelLinking="TRUE"
|
78
|
+
UsePrecompiledHeader="0"
|
79
|
+
WarningLevel="3"
|
80
|
+
Detect64BitPortabilityProblems="TRUE"
|
81
|
+
DebugInformationFormat="3"/>
|
82
|
+
<Tool
|
83
|
+
Name="VCCustomBuildTool"/>
|
84
|
+
<Tool
|
85
|
+
Name="VCLinkerTool"
|
86
|
+
OutputFile="$(OutDir)/arp.exe"
|
87
|
+
LinkIncremental="1"
|
88
|
+
GenerateDebugInformation="TRUE"
|
89
|
+
SubSystem="1"
|
90
|
+
OptimizeReferences="2"
|
91
|
+
EnableCOMDATFolding="2"
|
92
|
+
TargetMachine="1"/>
|
93
|
+
<Tool
|
94
|
+
Name="VCMIDLTool"/>
|
95
|
+
<Tool
|
96
|
+
Name="VCPostBuildEventTool"/>
|
97
|
+
<Tool
|
98
|
+
Name="VCPreBuildEventTool"/>
|
99
|
+
<Tool
|
100
|
+
Name="VCPreLinkEventTool"/>
|
101
|
+
<Tool
|
102
|
+
Name="VCResourceCompilerTool"/>
|
103
|
+
<Tool
|
104
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
105
|
+
<Tool
|
106
|
+
Name="VCXMLDataGeneratorTool"/>
|
107
|
+
<Tool
|
108
|
+
Name="VCWebDeploymentTool"/>
|
109
|
+
<Tool
|
110
|
+
Name="VCManagedWrapperGeneratorTool"/>
|
111
|
+
<Tool
|
112
|
+
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
113
|
+
</Configuration>
|
114
|
+
</Configurations>
|
115
|
+
<References>
|
116
|
+
</References>
|
117
|
+
<Files>
|
118
|
+
<Filter
|
119
|
+
Name="Source Files"
|
120
|
+
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm">
|
121
|
+
<File
|
122
|
+
RelativePath="..\..\arp.c">
|
123
|
+
</File>
|
124
|
+
</Filter>
|
125
|
+
<Filter
|
126
|
+
Name="Header Files"
|
127
|
+
Filter="h;hpp;hxx;hm;inl;inc">
|
128
|
+
</Filter>
|
129
|
+
<Filter
|
130
|
+
Name="Resource Files"
|
131
|
+
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
|
132
|
+
</Filter>
|
133
|
+
</Files>
|
134
|
+
<Globals>
|
135
|
+
</Globals>
|
136
|
+
</VisualStudioProject>
|
@@ -0,0 +1 @@
|
|
1
|
+
/usr/local/CVS/libnet/sample/win32/cdp
|
@@ -0,0 +1 @@
|
|
1
|
+
mike@66.234.207.232:/usr/local/CVS
|