2007-08-09 22:21:44 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Sequential API Main thread module
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
/*
|
2004-02-07 00:30:03 +00:00
|
|
|
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
|
2007-03-03 16:22:38 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
2002-10-19 12:59:30 +00:00
|
|
|
* 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.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
2007-03-03 16:22:38 +00:00
|
|
|
* derived from this software without specific prior written permission.
|
2002-10-19 12:59:30 +00:00
|
|
|
*
|
2007-03-03 16:22:38 +00: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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
2002-10-19 12:59:30 +00:00
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
2007-03-03 16:22:38 +00:00
|
|
|
*
|
2002-10-19 12:59:30 +00:00
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lwip/opt.h"
|
|
|
|
|
2007-09-07 23:01:59 +00:00
|
|
|
#if !NO_SYS /* don't build if not configured for use in lwipopts.h */
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-09-07 23:01:59 +00:00
|
|
|
#include "lwip/sys.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/memp.h"
|
|
|
|
#include "lwip/pbuf.h"
|
2006-03-01 14:51:58 +00:00
|
|
|
#include "lwip/ip_frag.h"
|
2007-09-12 09:19:43 +00:00
|
|
|
#include "lwip/tcp.h"
|
2007-09-09 22:34:55 +00:00
|
|
|
#include "lwip/autoip.h"
|
|
|
|
#include "lwip/dhcp.h"
|
2007-08-29 08:11:06 +00:00
|
|
|
#include "lwip/igmp.h"
|
2007-11-14 23:27:13 +00:00
|
|
|
#include "lwip/dns.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/tcpip.h"
|
2007-08-29 08:11:06 +00:00
|
|
|
#include "lwip/init.h"
|
2007-09-07 23:01:59 +00:00
|
|
|
#include "netif/etharp.h"
|
|
|
|
#include "netif/ppp_oe.h"
|
2007-05-18 11:27:46 +00:00
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/* global variables */
|
2007-10-09 19:59:56 +00:00
|
|
|
static void (* tcpip_init_done)(void *arg);
|
|
|
|
static void *tcpip_init_done_arg;
|
|
|
|
static sys_mbox_t mbox = SYS_MBOX_NULL;
|
2004-11-28 18:23:00 +00:00
|
|
|
|
2007-06-08 19:27:59 +00:00
|
|
|
#if LWIP_TCPIP_CORE_LOCKING
|
|
|
|
/** The global semaphore to lock the stack. */
|
2007-10-09 19:59:56 +00:00
|
|
|
sys_sem_t lock_tcpip_core;
|
2007-06-08 19:27:59 +00:00
|
|
|
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
|
2003-03-21 10:48:21 +00:00
|
|
|
#if LWIP_TCP
|
2007-06-17 12:18:11 +00:00
|
|
|
/* global variable that shows if the tcp timer is currently scheduled or not */
|
2007-10-09 19:59:56 +00:00
|
|
|
static int tcpip_tcp_timer_active;
|
2003-02-06 22:18:56 +00:00
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls tcp_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
static void
|
|
|
|
tcpip_tcp_timer(void *arg)
|
|
|
|
{
|
2007-04-11 19:39:24 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2003-02-06 22:18:56 +00:00
|
|
|
|
2004-07-12 20:42:16 +00:00
|
|
|
/* call TCP timer handler */
|
2002-10-19 12:59:30 +00:00
|
|
|
tcp_tmr();
|
2004-07-12 20:42:16 +00:00
|
|
|
/* timer still needed? */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (tcp_active_pcbs || tcp_tw_pcbs) {
|
2004-07-12 20:42:16 +00:00
|
|
|
/* restart timer */
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
|
2003-02-06 22:18:56 +00:00
|
|
|
} else {
|
2004-07-12 20:42:16 +00:00
|
|
|
/* disable timer */
|
|
|
|
tcpip_tcp_timer_active = 0;
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
|
|
|
|
2004-11-28 18:23:00 +00:00
|
|
|
#if !NO_SYS
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Called from TCP_REG when registering a new PCB:
|
|
|
|
* the reason is to have the TCP timer only running when
|
|
|
|
* there are active (or time-wait) PCBs.
|
|
|
|
*/
|
2003-02-06 22:18:56 +00:00
|
|
|
void
|
|
|
|
tcp_timer_needed(void)
|
|
|
|
{
|
2004-07-12 20:42:16 +00:00
|
|
|
/* timer is off but needed again? */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (!tcpip_tcp_timer_active && (tcp_active_pcbs || tcp_tw_pcbs)) {
|
2004-07-12 20:42:16 +00:00
|
|
|
/* enable and start timer */
|
|
|
|
tcpip_tcp_timer_active = 1;
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-28 18:23:00 +00:00
|
|
|
#endif /* !NO_SYS */
|
2003-03-21 10:48:21 +00:00
|
|
|
#endif /* LWIP_TCP */
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2006-03-01 14:51:58 +00:00
|
|
|
#if IP_REASSEMBLY
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls ip_reass_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2006-03-01 14:51:58 +00:00
|
|
|
static void
|
2007-06-17 12:18:11 +00:00
|
|
|
ip_reass_timer(void *arg)
|
2006-03-01 14:51:58 +00:00
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2006-03-01 14:51:58 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: ip_reass_tmr()\n"));
|
|
|
|
ip_reass_tmr();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL);
|
2006-03-01 14:51:58 +00:00
|
|
|
}
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* IP_REASSEMBLY */
|
2006-03-01 14:51:58 +00:00
|
|
|
|
2007-03-26 16:13:46 +00:00
|
|
|
#if LWIP_ARP
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls etharp_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-03-06 14:18:02 +00:00
|
|
|
static void
|
|
|
|
arp_timer(void *arg)
|
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2007-03-06 14:18:02 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: etharp_tmr()\n"));
|
|
|
|
etharp_tmr();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
|
2007-03-06 14:18:02 +00:00
|
|
|
}
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_ARP */
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2007-03-08 10:37:31 +00:00
|
|
|
#if LWIP_DHCP
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls dhcp_coarse_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-03-08 10:37:31 +00:00
|
|
|
static void
|
|
|
|
dhcp_timer_coarse(void *arg)
|
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2007-03-08 10:37:31 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: dhcp_coarse_tmr()\n"));
|
|
|
|
dhcp_coarse_tmr();
|
2007-10-15 21:31:42 +00:00
|
|
|
sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL);
|
2007-03-08 10:37:31 +00:00
|
|
|
}
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls dhcp_fine_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-03-08 10:37:31 +00:00
|
|
|
static void
|
|
|
|
dhcp_timer_fine(void *arg)
|
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2007-03-08 10:37:31 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: dhcp_fine_tmr()\n"));
|
|
|
|
dhcp_fine_tmr();
|
|
|
|
sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL);
|
|
|
|
}
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_DHCP */
|
2007-03-08 10:37:31 +00:00
|
|
|
|
2007-06-19 10:11:27 +00:00
|
|
|
#if LWIP_AUTOIP
|
|
|
|
/**
|
|
|
|
* Timer callback function that calls autoip_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
autoip_timer(void *arg)
|
|
|
|
{
|
|
|
|
LWIP_UNUSED_ARG(arg);
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: autoip_tmr()\n"));
|
|
|
|
autoip_tmr();
|
|
|
|
sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_AUTOIP */
|
|
|
|
|
2007-05-16 14:12:52 +00:00
|
|
|
#if LWIP_IGMP
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls igmp_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-05-16 14:12:52 +00:00
|
|
|
static void
|
|
|
|
igmp_timer(void *arg)
|
|
|
|
{
|
|
|
|
LWIP_UNUSED_ARG(arg);
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: igmp_tmr()\n"));
|
|
|
|
igmp_tmr();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL);
|
2007-05-16 14:12:52 +00:00
|
|
|
}
|
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2007-11-14 23:27:13 +00:00
|
|
|
#if LWIP_DNS
|
|
|
|
/**
|
|
|
|
* Timer callback function that calls dns_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
dns_timer(void *arg)
|
|
|
|
{
|
|
|
|
LWIP_UNUSED_ARG(arg);
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: dns_tmr()\n"));
|
|
|
|
dns_tmr();
|
|
|
|
sys_timeout(DNS_TMR_INTERVAL, dns_timer, NULL);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_DNS */
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* The main lwIP thread. This thread has exclusive access to lwIP core functions
|
|
|
|
* (unless access to them is not locked). Other threads communicate with this
|
|
|
|
* thread using message boxes.
|
|
|
|
*
|
|
|
|
* It also starts all the timers to make sure they are running in the right
|
|
|
|
* thread context.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
static void
|
|
|
|
tcpip_thread(void *arg)
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2006-03-01 14:51:58 +00:00
|
|
|
#if IP_REASSEMBLY
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL);
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* IP_REASSEMBLY */
|
|
|
|
#if LWIP_ARP
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_ARP */
|
2007-03-08 10:37:31 +00:00
|
|
|
#if LWIP_DHCP
|
2007-10-15 21:31:42 +00:00
|
|
|
sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL);
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL);
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_DHCP */
|
2007-06-19 10:11:27 +00:00
|
|
|
#if LWIP_AUTOIP
|
|
|
|
sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL);
|
|
|
|
#endif /* LWIP_AUTOIP */
|
2007-08-29 21:12:32 +00:00
|
|
|
#if LWIP_IGMP
|
|
|
|
sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL);
|
|
|
|
#endif /* LWIP_IGMP */
|
2007-11-14 23:27:13 +00:00
|
|
|
#if LWIP_DNS
|
|
|
|
sys_timeout(DNS_TMR_INTERVAL, dns_timer, NULL);
|
|
|
|
#endif /* LWIP_DNS */
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (tcpip_init_done != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
tcpip_init_done(tcpip_init_done_arg);
|
|
|
|
}
|
|
|
|
|
2007-06-08 19:27:59 +00:00
|
|
|
LOCK_TCPIP_CORE();
|
2003-05-01 13:24:01 +00:00
|
|
|
while (1) { /* MAIN Loop */
|
2007-03-08 20:58:46 +00:00
|
|
|
sys_mbox_fetch(mbox, (void *)&msg);
|
2003-05-01 13:24:01 +00:00
|
|
|
switch (msg->type) {
|
2007-09-12 09:19:43 +00:00
|
|
|
#if LWIP_NETCONN
|
2002-10-19 12:59:30 +00:00
|
|
|
case TCPIP_MSG_API:
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: API message %p\n", (void *)msg));
|
2007-05-11 08:58:23 +00:00
|
|
|
msg->msg.apimsg->function(&(msg->msg.apimsg->msg));
|
2002-10-19 12:59:30 +00:00
|
|
|
break;
|
2007-09-12 09:19:43 +00:00
|
|
|
#endif /* LWIP_NETCONN */
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2007-08-17 02:46:43 +00:00
|
|
|
case TCPIP_MSG_INPKT:
|
2007-08-16 19:49:08 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: PACKET %p\n", (void *)msg));
|
2007-08-29 07:51:20 +00:00
|
|
|
#if LWIP_ARP
|
|
|
|
if (msg->msg.inp.netif->flags & NETIF_FLAG_ETHARP) {
|
|
|
|
ethernet_input(msg->msg.inp.p, msg->msg.inp.netif);
|
|
|
|
} else
|
|
|
|
#endif /* LWIP_ARP */
|
|
|
|
{ ip_input(msg->msg.inp.p, msg->msg.inp.netif);
|
|
|
|
}
|
2007-08-17 09:57:37 +00:00
|
|
|
memp_free(MEMP_TCPIP_MSG_INPKT, msg);
|
2007-03-06 14:18:02 +00:00
|
|
|
break;
|
|
|
|
|
2007-04-06 10:09:24 +00:00
|
|
|
#if LWIP_NETIF_API
|
|
|
|
case TCPIP_MSG_NETIFAPI:
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: Netif API message %p\n", (void *)msg));
|
2007-06-28 10:11:05 +00:00
|
|
|
msg->msg.netifapimsg->function(&(msg->msg.netifapimsg->msg));
|
2007-04-06 10:09:24 +00:00
|
|
|
break;
|
|
|
|
#endif /* LWIP_NETIF_API */
|
|
|
|
|
2003-03-19 11:23:46 +00:00
|
|
|
case TCPIP_MSG_CALLBACK:
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: CALLBACK %p\n", (void *)msg));
|
2003-03-19 11:23:46 +00:00
|
|
|
msg->msg.cb.f(msg->msg.cb.ctx);
|
2007-08-17 02:46:43 +00:00
|
|
|
memp_free(MEMP_TCPIP_MSG_API, msg);
|
2003-02-06 22:18:56 +00:00
|
|
|
break;
|
2007-08-22 10:04:35 +00:00
|
|
|
|
2007-08-17 09:57:37 +00:00
|
|
|
case TCPIP_MSG_TIMEOUT:
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: TIMEOUT %p\n", (void *)msg));
|
2007-08-16 18:12:20 +00:00
|
|
|
|
2007-08-17 09:57:37 +00:00
|
|
|
if(msg->msg.tmo.msecs != 0xffffffff)
|
|
|
|
sys_timeout (msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg);
|
|
|
|
else
|
|
|
|
sys_untimeout (msg->msg.tmo.h, msg->msg.tmo.arg);
|
2007-08-17 02:46:43 +00:00
|
|
|
memp_free(MEMP_TCPIP_MSG_API, msg);
|
2007-08-17 09:57:37 +00:00
|
|
|
break;
|
2007-08-22 10:04:35 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
2007-08-22 10:04:35 +00:00
|
|
|
* Pass a received packet to tcpip_thread for input processing
|
2007-06-17 12:18:11 +00:00
|
|
|
*
|
2007-08-29 07:51:20 +00:00
|
|
|
* @param p the received packet, p->payload pointing to the Ethernet header or
|
|
|
|
* to an IP header (if netif doesn't got NETIF_FLAG_ETHARP flag)
|
2007-11-24 22:13:25 +00:00
|
|
|
* @param inp the network interface on which the packet was received
|
2007-06-17 12:18:11 +00:00
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
tcpip_input(struct pbuf *p, struct netif *inp)
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-03-20 18:01:40 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 02:46:43 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_INPKT);
|
2007-03-20 18:01:40 +00:00
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-08-17 02:46:43 +00:00
|
|
|
msg->type = TCPIP_MSG_INPKT;
|
2007-08-17 09:57:37 +00:00
|
|
|
msg->msg.inp.p = p;
|
|
|
|
msg->msg.inp.netif = inp;
|
sys_arch.txt, api.h, api_lib.c, api_msg.h, api_msg.c, tcpip.c, sys.h, opt.h: Introduce changes for task #7490 "Add return value to sys_mbox_post" with some modifications in the sys_mbox api: sys_mbox_new take a "size" parameters which indicate the number of pointers query by the mailbox. There is three defines in opt.h to indicate sizes for tcpip::mbox, netconn::recvmbox, and for the netconn::acceptmbox. Port maintainers, you can decide to just add this new parameter in your implementation, but to ignore it to keep the previous behavior. The new sys_mbox_trypost function return a value to know if the mailbox is full or if the message is posted. Take a look to sys_arch.txt for more details. This new function is used in tcpip_input (so, can be called in an interrupt context since the function is not blocking), and in recv_udp and recv_raw.
2008-01-05 21:10:32 +00:00
|
|
|
if (sys_mbox_trypost(mbox, msg) != ERR_OK) {
|
|
|
|
memp_free(MEMP_TCPIP_MSG_INPKT, msg);
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-08-17 09:57:37 +00:00
|
|
|
return ERR_OK;
|
2007-08-16 19:49:08 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Call a specific function in the thread context of
|
|
|
|
* tcpip_thread for easy access synchronization.
|
|
|
|
* A function called in that way may access lwIP core code
|
|
|
|
* without fearing concurrent access.
|
|
|
|
*
|
|
|
|
* @param f the function to call
|
|
|
|
* @param ctx parameter passed to f
|
2008-01-10 21:47:52 +00:00
|
|
|
* @param block 1 to block until the request is posted, 0 to non-blocking mode
|
2007-06-17 12:18:11 +00:00
|
|
|
* @return ERR_OK if the function was called, another err_t if not
|
|
|
|
*/
|
2003-02-06 22:18:56 +00:00
|
|
|
err_t
|
2008-01-10 21:47:52 +00:00
|
|
|
tcpip_callback_with_block(void (*f)(void *ctx), void *ctx, u8_t block)
|
2003-02-06 22:18:56 +00:00
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-03-20 18:01:40 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 02:46:43 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_API);
|
2007-03-20 18:01:40 +00:00
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-03-20 18:01:40 +00:00
|
|
|
msg->type = TCPIP_MSG_CALLBACK;
|
|
|
|
msg->msg.cb.f = f;
|
|
|
|
msg->msg.cb.ctx = ctx;
|
2008-01-10 21:47:52 +00:00
|
|
|
if (block) {
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
} else {
|
|
|
|
if (sys_mbox_trypost(mbox, msg) != ERR_OK) {
|
|
|
|
memp_free(MEMP_TCPIP_MSG_API, msg);
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
}
|
2007-03-20 18:01:40 +00:00
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
return ERR_VAL;
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-08-16 18:12:20 +00:00
|
|
|
err_t
|
|
|
|
tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg)
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-08-17 10:46:07 +00:00
|
|
|
|
2007-08-16 18:12:20 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 10:46:07 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_API);
|
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg->type = TCPIP_MSG_TIMEOUT;
|
|
|
|
msg->msg.tmo.msecs = msecs;
|
|
|
|
msg->msg.tmo.h = h;
|
|
|
|
msg->msg.tmo.arg = arg;
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
return ERR_OK;
|
2007-08-16 18:12:20 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
|
|
|
|
2007-09-12 09:19:43 +00:00
|
|
|
#if LWIP_NETCONN
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Call the lower part of a netconn_* function
|
|
|
|
* This function is then running in the thread context
|
|
|
|
* of tcpip_thread and has exclusive access to lwIP core code.
|
|
|
|
*
|
|
|
|
* @param apimsg a struct containing the function to call and its parameters
|
|
|
|
* @return ERR_OK if the function was called, another err_t if not
|
|
|
|
*/
|
2007-03-19 20:35:32 +00:00
|
|
|
err_t
|
2002-10-19 12:59:30 +00:00
|
|
|
tcpip_apimsg(struct api_msg *apimsg)
|
|
|
|
{
|
2007-03-21 16:38:58 +00:00
|
|
|
struct tcpip_msg msg;
|
2007-03-20 18:01:40 +00:00
|
|
|
|
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-03-21 16:38:58 +00:00
|
|
|
msg.type = TCPIP_MSG_API;
|
|
|
|
msg.msg.apimsg = apimsg;
|
|
|
|
sys_mbox_post(mbox, &msg);
|
2008-01-12 11:52:21 +00:00
|
|
|
sys_arch_sem_wait(apimsg->msg.conn->op_completed, 0);
|
2007-03-20 18:01:40 +00:00
|
|
|
return ERR_OK;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2007-03-20 18:01:40 +00:00
|
|
|
return ERR_VAL;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-08 19:27:59 +00:00
|
|
|
#if LWIP_TCPIP_CORE_LOCKING
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Call the lower part of a netconn_* function
|
2007-06-28 10:11:05 +00:00
|
|
|
* This function has exclusive access to lwIP core code by locking it
|
2007-06-17 12:18:11 +00:00
|
|
|
* before the function is called.
|
|
|
|
*
|
|
|
|
* @param apimsg a struct containing the function to call and its parameters
|
|
|
|
* @return ERR_OK (only for compatibility fo tcpip_apimsg())
|
|
|
|
*/
|
2007-06-08 19:27:59 +00:00
|
|
|
err_t
|
|
|
|
tcpip_apimsg_lock(struct api_msg *apimsg)
|
|
|
|
{
|
|
|
|
LOCK_TCPIP_CORE();
|
|
|
|
apimsg->function(&(apimsg->msg));
|
|
|
|
UNLOCK_TCPIP_CORE();
|
|
|
|
return ERR_OK;
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
2007-09-12 09:19:43 +00:00
|
|
|
#endif /* LWIP_NETCONN */
|
2007-06-08 19:27:59 +00:00
|
|
|
|
2007-04-06 10:09:24 +00:00
|
|
|
#if LWIP_NETIF_API
|
2007-06-28 10:11:05 +00:00
|
|
|
#if !LWIP_TCPIP_CORE_LOCKING
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Much like tcpip_apimsg, but calls the lower part of a netifapi_*
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* @param netifapimsg a struct containing the function to call and its parameters
|
|
|
|
* @return error code given back by the function that was called
|
|
|
|
*/
|
|
|
|
err_t
|
|
|
|
tcpip_netifapi(struct netifapi_msg* netifapimsg)
|
2007-04-06 10:09:24 +00:00
|
|
|
{
|
|
|
|
struct tcpip_msg msg;
|
|
|
|
|
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-06-28 10:11:05 +00:00
|
|
|
netifapimsg->msg.sem = sys_sem_new(0);
|
|
|
|
if (netifapimsg->msg.sem == SYS_SEM_NULL) {
|
|
|
|
netifapimsg->msg.err = ERR_MEM;
|
|
|
|
return netifapimsg->msg.err;
|
2007-05-22 20:51:34 +00:00
|
|
|
}
|
|
|
|
|
2007-04-06 10:09:24 +00:00
|
|
|
msg.type = TCPIP_MSG_NETIFAPI;
|
|
|
|
msg.msg.netifapimsg = netifapimsg;
|
|
|
|
sys_mbox_post(mbox, &msg);
|
2007-06-28 10:11:05 +00:00
|
|
|
sys_sem_wait(netifapimsg->msg.sem);
|
|
|
|
sys_sem_free(netifapimsg->msg.sem);
|
|
|
|
return netifapimsg->msg.err;
|
2007-04-06 10:09:24 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
2007-06-28 10:11:05 +00:00
|
|
|
#else /* !LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
/**
|
|
|
|
* Call the lower part of a netifapi_* function
|
|
|
|
* This function has exclusive access to lwIP core code by locking it
|
|
|
|
* before the function is called.
|
|
|
|
*
|
|
|
|
* @param netifapimsg a struct containing the function to call and its parameters
|
|
|
|
* @return ERR_OK (only for compatibility fo tcpip_netifapi())
|
|
|
|
*/
|
|
|
|
err_t
|
|
|
|
tcpip_netifapi_lock(struct netifapi_msg* netifapimsg)
|
|
|
|
{
|
|
|
|
LOCK_TCPIP_CORE();
|
|
|
|
netifapimsg->function(&(netifapimsg->msg));
|
|
|
|
UNLOCK_TCPIP_CORE();
|
|
|
|
return netifapimsg->msg.err;
|
|
|
|
}
|
|
|
|
#endif /* !LWIP_TCPIP_CORE_LOCKING */
|
2007-04-06 10:09:24 +00:00
|
|
|
#endif /* LWIP_NETIF_API */
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Initialize this module:
|
2007-08-29 08:11:06 +00:00
|
|
|
* - initialize all sub modules
|
2007-06-17 12:18:11 +00:00
|
|
|
* - start the tcpip_thread
|
|
|
|
*
|
2007-08-29 08:11:06 +00:00
|
|
|
* @param initfunc a function to call when tcpip_thread is running and finished initializing
|
2007-06-17 12:18:11 +00:00
|
|
|
* @param arg argument to pass to initfunc
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
tcpip_init(void (* initfunc)(void *), void *arg)
|
|
|
|
{
|
2007-08-29 08:11:06 +00:00
|
|
|
lwip_init();
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
tcpip_init_done = initfunc;
|
|
|
|
tcpip_init_done_arg = arg;
|
sys_arch.txt, api.h, api_lib.c, api_msg.h, api_msg.c, tcpip.c, sys.h, opt.h: Introduce changes for task #7490 "Add return value to sys_mbox_post" with some modifications in the sys_mbox api: sys_mbox_new take a "size" parameters which indicate the number of pointers query by the mailbox. There is three defines in opt.h to indicate sizes for tcpip::mbox, netconn::recvmbox, and for the netconn::acceptmbox. Port maintainers, you can decide to just add this new parameter in your implementation, but to ignore it to keep the previous behavior. The new sys_mbox_trypost function return a value to know if the mailbox is full or if the message is posted. Take a look to sys_arch.txt for more details. This new function is used in tcpip_input (so, can be called in an interrupt context since the function is not blocking), and in recv_udp and recv_raw.
2008-01-05 21:10:32 +00:00
|
|
|
mbox = sys_mbox_new(TCPIP_MBOX_SIZE);
|
2007-06-08 19:27:59 +00:00
|
|
|
#if LWIP_TCPIP_CORE_LOCKING
|
|
|
|
lock_tcpip_core = sys_sem_new(1);
|
|
|
|
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
|
2007-09-05 16:14:28 +00:00
|
|
|
sys_thread_new(TCPIP_THREAD_NAME, tcpip_thread, NULL, TCPIP_THREAD_STACKSIZE, TCPIP_THREAD_PRIO);
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2008-03-28 07:56:47 +00:00
|
|
|
/**
|
|
|
|
* Simple callback function used with tcpip_callback to free a pbuf
|
|
|
|
* (pbuf_free has a wrong signature for tcpip_callback)
|
|
|
|
*
|
|
|
|
* @param p The pbuf (chain) to be dereferenced.
|
|
|
|
*/
|
|
|
|
static void
|
2008-06-27 20:34:51 +00:00
|
|
|
pbuf_free_int(void *p)
|
2008-03-28 07:56:47 +00:00
|
|
|
{
|
|
|
|
struct pbuf *q = p;
|
|
|
|
pbuf_free(q);
|
|
|
|
}
|
2008-03-27 19:29:35 +00:00
|
|
|
|
|
|
|
/**
|
2008-03-28 07:56:47 +00:00
|
|
|
* A simple wrapper function that allows you to free a pbuf from interrupt context.
|
2008-03-27 19:29:35 +00:00
|
|
|
*
|
|
|
|
* @param p The pbuf (chain) to be dereferenced.
|
2008-03-28 07:56:47 +00:00
|
|
|
* @return ERR_OK if callback could be enqueued, an err_t if not
|
2008-03-27 19:29:35 +00:00
|
|
|
*/
|
2008-03-28 07:56:47 +00:00
|
|
|
err_t
|
|
|
|
pbuf_free_callback(struct pbuf *p)
|
|
|
|
{
|
2008-06-27 20:34:51 +00:00
|
|
|
return tcpip_callback_with_block(pbuf_free_int, p, 0);
|
2008-03-28 07:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A simple wrapper function that allows you to free heap memory from
|
|
|
|
* interrupt context.
|
|
|
|
*
|
|
|
|
* @param m the heap memory to free
|
|
|
|
* @return ERR_OK if callback could be enqueued, an err_t if not
|
|
|
|
*/
|
|
|
|
err_t
|
|
|
|
mem_free_callback(void *m)
|
2008-03-27 19:29:35 +00:00
|
|
|
{
|
2008-03-28 07:56:47 +00:00
|
|
|
return tcpip_callback_with_block(mem_free, m, 0);
|
2008-03-27 19:29:35 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 11:27:46 +00:00
|
|
|
#endif /* !NO_SYS */
|