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"
|
2009-12-31 16:16:44 +00:00
|
|
|
#include "lwip/mem.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/pbuf.h"
|
|
|
|
#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 */
|
2010-01-14 20:02:15 +00:00
|
|
|
static tcpip_init_done_fn tcpip_init_done;
|
2007-10-09 19:59:56 +00:00
|
|
|
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 */
|
|
|
|
|
2007-11-14 23:27:13 +00:00
|
|
|
|
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
|
|
|
|
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 */
|
2009-12-31 16:16:44 +00:00
|
|
|
UNLOCK_TCPIP_CORE();
|
|
|
|
/* wait for a message, timeouts are processed while waiting */
|
|
|
|
sys_timeouts_mbox_fetch(mbox, (void *)&msg);
|
|
|
|
LOCK_TCPIP_CORE();
|
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));
|
2009-12-27 11:40:48 +00:00
|
|
|
#if LWIP_ETHERNET
|
2007-08-29 07:51:20 +00:00
|
|
|
if (msg->msg.inp.netif->flags & NETIF_FLAG_ETHARP) {
|
|
|
|
ethernet_input(msg->msg.inp.p, msg->msg.inp.netif);
|
|
|
|
} else
|
2009-12-27 11:40:48 +00:00
|
|
|
#endif /* LWIP_ETHERNET */
|
2007-08-29 07:51:20 +00:00
|
|
|
{ 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));
|
2010-01-14 20:02:15 +00:00
|
|
|
msg->msg.cb.function(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));
|
2008-12-19 18:08:29 +00:00
|
|
|
sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg);
|
|
|
|
memp_free(MEMP_TCPIP_MSG_API, msg);
|
|
|
|
break;
|
|
|
|
case TCPIP_MSG_UNTIMEOUT:
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: UNTIMEOUT %p\n", (void *)msg));
|
|
|
|
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
|
2010-01-14 20:02:15 +00:00
|
|
|
tcpip_callback_with_block(tcpip_callback_fn function, 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;
|
2010-01-14 20:02:15 +00:00
|
|
|
msg->msg.cb.function = function;
|
2007-03-20 18:01:40 +00:00
|
|
|
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
|
|
|
|
2008-12-19 18:08:29 +00:00
|
|
|
/**
|
|
|
|
* call sys_timeout in tcpip_thread
|
|
|
|
*
|
|
|
|
* @param msec time in miliseconds for timeout
|
|
|
|
* @param h function to be called on timeout
|
|
|
|
* @param arg argument to pass to timeout function h
|
|
|
|
* @return ERR_MEM on memory error, ERR_OK otherwise
|
|
|
|
*/
|
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;
|
2008-12-19 18:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* call sys_untimeout in tcpip_thread
|
|
|
|
*
|
|
|
|
* @param msec time in miliseconds for timeout
|
|
|
|
* @param h function to be called on timeout
|
|
|
|
* @param arg argument to pass to timeout function h
|
|
|
|
* @return ERR_MEM on memory error, ERR_OK otherwise
|
|
|
|
*/
|
|
|
|
err_t
|
2009-05-02 16:12:35 +00:00
|
|
|
tcpip_untimeout(sys_timeout_handler h, void *arg)
|
2008-12-19 18:08:29 +00:00
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
|
|
|
|
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_API);
|
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg->type = TCPIP_MSG_UNTIMEOUT;
|
|
|
|
msg->msg.tmo.h = h;
|
|
|
|
msg->msg.tmo.arg = arg;
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
return ERR_VAL;
|
2007-08-16 18:12:20 +00:00
|
|
|
}
|
|
|
|
|
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
|
2010-01-14 20:02:15 +00:00
|
|
|
tcpip_init(tcpip_init_done_fn initfunc, void *arg)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
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 */
|