blob: 9adf3aa9ea79c2097c2e669f5b78d5f2cdb58583 [file] [log] [blame]
kthacker62e146c2006-04-17 15:11:35 +00001/*
2 * Copyright (c) 2001-2004, Adam Dunkels.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote
14 * products derived from this software without specific prior
15 * written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * This file is part of the uIP TCP/IP stack.
30 *
31 * $Id: eth64-dump-drv.c,v 1.1 2006/04/17 15:11:59 kthacker Exp $
32 *
33 */
34
35#include "packet-service.h"
36
37#include "lan91c96.h"
38
39#include "uip_arp.h"
40
41static void output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen);
42
43static const struct uip_eth_addr addr =
44 {{0x00,0x0d,0x60,0x80,0x3d,0xb9}};
45
46static const struct packet_service_state state =
47 {
48 PACKET_SERVICE_VERSION,
49 output
50 };
51
52EK_EVENTHANDLER(eventhandler, ev, data);
53EK_POLLHANDLER(pollhandler);
54EK_PROCESS(proc, PACKET_SERVICE_NAME ": ETH64", EK_PRIO_NORMAL,
55 eventhandler, pollhandler, (void *)&state);
56
57#include "tcpdump.h"
58#include <string.h>
59#include "ctk.h"
60
61#define DUMP_WIDTH 38
62#define DUMP_HEIGHT 20
63static struct ctk_window window;
64static char dump[DUMP_WIDTH * DUMP_HEIGHT];
65static struct ctk_label dumplabel =
66 {CTK_LABEL(0, 0, DUMP_WIDTH, DUMP_HEIGHT, dump)};
67static void
68dump_packet(void)
69{
70 memcpy(dump, &dump[DUMP_WIDTH], DUMP_WIDTH * (DUMP_HEIGHT - 1));
71 tcpdump_print(&dump[DUMP_WIDTH * (DUMP_HEIGHT - 1)], DUMP_WIDTH);
72 CTK_WIDGET_REDRAW(&dumplabel);
73}
74/*---------------------------------------------------------------------------*/
75LOADER_INIT_FUNC(tfe_dump_drv_init, arg)
76{
77 arg_free(arg);
78 ek_service_start(PACKET_SERVICE_NAME, &proc);
79}
80/*---------------------------------------------------------------------------*/
81static void
82output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen)
83{
84 uip_arp_out();
85 lan91c96_send();
86 dump_packet();
87}
88/*---------------------------------------------------------------------------*/
89
90EK_EVENTHANDLER(eventhandler, ev, data)
91{
92 switch(ev) {
93 case EK_EVENT_INIT:
94 case EK_EVENT_REPLACE:
95 ctk_window_new(&window, DUMP_WIDTH, DUMP_HEIGHT, "TFE dump");
96 CTK_WIDGET_ADD(&window, &dumplabel);
97 ctk_window_open(&window);
98 uip_setethaddr(addr);
99 lan91c96_init();
100 break;
101 case EK_EVENT_REQUEST_REPLACE:
102 ctk_window_close(&window);
103 ek_replace((struct ek_proc *)data, NULL);
104 LOADER_UNLOAD();
105 break;
106 case EK_EVENT_REQUEST_EXIT:
107 ctk_window_close(&window);
108 ek_exit();
109 LOADER_UNLOAD();
110 break;
111 default:
112 break;
113 }
114}
115
116/*---------------------------------------------------------------------------*/
117EK_POLLHANDLER(pollhandler)
118{
119#define BUF ((struct uip_eth_hdr *)&uip_buf[0])
120
121 /* Poll Ethernet device to see if there is a frame avaliable. */
122 uip_len = lan91c96_poll();
123 if(uip_len > 0) {
124 /* A frame was avaliable (and is now read into the uip_buf), so
125 we process it. */
126 if(BUF->type == HTONS(UIP_ETHTYPE_IP)) {
127 uip_arp_ipin();
128 uip_len -= sizeof(struct uip_eth_hdr);
129 dump_packet();
130 tcpip_input();
131 } else if(BUF->type == HTONS(UIP_ETHTYPE_ARP)) {
132 uip_arp_arpin();
133 /* If the above function invocation resulted in data that
134 should be sent out on the network, the global variable
135 uip_len is set to a value > 0. */
136 if(uip_len > 0) {
137 lan91c96_send();
138 }
139 }
140 }
141
142}
143/*---------------------------------------------------------------------------*/