2006-06-18 00:41:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2003, Adam Dunkels.
|
2007-03-22 00:19:52 +01:00
|
|
|
* All rights reserved.
|
2006-06-18 00:41:10 +02:00
|
|
|
*
|
2007-03-22 00:19:52 +01:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2006-06-18 00:41:10 +02:00
|
|
|
* 3. The name of the author may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior
|
2007-03-22 00:19:52 +01:00
|
|
|
* written permission.
|
2006-06-18 00:41:10 +02:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
|
|
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
|
|
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
2007-03-22 00:19:52 +01:00
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-18 00:41:10 +02:00
|
|
|
*
|
|
|
|
* This file is part of the uIP TCP/IP stack.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-11-08 01:15:42 +01:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* Implementation of the ARP Address Resolution Protocol.
|
|
|
|
* \author Adam Dunkels <adam@dunkels.com>
|
|
|
|
*
|
|
|
|
*/
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2014-11-08 01:15:42 +01:00
|
|
|
/**
|
|
|
|
* \addtogroup uip
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup uiparp uIP Address Resolution Protocol
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* The Address Resolution Protocol ARP is used for mapping between IP
|
|
|
|
* addresses and link level addresses such as the Ethernet MAC
|
|
|
|
* addresses. ARP uses broadcast queries to ask for the link level
|
|
|
|
* address of a known IP address and the host which is configured with
|
|
|
|
* the IP address for which the query was meant, will respond with its
|
|
|
|
* link level address.
|
|
|
|
*
|
|
|
|
* \note This ARP implementation only supports Ethernet.
|
|
|
|
*/
|
|
|
|
|
2013-11-22 09:17:54 +01:00
|
|
|
#include "net/ipv4/uip_arp.h"
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
struct arp_hdr {
|
|
|
|
struct uip_eth_hdr ethhdr;
|
2012-02-17 23:45:13 +01:00
|
|
|
uint16_t hwtype;
|
|
|
|
uint16_t protocol;
|
|
|
|
uint8_t hwlen;
|
|
|
|
uint8_t protolen;
|
|
|
|
uint16_t opcode;
|
2006-06-18 00:41:10 +02:00
|
|
|
struct uip_eth_addr shwaddr;
|
2006-08-09 18:13:39 +02:00
|
|
|
uip_ipaddr_t sipaddr;
|
2006-06-18 00:41:10 +02:00
|
|
|
struct uip_eth_addr dhwaddr;
|
2007-03-22 00:19:52 +01:00
|
|
|
uip_ipaddr_t dipaddr;
|
2006-06-18 00:41:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ethip_hdr {
|
|
|
|
struct uip_eth_hdr ethhdr;
|
|
|
|
/* IP header. */
|
2012-02-17 23:45:13 +01:00
|
|
|
uint8_t vhl,
|
2007-03-22 00:19:52 +01:00
|
|
|
tos,
|
|
|
|
len[2],
|
|
|
|
ipid[2],
|
|
|
|
ipoffset[2],
|
|
|
|
ttl,
|
|
|
|
proto;
|
2012-02-17 23:45:13 +01:00
|
|
|
uint16_t ipchksum;
|
2006-08-09 18:13:39 +02:00
|
|
|
uip_ipaddr_t srcipaddr, destipaddr;
|
2006-06-18 00:41:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ARP_REQUEST 1
|
|
|
|
#define ARP_REPLY 2
|
|
|
|
|
|
|
|
#define ARP_HWTYPE_ETH 1
|
|
|
|
|
|
|
|
struct arp_entry {
|
2006-08-09 18:13:39 +02:00
|
|
|
uip_ipaddr_t ipaddr;
|
2006-06-18 00:41:10 +02:00
|
|
|
struct uip_eth_addr ethaddr;
|
2012-02-17 23:45:13 +01:00
|
|
|
uint8_t time;
|
2006-06-18 00:41:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct uip_eth_addr broadcast_ethaddr =
|
|
|
|
{{0xff,0xff,0xff,0xff,0xff,0xff}};
|
|
|
|
|
|
|
|
static struct arp_entry arp_table[UIP_ARPTAB_SIZE];
|
2006-08-09 18:13:39 +02:00
|
|
|
static uip_ipaddr_t ipaddr;
|
2012-02-17 23:45:13 +01:00
|
|
|
static uint8_t i, c;
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2012-02-17 23:45:13 +01:00
|
|
|
static uint8_t arptime;
|
|
|
|
static uint8_t tmpage;
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
#define BUF ((struct arp_hdr *)&uip_buf[0])
|
|
|
|
#define IPBUF ((struct ethip_hdr *)&uip_buf[0])
|
2007-03-22 00:19:52 +01:00
|
|
|
|
|
|
|
#define DEBUG 0
|
|
|
|
#if DEBUG
|
|
|
|
#include <stdio.h>
|
|
|
|
#define PRINTF(...) printf(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define PRINTF(...)
|
|
|
|
#endif
|
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* Initialize the ARP module.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
uip_arp_init(void)
|
|
|
|
{
|
|
|
|
for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
|
2006-08-09 18:13:39 +02:00
|
|
|
memset(&arp_table[i].ipaddr, 0, 4);
|
2006-06-18 00:41:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* Periodic ARP processing function.
|
|
|
|
*
|
|
|
|
* This function performs periodic timer processing in the ARP module
|
|
|
|
* and should be called at regular intervals. The recommended interval
|
|
|
|
* is 10 seconds between the calls.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
uip_arp_timer(void)
|
|
|
|
{
|
|
|
|
struct arp_entry *tabptr;
|
|
|
|
|
|
|
|
++arptime;
|
|
|
|
for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
|
|
|
|
tabptr = &arp_table[i];
|
2008-02-07 02:35:00 +01:00
|
|
|
if(uip_ipaddr_cmp(&tabptr->ipaddr, &uip_all_zeroes_addr) &&
|
2006-06-18 00:41:10 +02:00
|
|
|
arptime - tabptr->time >= UIP_ARP_MAXAGE) {
|
2006-08-09 18:13:39 +02:00
|
|
|
memset(&tabptr->ipaddr, 0, 4);
|
2006-06-18 00:41:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2010-12-14 23:45:22 +01:00
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static void
|
2006-08-09 18:13:39 +02:00
|
|
|
uip_arp_update(uip_ipaddr_t *ipaddr, struct uip_eth_addr *ethaddr)
|
2006-06-18 00:41:10 +02:00
|
|
|
{
|
2010-12-14 23:45:22 +01:00
|
|
|
register struct arp_entry *tabptr = arp_table;
|
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
/* Walk through the ARP mapping table and try to find an entry to
|
|
|
|
update. If none is found, the IP -> MAC address mapping is
|
|
|
|
inserted in the ARP table. */
|
|
|
|
for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
|
|
|
|
tabptr = &arp_table[i];
|
2010-12-14 23:45:22 +01:00
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
/* Only check those entries that are actually in use. */
|
2008-02-07 02:35:00 +01:00
|
|
|
if(!uip_ipaddr_cmp(&tabptr->ipaddr, &uip_all_zeroes_addr)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
/* Check if the source IP address of the incoming packet matches
|
|
|
|
the IP address in this ARP table entry. */
|
2006-08-09 18:13:39 +02:00
|
|
|
if(uip_ipaddr_cmp(ipaddr, &tabptr->ipaddr)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
/* An old entry found, update this and return. */
|
|
|
|
memcpy(tabptr->ethaddr.addr, ethaddr->addr, 6);
|
|
|
|
tabptr->time = arptime;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2010-12-14 23:45:22 +01:00
|
|
|
tabptr++;
|
2006-06-18 00:41:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If we get here, no existing ARP table entry was found, so we
|
|
|
|
create one. */
|
|
|
|
|
|
|
|
/* First, we try to find an unused entry in the ARP table. */
|
|
|
|
for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
|
|
|
|
tabptr = &arp_table[i];
|
2008-02-07 02:35:00 +01:00
|
|
|
if(uip_ipaddr_cmp(&tabptr->ipaddr, &uip_all_zeroes_addr)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no unused entry is found, we try to find the oldest entry and
|
|
|
|
throw it away. */
|
|
|
|
if(i == UIP_ARPTAB_SIZE) {
|
|
|
|
tmpage = 0;
|
|
|
|
c = 0;
|
|
|
|
for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
|
|
|
|
tabptr = &arp_table[i];
|
|
|
|
if(arptime - tabptr->time > tmpage) {
|
|
|
|
tmpage = arptime - tabptr->time;
|
|
|
|
c = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i = c;
|
|
|
|
tabptr = &arp_table[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now, i is the ARP table entry which we will fill with the new
|
|
|
|
information. */
|
Support for z80(sdcc) port.
In order to support, some core modules are modified as follows:
core/sys/dsc.h
- If CTK_CONF_ICONS is diabled, the whole icon-related code is disabled.
- DSC_HEADER is changed to remove extra semicolon.
core/sys/process.h
- process_data_t is expressed by void* in signatures (known bug on sdcc).
core/sys/autostart.h
- autostart_processes is changed to remove extra semicolon.
core/sys/cc.h
- CC_CONF_ASSIGN_AGGREGATE is introduced.
- CC_CONF_INC_CAST_POINTER is introduced, a workaround of a kind
of sdcc bug for an increment.
core/net/hc.c
core/net/uip_arp.c
core/net/uaodv.c
- Aggregation assignments are changed to uip_ipaddr_copy.
core/net/psock.c
core/net/uipbuf.c
core/net/dhcpc.c
apps/shell/shell.c
core/ctk/vnc-server.c
core/ctk/vnc-out.c
- "register" keyword in a signature cannot be used in sdcc,
CC_REGISTER_ARG is used instead.
core/net/uip-over-mesh.c
- An extra semicolon is removed.
apps/dhcp/dhcp-dsc.c
apps/shell/shell-dsc.
apps/ftp/ftp-dsc.c
apps/process-list/process-list-dsc.c
apps/email/email-dsc.c
apps/webserver/webserver-dsc.c
apps/vnc/vnc-dsc.c
apps/vnc/vnc-viewer.h
apps/webbrowser/www-dsc.c
apps/about/about-dsc.c
apps/irc/irc-dsc.c
apps/telnet/telnet-dsc.c
apps/telnetd/telnetd-dsc.c
apps/netconf/netconf-dsc.c
apps/directory/directory-dsc.c
pps/calc/calc-dsc.c
- Modify an extern type to a real declaration, which is static
to prevent a compile error.
core/net/mac/xmac.c
- Variables cannot be defined in a head of block on sdcc.
core/ctk/ctk.h
core/ctk/ctk.c
apps/program-handler/program-handler.c
- If CTK_CONF_ICONS is diabled, the whole icon-related code is disabled.
Makefile.include
- Add a set of configuration for an assembler.
- $(CLEAN) variable is introduced for customized cleanup.
apps/process-list/process-list.c
- PROCESSLIST_CONF_HEIGHT is introduced to address smaller screen size.
core/lib/ctk-filedialog.c
- FILES_CONF_HEIGHT is introduced to address smaller screen size.
- "register" keyword in a signature cannot be used in sdcc,
CC_REGISTER_ARG is used instead.
apps/vnc/vnc-viewer.c
- A cast is added to prevent a compile error.
- "register" keyword in a signature cannot be used in sdcc,
CC_REGISTER_ARG is used instead.
apps/webbrowser/webclient.c
- CC_CONF_INC_CAST_POINTER is introduced, a workaround of a kind
of sdcc bug for an increment.
core/loader/elfloader.c
- A cast is added to prevent a compile error.
core/net/rime/rimeaddr.c
- An initialization is added to prevent a compile error.
core/net/rime/rudolph0.c
- NULL is changed to 0, because NULL causes a compile error.
core/net/rime/route-discovery.c
- Add an argument to match the definition of nf_callbacks.
cpu/z80/strcasecmp.h
cpu/z80/strcasecmp.c
cpu/z80/contiki-sdcc-conf.h
cpu/z80/mtarch.c
cpu/z80/mtarch.h
cpu/z80/Makefile.z80
- New files to make compilation availble on sdcc.
- Added support for multithreading.
2007-08-30 16:39:16 +02:00
|
|
|
uip_ipaddr_copy(&tabptr->ipaddr, ipaddr);
|
2006-06-18 00:41:10 +02:00
|
|
|
memcpy(tabptr->ethaddr.addr, ethaddr->addr, 6);
|
|
|
|
tabptr->time = arptime;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* ARP processing for incoming IP packets
|
|
|
|
*
|
|
|
|
* This function should be called by the device driver when an IP
|
|
|
|
* packet has been received. The function will check if the address is
|
|
|
|
* in the ARP cache, and if so the ARP cache entry will be
|
|
|
|
* refreshed. If no ARP cache entry was found, a new one is created.
|
|
|
|
*
|
|
|
|
* This function expects an IP packet with a prepended Ethernet header
|
|
|
|
* in the uip_buf[] buffer, and the length of the packet in the global
|
|
|
|
* variable uip_len.
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
#if 0
|
|
|
|
void
|
|
|
|
uip_arp_ipin(void)
|
|
|
|
{
|
|
|
|
uip_len -= sizeof(struct uip_eth_hdr);
|
|
|
|
|
|
|
|
/* Only insert/update an entry if the source IP address of the
|
|
|
|
incoming IP packet comes from a host on the local network. */
|
|
|
|
if((IPBUF->srcipaddr[0] & uip_netmask[0]) !=
|
|
|
|
(uip_hostaddr[0] & uip_netmask[0])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if((IPBUF->srcipaddr[1] & uip_netmask[1]) !=
|
|
|
|
(uip_hostaddr[1] & uip_netmask[1])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uip_arp_update(IPBUF->srcipaddr, &(IPBUF->ethhdr.src));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* 0 */
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* ARP processing for incoming ARP packets.
|
|
|
|
*
|
|
|
|
* This function should be called by the device driver when an ARP
|
|
|
|
* packet has been received. The function will act differently
|
|
|
|
* depending on the ARP packet type: if it is a reply for a request
|
|
|
|
* that we previously sent out, the ARP cache will be filled in with
|
|
|
|
* the values from the ARP reply. If the incoming ARP packet is an ARP
|
|
|
|
* request for our IP address, an ARP reply packet is created and put
|
|
|
|
* into the uip_buf[] buffer.
|
|
|
|
*
|
|
|
|
* When the function returns, the value of the global variable uip_len
|
|
|
|
* indicates whether the device driver should send out a packet or
|
|
|
|
* not. If uip_len is zero, no packet should be sent. If uip_len is
|
|
|
|
* non-zero, it contains the length of the outbound packet that is
|
|
|
|
* present in the uip_buf[] buffer.
|
|
|
|
*
|
|
|
|
* This function expects an ARP packet with a prepended Ethernet
|
|
|
|
* header in the uip_buf[] buffer, and the length of the packet in the
|
|
|
|
* global variable uip_len.
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
uip_arp_arpin(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(uip_len < sizeof(struct arp_hdr)) {
|
2015-06-15 10:25:58 +02:00
|
|
|
uip_clear_buf();
|
2006-06-18 00:41:10 +02:00
|
|
|
return;
|
|
|
|
}
|
2015-06-15 10:25:58 +02:00
|
|
|
uip_clear_buf();
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
switch(BUF->opcode) {
|
2010-10-19 20:29:03 +02:00
|
|
|
case UIP_HTONS(ARP_REQUEST):
|
2006-06-18 00:41:10 +02:00
|
|
|
/* ARP request. If it asked for our address, we send out a
|
2007-03-22 00:19:52 +01:00
|
|
|
reply. */
|
2006-06-18 00:41:10 +02:00
|
|
|
/* if(BUF->dipaddr[0] == uip_hostaddr[0] &&
|
|
|
|
BUF->dipaddr[1] == uip_hostaddr[1]) {*/
|
2007-03-22 00:19:52 +01:00
|
|
|
PRINTF("uip_arp_arpin: request for %d.%d.%d.%d (we are %d.%d.%d.%d)\n",
|
|
|
|
BUF->dipaddr.u8[0], BUF->dipaddr.u8[1],
|
|
|
|
BUF->dipaddr.u8[2], BUF->dipaddr.u8[3],
|
|
|
|
uip_hostaddr.u8[0], uip_hostaddr.u8[1],
|
|
|
|
uip_hostaddr.u8[2], uip_hostaddr.u8[3]);
|
2006-08-09 18:13:39 +02:00
|
|
|
if(uip_ipaddr_cmp(&BUF->dipaddr, &uip_hostaddr)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
/* First, we register the one who made the request in our ARP
|
|
|
|
table, since it is likely that we will do more communication
|
|
|
|
with this host in the future. */
|
2006-08-09 18:13:39 +02:00
|
|
|
uip_arp_update(&BUF->sipaddr, &BUF->shwaddr);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2010-10-19 20:29:03 +02:00
|
|
|
BUF->opcode = UIP_HTONS(ARP_REPLY);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
memcpy(BUF->dhwaddr.addr, BUF->shwaddr.addr, 6);
|
2013-01-09 17:03:57 +01:00
|
|
|
memcpy(BUF->shwaddr.addr, uip_lladdr.addr, 6);
|
|
|
|
memcpy(BUF->ethhdr.src.addr, uip_lladdr.addr, 6);
|
2006-06-18 00:41:10 +02:00
|
|
|
memcpy(BUF->ethhdr.dest.addr, BUF->dhwaddr.addr, 6);
|
|
|
|
|
Support for z80(sdcc) port.
In order to support, some core modules are modified as follows:
core/sys/dsc.h
- If CTK_CONF_ICONS is diabled, the whole icon-related code is disabled.
- DSC_HEADER is changed to remove extra semicolon.
core/sys/process.h
- process_data_t is expressed by void* in signatures (known bug on sdcc).
core/sys/autostart.h
- autostart_processes is changed to remove extra semicolon.
core/sys/cc.h
- CC_CONF_ASSIGN_AGGREGATE is introduced.
- CC_CONF_INC_CAST_POINTER is introduced, a workaround of a kind
of sdcc bug for an increment.
core/net/hc.c
core/net/uip_arp.c
core/net/uaodv.c
- Aggregation assignments are changed to uip_ipaddr_copy.
core/net/psock.c
core/net/uipbuf.c
core/net/dhcpc.c
apps/shell/shell.c
core/ctk/vnc-server.c
core/ctk/vnc-out.c
- "register" keyword in a signature cannot be used in sdcc,
CC_REGISTER_ARG is used instead.
core/net/uip-over-mesh.c
- An extra semicolon is removed.
apps/dhcp/dhcp-dsc.c
apps/shell/shell-dsc.
apps/ftp/ftp-dsc.c
apps/process-list/process-list-dsc.c
apps/email/email-dsc.c
apps/webserver/webserver-dsc.c
apps/vnc/vnc-dsc.c
apps/vnc/vnc-viewer.h
apps/webbrowser/www-dsc.c
apps/about/about-dsc.c
apps/irc/irc-dsc.c
apps/telnet/telnet-dsc.c
apps/telnetd/telnetd-dsc.c
apps/netconf/netconf-dsc.c
apps/directory/directory-dsc.c
pps/calc/calc-dsc.c
- Modify an extern type to a real declaration, which is static
to prevent a compile error.
core/net/mac/xmac.c
- Variables cannot be defined in a head of block on sdcc.
core/ctk/ctk.h
core/ctk/ctk.c
apps/program-handler/program-handler.c
- If CTK_CONF_ICONS is diabled, the whole icon-related code is disabled.
Makefile.include
- Add a set of configuration for an assembler.
- $(CLEAN) variable is introduced for customized cleanup.
apps/process-list/process-list.c
- PROCESSLIST_CONF_HEIGHT is introduced to address smaller screen size.
core/lib/ctk-filedialog.c
- FILES_CONF_HEIGHT is introduced to address smaller screen size.
- "register" keyword in a signature cannot be used in sdcc,
CC_REGISTER_ARG is used instead.
apps/vnc/vnc-viewer.c
- A cast is added to prevent a compile error.
- "register" keyword in a signature cannot be used in sdcc,
CC_REGISTER_ARG is used instead.
apps/webbrowser/webclient.c
- CC_CONF_INC_CAST_POINTER is introduced, a workaround of a kind
of sdcc bug for an increment.
core/loader/elfloader.c
- A cast is added to prevent a compile error.
core/net/rime/rimeaddr.c
- An initialization is added to prevent a compile error.
core/net/rime/rudolph0.c
- NULL is changed to 0, because NULL causes a compile error.
core/net/rime/route-discovery.c
- Add an argument to match the definition of nf_callbacks.
cpu/z80/strcasecmp.h
cpu/z80/strcasecmp.c
cpu/z80/contiki-sdcc-conf.h
cpu/z80/mtarch.c
cpu/z80/mtarch.h
cpu/z80/Makefile.z80
- New files to make compilation availble on sdcc.
- Added support for multithreading.
2007-08-30 16:39:16 +02:00
|
|
|
uip_ipaddr_copy(&BUF->dipaddr, &BUF->sipaddr);
|
|
|
|
uip_ipaddr_copy(&BUF->sipaddr, &uip_hostaddr);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2010-10-19 20:29:03 +02:00
|
|
|
BUF->ethhdr.type = UIP_HTONS(UIP_ETHTYPE_ARP);
|
2006-06-18 00:41:10 +02:00
|
|
|
uip_len = sizeof(struct arp_hdr);
|
2007-03-22 00:19:52 +01:00
|
|
|
}
|
2006-06-18 00:41:10 +02:00
|
|
|
break;
|
2010-10-19 20:29:03 +02:00
|
|
|
case UIP_HTONS(ARP_REPLY):
|
2006-06-18 00:41:10 +02:00
|
|
|
/* ARP reply. We insert or update the ARP table if it was meant
|
|
|
|
for us. */
|
2006-08-09 18:13:39 +02:00
|
|
|
if(uip_ipaddr_cmp(&BUF->dipaddr, &uip_hostaddr)) {
|
|
|
|
uip_arp_update(&BUF->sipaddr, &BUF->shwaddr);
|
2006-06-18 00:41:10 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* Prepend Ethernet header to an outbound IP packet and see if we need
|
|
|
|
* to send out an ARP request.
|
|
|
|
*
|
|
|
|
* This function should be called before sending out an IP packet. The
|
|
|
|
* function checks the destination IP address of the IP packet to see
|
|
|
|
* what Ethernet MAC address that should be used as a destination MAC
|
|
|
|
* address on the Ethernet.
|
|
|
|
*
|
|
|
|
* If the destination IP address is in the local network (determined
|
|
|
|
* by logical ANDing of netmask and our IP address), the function
|
|
|
|
* checks the ARP cache to see if an entry for the destination IP
|
|
|
|
* address is found. If so, an Ethernet header is prepended and the
|
|
|
|
* function returns. If no ARP cache entry is found for the
|
|
|
|
* destination IP address, the packet in the uip_buf[] is replaced by
|
|
|
|
* an ARP request packet for the IP address. The IP packet is dropped
|
|
|
|
* and it is assumed that they higher level protocols (e.g., TCP)
|
|
|
|
* eventually will retransmit the dropped packet.
|
|
|
|
*
|
|
|
|
* If the destination IP address is not on the local network, the IP
|
|
|
|
* address of the default router is used instead.
|
|
|
|
*
|
|
|
|
* When the function returns, a packet is present in the uip_buf[]
|
|
|
|
* buffer, and the length of the packet is in the global variable
|
|
|
|
* uip_len.
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
uip_arp_out(void)
|
|
|
|
{
|
2010-12-14 23:45:22 +01:00
|
|
|
struct arp_entry *tabptr = arp_table;
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
/* Find the destination IP address in the ARP table and construct
|
|
|
|
the Ethernet header. If the destination IP addres isn't on the
|
|
|
|
local network, we use the default router's IP address instead.
|
|
|
|
|
|
|
|
If not ARP table entry is found, we overwrite the original IP
|
|
|
|
packet with an ARP request for the IP address. */
|
|
|
|
|
|
|
|
/* First check if destination is a local broadcast. */
|
2006-08-09 18:13:39 +02:00
|
|
|
if(uip_ipaddr_cmp(&IPBUF->destipaddr, &uip_broadcast_addr)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
memcpy(IPBUF->ethhdr.dest.addr, broadcast_ethaddr.addr, 6);
|
2010-10-25 00:29:39 +02:00
|
|
|
} else if(IPBUF->destipaddr.u8[0] == 224) {
|
|
|
|
/* Multicast. */
|
|
|
|
IPBUF->ethhdr.dest.addr[0] = 0x01;
|
|
|
|
IPBUF->ethhdr.dest.addr[1] = 0x00;
|
|
|
|
IPBUF->ethhdr.dest.addr[2] = 0x5e;
|
|
|
|
IPBUF->ethhdr.dest.addr[3] = IPBUF->destipaddr.u8[1];
|
|
|
|
IPBUF->ethhdr.dest.addr[4] = IPBUF->destipaddr.u8[2];
|
|
|
|
IPBUF->ethhdr.dest.addr[5] = IPBUF->destipaddr.u8[3];
|
2006-06-18 00:41:10 +02:00
|
|
|
} else {
|
|
|
|
/* Check if the destination address is on the local network. */
|
2006-08-09 18:13:39 +02:00
|
|
|
if(!uip_ipaddr_maskcmp(&IPBUF->destipaddr, &uip_hostaddr, &uip_netmask)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
/* Destination address was not on the local network, so we need to
|
|
|
|
use the default router's IP address instead of the destination
|
|
|
|
address when determining the MAC address. */
|
2007-03-22 00:19:52 +01:00
|
|
|
uip_ipaddr_copy(&ipaddr, &uip_draddr);
|
2006-06-18 00:41:10 +02:00
|
|
|
} else {
|
|
|
|
/* Else, we use the destination IP address. */
|
2007-03-22 00:19:52 +01:00
|
|
|
uip_ipaddr_copy(&ipaddr, &IPBUF->destipaddr);
|
2006-06-18 00:41:10 +02:00
|
|
|
}
|
|
|
|
for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
|
2006-08-09 18:13:39 +02:00
|
|
|
if(uip_ipaddr_cmp(&ipaddr, &tabptr->ipaddr)) {
|
2006-06-18 00:41:10 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-12-14 23:45:22 +01:00
|
|
|
tabptr++;
|
2006-06-18 00:41:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(i == UIP_ARPTAB_SIZE) {
|
|
|
|
/* The destination address was not in our ARP table, so we
|
|
|
|
overwrite the IP packet with an ARP request. */
|
|
|
|
|
|
|
|
memset(BUF->ethhdr.dest.addr, 0xff, 6);
|
|
|
|
memset(BUF->dhwaddr.addr, 0x00, 6);
|
2013-01-09 17:03:57 +01:00
|
|
|
memcpy(BUF->ethhdr.src.addr, uip_lladdr.addr, 6);
|
|
|
|
memcpy(BUF->shwaddr.addr, uip_lladdr.addr, 6);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2006-08-09 18:13:39 +02:00
|
|
|
uip_ipaddr_copy(&BUF->dipaddr, &ipaddr);
|
|
|
|
uip_ipaddr_copy(&BUF->sipaddr, &uip_hostaddr);
|
2010-10-19 20:29:03 +02:00
|
|
|
BUF->opcode = UIP_HTONS(ARP_REQUEST); /* ARP request. */
|
|
|
|
BUF->hwtype = UIP_HTONS(ARP_HWTYPE_ETH);
|
|
|
|
BUF->protocol = UIP_HTONS(UIP_ETHTYPE_IP);
|
2006-06-18 00:41:10 +02:00
|
|
|
BUF->hwlen = 6;
|
|
|
|
BUF->protolen = 4;
|
2010-10-19 20:29:03 +02:00
|
|
|
BUF->ethhdr.type = UIP_HTONS(UIP_ETHTYPE_ARP);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
uip_appdata = &uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN];
|
|
|
|
|
|
|
|
uip_len = sizeof(struct arp_hdr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Build an ethernet header. */
|
|
|
|
memcpy(IPBUF->ethhdr.dest.addr, tabptr->ethaddr.addr, 6);
|
|
|
|
}
|
2013-01-09 17:03:57 +01:00
|
|
|
memcpy(IPBUF->ethhdr.src.addr, uip_lladdr.addr, 6);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2010-10-19 20:29:03 +02:00
|
|
|
IPBUF->ethhdr.type = UIP_HTONS(UIP_ETHTYPE_IP);
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
uip_len += sizeof(struct uip_eth_hdr);
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/** @} */
|
|
|
|
/** @} */
|
2010-10-25 00:29:39 +02:00
|
|
|
|