OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / Libnet / test / Ethernet / arp.c
1 /*
2  *  $Id: arp.c,v 1.1.1.1 2000/05/25 00:28:49 route Exp $
3  *
4  *  libnet
5  *  arp.c - Build an ARP packet
6  *
7  *  Copyright (c) 1998, 1999, 2000 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 int
39 main(int argc, char *argv[])
40 {
41     int  c;
42     char errbuf[256];
43     char *device = NULL;
44     struct libnet_link_int *l;
45
46     while ((c = getopt(argc, argv, "i:")) != EOF)
47     {
48         switch (c)
49         {
50             case 'i':
51                 device = optarg;
52                 break;
53             default:
54                 exit(EXIT_FAILURE);
55         }
56     }
57
58     if (!device)
59     {
60         fprintf(stderr, "Specify a device\n");
61         exit(EXIT_FAILURE);
62     }
63
64     l = libnet_open_link_interface(device, errbuf);
65     if (!l)
66     {
67         fprintf(stderr, "libnet_open_link_interface: %s\n", errbuf);
68         exit(EXIT_FAILURE);
69     }
70     c = send_arp(l, device);
71
72     return (c == -1 ? EXIT_FAILURE : EXIT_SUCCESS);
73 }
74
75
76 int
77 send_arp(struct libnet_link_int *l, u_char *device)
78 {
79     int n;
80     u_char *buf;
81
82     if (libnet_init_packet(LIBNET_ARP_H + LIBNET_ETH_H, &buf) == -1)
83     {
84         perror("libnet_init_packet memory:");
85         exit(EXIT_FAILURE);
86     }
87
88     /*
89      *  Ethernet header
90      */
91     libnet_build_ethernet(enet_dst, enet_src, ETHERTYPE_ARP, NULL, 0, buf);
92
93     /*
94      *  ARP header
95      */
96     libnet_build_arp(ARPHRD_ETHER,
97         ETHERTYPE_IP,
98         6,
99         4,
100         ARPOP_REQUEST,
101         enet_src,
102         ip_src,
103         enet_dst,
104         ip_dst,
105         NULL,
106         0,
107         buf + LIBNET_ETH_H);
108
109     n = libnet_write_link_layer(l, device, buf, LIBNET_ARP_H + LIBNET_ETH_H);
110
111     printf("Wrote %d byte ARP packet through linktype %d\n", n, l->linktype);
112
113     libnet_destroy_packet(&buf);
114     return (n);
115 }
116
117 /* EOF */